1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/browser/themes/windows/sanitizeDialog.css Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,93 @@ 1.4 +/* This Source Code Form is subject to the terms of the Mozilla Public 1.5 + * License, v. 2.0. If a copy of the MPL was not distributed with this 1.6 + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 1.7 + 1.8 +#sanitizeDurationChoice { 1.9 + -moz-margin-end: 0; 1.10 +} 1.11 + 1.12 +/* Align the duration label with the warning box and item list */ 1.13 +#sanitizeDurationLabel { 1.14 + -moz-margin-start: 3px; 1.15 +} 1.16 + 1.17 + 1.18 +/* Hide the duration dropdown suffix label if it's empty. Otherwise it 1.19 + takes up a little space, causing the end of the dropdown to not be aligned 1.20 + with the warning box. */ 1.21 +#sanitizeDurationSuffixLabel[value=""] { 1.22 + display: none; 1.23 +} 1.24 + 1.25 + 1.26 +/* Places tree */ 1.27 +#placesTreechildren::-moz-tree-row(selected), 1.28 +#placesTreechildren::-moz-tree-row(grippyRow) { 1.29 + background: #999; 1.30 +} 1.31 + 1.32 +#placesTreechildren::-moz-tree-cell-text(selected) { 1.33 + color: #111; 1.34 +} 1.35 + 1.36 + 1.37 +/* Sanitize everything warning box */ 1.38 +#sanitizeEverythingWarningBox { 1.39 + background-color: Window; 1.40 + border: 1px solid ThreeDDarkShadow; 1.41 + border-radius: 5px; 1.42 + padding: 16px; 1.43 +} 1.44 + 1.45 +#sanitizeEverythingWarningIcon { 1.46 + list-style-image: url("chrome://global/skin/icons/warning-large.png"); 1.47 + padding: 0; 1.48 + margin: 0; 1.49 +} 1.50 + 1.51 +#sanitizeEverythingWarningDescBox { 1.52 + padding: 0 16px; 1.53 + margin: 0; 1.54 +} 1.55 + 1.56 + 1.57 +/* Progressive disclosure button */ 1.58 +#detailsExpanderWrapper { 1.59 + padding: 0; 1.60 + margin: 6px 0; 1.61 +} 1.62 + 1.63 +.expander-up, 1.64 +.expander-down { 1.65 + min-width: 0; 1.66 + margin: 0; 1.67 +} 1.68 + 1.69 +.expander-up > .button-box, 1.70 +.expander-down > .button-box { 1.71 + padding: 0; 1.72 +} 1.73 + 1.74 +.expander-up { 1.75 + list-style-image: url("chrome://global/skin/icons/collapse.png"); 1.76 +} 1.77 + 1.78 +.expander-down { 1.79 + list-style-image: url("chrome://global/skin/icons/expand.png"); 1.80 +} 1.81 + 1.82 + 1.83 +/* Make the item list the same width as the warning box */ 1.84 +#itemList { 1.85 + -moz-margin-start: 0; 1.86 + -moz-margin-end: 0; 1.87 +} 1.88 + 1.89 + 1.90 +/* Align the last dialog button with the end of the warning box */ 1.91 +.prefWindow-dlgbuttons { 1.92 + -moz-margin-end: 0; 1.93 +} 1.94 +.dialog-button[dlgtype="cancel"] { 1.95 + -moz-margin-end: 0; 1.96 +}