diff options
author | Julius Härtl <jus@bitgrid.net> | 2022-07-25 08:49:46 +0200 |
---|---|---|
committer | Julius Härtl <jus@bitgrid.net> | 2022-07-25 08:49:46 +0200 |
commit | d98f51200773d5bf11217706e8b1b11d19954e1e (patch) | |
tree | 22c3b032d294c28c44b27a964a0b31ec6cdf71b8 /core | |
parent | 35a6f54bcd559016f4244ab0c38c2dd8a82c57cb (diff) | |
download | nextcloud-server-d98f51200773d5bf11217706e8b1b11d19954e1e.tar.gz nextcloud-server-d98f51200773d5bf11217706e8b1b11d19954e1e.zip |
Make sure app menu text opacity matches the icons
Signed-off-by: Julius Härtl <jus@bitgrid.net>
Diffstat (limited to 'core')
-rw-r--r-- | core/css/header.css | 2 | ||||
-rw-r--r-- | core/css/header.scss | 2 | ||||
-rw-r--r-- | core/css/server.css | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/core/css/header.css b/core/css/header.css index 095ebfb73fc..5f8b3bd873a 100644 --- a/core/css/header.css +++ b/core/css/header.css @@ -529,7 +529,7 @@ nav[role=navigation] { transform: translateY(-7px); } #appmenu:hover li span { - opacity: 0.6; + opacity: 1; bottom: 2px; z-index: -1; /* fix clickability issue - otherwise we need to move the span into the link */ diff --git a/core/css/header.scss b/core/css/header.scss index 46a0e1a274d..a81469c0658 100644 --- a/core/css/header.scss +++ b/core/css/header.scss @@ -527,7 +527,7 @@ nav[role='navigation'] { /* Show app title */ span { - opacity: .6; + opacity: 1; bottom: 2px; z-index: -1; /* fix clickability issue - otherwise we need to move the span into the link */ } diff --git a/core/css/server.css b/core/css/server.css index 64a6fbced27..6408f7ec559 100644 --- a/core/css/server.css +++ b/core/css/server.css @@ -2810,7 +2810,7 @@ nav[role=navigation] { transform: translateY(-7px); } #appmenu:hover li span { - opacity: 0.6; + opacity: 1; bottom: 2px; z-index: -1; /* fix clickability issue - otherwise we need to move the span into the link */ |