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)

Signed-off-by: Jim Ehrismann <jehrismann@mirantis.com>
This commit is contained in:
Jim Ehrismann 2021-05-03 13:23:40 -04:00
parent 1af12fe59e
commit e70f770616

View File

@ -106,7 +106,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;
} }
@ -166,6 +166,10 @@ html {
&--is-focused { &--is-focused {
color: white; color: white;
} }
&--is-disabled:hover {
color: inherit;
}
} }
} }
} }