Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/nextcloudpi.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlorian Wallner <florian.wallner@exxcellent.de>2020-08-29 20:50:20 +0300
committernachoparker <nacho@ownyourbits.com>2020-08-30 23:38:48 +0300
commit14b78e372bd256f5d060df95685da9e78931a0db (patch)
treed3bd6b323e6cb7407dc89ecdb16e9a2e8b56d7d0
parent34e84bab94762b9b12a61adc2bc1f578d1aab7b9 (diff)
ncp-web: Fix the style of the language selection dropdown (chrome)v1.29.6
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>
-rw-r--r--changelog.md6
-rw-r--r--ncp-web/css/ncp.css4
2 files changed, 9 insertions, 1 deletions
diff --git a/changelog.md b/changelog.md
index 735236ca..d127b4c3 100644
--- a/changelog.md
+++ b/changelog.md
@@ -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
diff --git a/ncp-web/css/ncp.css b/ncp-web/css/ncp.css
index 9ed3140d..56599b8d 100644
--- a/ncp-web/css/ncp.css
+++ b/ncp-web/css/ncp.css
@@ -1377,6 +1377,10 @@ a#versionlink:hover {
#language-selection {
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;
}