diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 17:32:43 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 17:32:43 +0000 |
commit | 6bf0a5cb5034a7e684dcc3500e841785237ce2dd (patch) | |
tree | a68f146d7fa01f0134297619fbe7e33db084e0aa /comm/suite/themes/modern/global/preferences.css | |
parent | Initial commit. (diff) | |
download | thunderbird-6bf0a5cb5034a7e684dcc3500e841785237ce2dd.tar.xz thunderbird-6bf0a5cb5034a7e684dcc3500e841785237ce2dd.zip |
Adding upstream version 1:115.7.0.upstream/1%115.7.0upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'comm/suite/themes/modern/global/preferences.css')
-rw-r--r-- | comm/suite/themes/modern/global/preferences.css | 65 |
1 files changed, 65 insertions, 0 deletions
diff --git a/comm/suite/themes/modern/global/preferences.css b/comm/suite/themes/modern/global/preferences.css new file mode 100644 index 0000000000..49450a6ef7 --- /dev/null +++ b/comm/suite/themes/modern/global/preferences.css @@ -0,0 +1,65 @@ +/* This Source Code Form is subject to the terms of the Mozilla Public + * License, v. 2.0. If a copy of the MPL was not distributed with this + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ + +/* ===== preferences.css ===================================================== + == Styles used by the XUL prefwindow element. + ======================================================================= */ + +@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); + +/* ::::: dialog ::::: */ + +prefwindow { + padding: 0px; +} + +prefwindow[type="child"] { + padding: 7px 5px 5px; +} + +prefpane { + padding: 7px 5px 0px 5px; +} + +prefwindow[type="child"] > prefpane { + padding: 0px; +} + +.prefWindow-dlgbuttons { + padding: 0px 5px 5px; +} + +prefwindow[type="child"] > .prefWindow-dlgbuttons { + padding: 0px; +} + +radio[pane] { + margin: 0px 1px; + padding: 1px 3px; + min-width: 4.5em; + background-color: #FFFFFF; + color: #000000; +} + +radio[pane][selected="true"] { + background-color: #C7D0D9; +} + +radio[pane]:hover:active { + background-color: #90A1B3; + color: #FFFFFF; +} + +.paneSelector { + border-bottom: 1px solid #2D3B49; + margin: 0px; + padding-inline-start: 10px; + background-color: #FFFFFF; + color: #000000; +} + +.paneButtonIcon { + width: 32px; + height: 32px; +} |