diff options
author | Pytal <24800714+Pytal@users.noreply.github.com> | 2022-07-25 11:50:49 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-25 11:50:49 -0700 |
commit | add31881d49b32ff0ff7a9d18d59fc12bdd6b4e8 (patch) | |
tree | 3d8dba62392c185011bf352f67547a1fb8e2088e /core | |
parent | bbe15b4b43f95e1600f5122a7bf72a64ee404b36 (diff) | |
parent | d98f51200773d5bf11217706e8b1b11d19954e1e (diff) | |
download | nextcloud-server-add31881d49b32ff0ff7a9d18d59fc12bdd6b4e8.tar.gz nextcloud-server-add31881d49b32ff0ff7a9d18d59fc12bdd6b4e8.zip |
Merge pull request #33334 from nextcloud/bugfix/appmenu-text
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 */ |