mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-12 22:28:59 +02:00
Differential Revision: https://phabricator.services.mozilla.com/D27338 --HG-- extra : amend_source : b7d1d061f4c254472b353256c47400f7ee30d4a4
41 lines
786 B
CSS
41 lines
786 B
CSS
%if 0
|
|
/* - 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/. */
|
|
%endif
|
|
|
|
window,
|
|
dialog {
|
|
-moz-appearance: none;
|
|
background-color: var(--in-content-page-background);
|
|
color: var(--in-content-page-color);
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
.contentPane {
|
|
-moz-box-flex: 1;
|
|
}
|
|
|
|
.contentPane,
|
|
dialog > .dialog-content-box {
|
|
/* This allows the focus ring to display fully when scrolling is enabled. */
|
|
padding: 4px;
|
|
}
|
|
|
|
.contentPane.doScroll,
|
|
dialog.doScroll > .dialog-content-box {
|
|
overflow-y: auto;
|
|
}
|
|
|
|
tree:not(#rejectsTree) {
|
|
min-height: 15em;
|
|
}
|
|
|
|
.actionButtons {
|
|
margin: 3px 0 0;
|
|
}
|
|
|
|
menulist label {
|
|
font-weight: unset;
|
|
}
|