org_settings: Fix dropdown color in `Organization settings` section.

This fixes the text color for .dropdown-widget-button dropdowns both in
enabled and disabled state.
This commit is contained in:
tnmkr 2024-06-30 15:16:38 +05:30 committed by Tim Abbott
parent fcade635f8
commit 6613efeca3
2 changed files with 8 additions and 0 deletions

View File

@ -351,6 +351,7 @@
input:not([type="radio"]):read-only, input:not([type="radio"]):read-only,
textarea:read-only, textarea:read-only,
#organization-permissions .dropdown-widget-button:disabled, #organization-permissions .dropdown-widget-button:disabled,
#organization-settings .dropdown-widget-button:disabled,
#stream-advanced-configurations .dropdown-widget-button:disabled { #stream-advanced-configurations .dropdown-widget-button:disabled {
color: inherit; color: inherit;
opacity: 0.5; opacity: 0.5;
@ -406,6 +407,7 @@
.user-status-content-wrapper, .user-status-content-wrapper,
#custom-expiration-time-input, #custom-expiration-time-input,
#organization-permissions .dropdown-widget-button, #organization-permissions .dropdown-widget-button,
#organization-settings .dropdown-widget-button,
#stream-advanced-configurations .dropdown-widget-button, #stream-advanced-configurations .dropdown-widget-button,
#compose_recipient_box { #compose_recipient_box {
background-color: hsl(0deg 0% 0% / 20%); background-color: hsl(0deg 0% 0% / 20%);

View File

@ -864,6 +864,12 @@ input[type="checkbox"] {
} }
} }
#organization-settings {
.dropdown-widget-button {
color: hsl(0deg 0% 33%);
}
}
.progressive-table-wrapper { .progressive-table-wrapper {
position: relative; position: relative;
max-height: calc(95vh - 220px); max-height: calc(95vh - 220px);