app_components: Fix opacity for disabled .dropdown-widget-button.

This is a follow up to previous commit
fe0a068ee5. We want
`.dropdown-widget-button` dropdowns to look same as `select` dropdowns.

This commit fixes opacity for all `.dropdown-widget-button`, which then
makes repetition in `settings.css` unnecessary.
This commit is contained in:
tnmkr 2024-07-03 01:23:03 +05:30 committed by Tim Abbott
parent 13c4f281ab
commit 92f5b7d86a
2 changed files with 1 additions and 1 deletions

View File

@ -1117,6 +1117,7 @@ div.overlay {
&:disabled {
cursor: not-allowed;
background-color: hsl(0deg 0% 93%);
opacity: 0.7;
}
}

View File

@ -865,7 +865,6 @@ input[type="checkbox"] {
&:disabled {
cursor: not-allowed;
background-color: hsl(0deg 0% 93%);
opacity: 0.7;
}
}
}