Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
1 /* This Source Code Form is subject to the terms of the Mozilla Public
2 * License, v. 2.0. If a copy of the MPL was not distributed with this
3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
5 #sanitizeDurationChoice {
6 -moz-margin-end: 0;
7 }
9 /* Align the duration label with the warning box and item list */
10 #sanitizeDurationLabel {
11 -moz-margin-start: 3px;
12 }
15 /* Hide the duration dropdown suffix label if it's empty. Otherwise it
16 takes up a little space, causing the end of the dropdown to not be aligned
17 with the warning box. */
18 #sanitizeDurationSuffixLabel[value=""] {
19 display: none;
20 }
23 /* Places tree */
24 #placesTreechildren::-moz-tree-row(selected),
25 #placesTreechildren::-moz-tree-row(grippyRow) {
26 background: #999;
27 }
29 #placesTreechildren::-moz-tree-cell-text(selected) {
30 color: #111;
31 }
34 /* Sanitize everything warning box */
35 #sanitizeEverythingWarningBox {
36 background-color: Window;
37 border: 1px solid ThreeDDarkShadow;
38 border-radius: 5px;
39 padding: 16px;
40 }
42 #sanitizeEverythingWarningIcon {
43 list-style-image: url("chrome://global/skin/icons/warning-large.png");
44 padding: 0;
45 margin: 0;
46 }
48 #sanitizeEverythingWarningDescBox {
49 padding: 0 16px;
50 margin: 0;
51 }
54 /* Progressive disclosure button */
55 #detailsExpanderWrapper {
56 padding: 0;
57 margin: 6px 0;
58 }
60 .expander-up,
61 .expander-down {
62 min-width: 0;
63 margin: 0;
64 }
66 .expander-up > .button-box,
67 .expander-down > .button-box {
68 padding: 0;
69 }
71 .expander-up {
72 list-style-image: url("chrome://global/skin/icons/collapse.png");
73 }
75 .expander-down {
76 list-style-image: url("chrome://global/skin/icons/expand.png");
77 }
80 /* Make the item list the same width as the warning box */
81 #itemList {
82 -moz-margin-start: 0;
83 -moz-margin-end: 0;
84 }
87 /* Align the last dialog button with the end of the warning box */
88 .prefWindow-dlgbuttons {
89 -moz-margin-end: 0;
90 }
91 .dialog-button[dlgtype="cancel"] {
92 -moz-margin-end: 0;
93 }