mirror of https://github.com/zulip/zulip.git
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:
parent
fcade635f8
commit
6613efeca3
|
@ -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%);
|
||||||
|
|
|
@ -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);
|
||||||
|
|
Loading…
Reference in New Issue