1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

fixed blank disabled Select element option (affected workspaces menu) (#2697)

Signed-off-by: Jim Ehrismann <jehrismann@mirantis.com>
This commit is contained in:
Jim Ehrismann 2021-05-04 07:32:43 -04:00 committed by GitHub
parent 38593e4609
commit 6e13684315
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -105,7 +105,7 @@ html {
&--is-disabled { &--is-disabled {
cursor: not-allowed; cursor: not-allowed;
background: none !important; background: none !important;
color: $contentColor; color: inherit;
opacity: .75; opacity: .75;
} }
@ -165,6 +165,10 @@ html {
&--is-focused { &--is-focused {
color: white; color: white;
} }
&--is-disabled:hover {
color: inherit;
}
} }
} }
} }