Fixes: #6982: Remove inherited background-color on disabled options

This commit is contained in:
Matt
2021-08-18 14:57:42 -07:00
parent 716124ec81
commit 3996517161
3 changed files with 7 additions and 4 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -125,8 +125,11 @@ $spacing-s: $input-padding-x;
border-bottom-left-radius: $form-select-border-radius;
}
&.ss-disabled:hover {
color: $form-select-disabled-color;
&.ss-disabled {
background-color: unset;
&:hover {
color: $form-select-disabled-color;
}
}
.depth {