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 Sebastian Malton
parent 1a7ed3ae9f
commit 0a76212b72

View File

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