mirror of
https://github.com/nextcloud/nextcloudpi.git
synced 2026-01-10 15:12:01 -03:30
ncp-web: Fix the style of the language selection dropdown (chrome)
If the selection is active the background color as well as the color was white and therefore the language options were unreadable. Fix by setting the color to white only if selection is not active. Signed-off-by: Florian Wallner <florian.wallner@exxcellent.de>
This commit is contained in:
parent
34e84bab94
commit
14b78e372b
@ -1,5 +1,9 @@
|
|||||||
|
|
||||||
[v1.29.4](https://github.com/nextcloud/nextcloudpi/commit/0cb48d9) (2020-08-30) ncp-update-nc: check for ncc commands before using them
|
[v1.29.6](https://github.com/nextcloud/nextcloudpi/commit/55e16b2) (2020-08-29) ncp-web: Fix the style of the language selection dropdown (chrome)
|
||||||
|
|
||||||
|
[v1.29.5 ](https://github.com/nextcloud/nextcloudpi/commit/34e84ba) (2020-08-30) ncp-web: fix initial screen displaying all sections
|
||||||
|
|
||||||
|
[v1.29.4 ](https://github.com/nextcloud/nextcloudpi/commit/17aae56) (2020-08-30) ncp-update-nc: check for ncc commands before using them
|
||||||
|
|
||||||
[v1.29.3 ](https://github.com/nextcloud/nextcloudpi/commit/76ffaec) (2020-08-26) nc-static-IP: Restricting gateway to one
|
[v1.29.3 ](https://github.com/nextcloud/nextcloudpi/commit/76ffaec) (2020-08-26) nc-static-IP: Restricting gateway to one
|
||||||
|
|
||||||
|
|||||||
@ -1377,6 +1377,10 @@ a#versionlink:hover {
|
|||||||
|
|
||||||
#language-selection {
|
#language-selection {
|
||||||
border: none;
|
border: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Show selected language in white color because the background is blue. If the selection is active, don't change the color because the background is white. */
|
||||||
|
#language-selection:not(:active) {
|
||||||
color: white;
|
color: white;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user