Browse Source

Make sure app menu text opacity matches the icons

Signed-off-by: Julius Härtl <jus@bitgrid.net>
tags/v25.0.0beta1
Julius Härtl 1 year ago
parent
commit
d98f512007
No account linked to committer's email address
3 changed files with 3 additions and 3 deletions
  1. 1
    1
      core/css/header.css
  2. 1
    1
      core/css/header.scss
  3. 1
    1
      core/css/server.css

+ 1
- 1
core/css/header.css View File

@@ -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 */

+ 1
- 1
core/css/header.scss View File

@@ -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 */
}

+ 1
- 1
core/css/server.css View File

@@ -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 */

Loading…
Cancel
Save