
* [MM-54863] Add permissions manager UI in Edit Server modal, improve permission checks to be less missable * Removing this for E2E (which was having issues anyways) * PR feedback * Disable permissions dialog for current E2E tests * Fixed the dark mode CSS * Update icon
36 lines
962 B
CSS
36 lines
962 B
CSS
@import '~bootstrap-dark/src/bootstrap-dark.css';
|
|
|
|
body {
|
|
background-color: transparent;
|
|
}
|
|
|
|
.SettingsPage__spellCheckerLocalesDropdown .SettingsPage__spellCheckerLocalesDropdown__control {
|
|
background: #242a30;
|
|
}
|
|
|
|
.SettingsPage__spellCheckerLocalesDropdown .SettingsPage__spellCheckerLocalesDropdown__menu {
|
|
background: #242a30;
|
|
}
|
|
|
|
.SettingsPage__spellCheckerLocalesDropdown .SettingsPage__spellCheckerLocalesDropdown__option {
|
|
background: #242a30;
|
|
}
|
|
|
|
.SettingsPage__spellCheckerLocalesDropdown .SettingsPage__spellCheckerLocalesDropdown__option:hover {
|
|
background: rgba(255, 255, 255, 0.16);
|
|
}
|
|
|
|
#settingsModal .modal-body {
|
|
overflow-y: auto;
|
|
overflow-x: hidden;
|
|
scrollbar-width: thin;
|
|
scrollbar-color: var(--light) rgba(255, 255, 255, 0);
|
|
}
|
|
|
|
.Toggle .Toggle___switch {
|
|
background: rgba(var(--center-channel-bg-rgb), 0.24);
|
|
}
|
|
|
|
.Toggle .Toggle___switch.disabled {
|
|
background: rgba(var(--center-channel-bg-rgb), 0.08);
|
|
} |