summaryrefslogtreecommitdiff
path: root/src/chrome/browser/sanitizeDialog.css
diff options
context:
space:
mode:
authorLootyhoof <lootyhoofer@gmail.com>2015-11-19 23:02:12 +0000
committerLootyhoof <lootyhoofer@gmail.com>2015-11-19 23:02:12 +0000
commit274b11748f015db0f7c6276959602f6e8b30bb95 (patch)
treef1a9d61c609438d4e6116c3bbd4831e15538e1c5 /src/chrome/browser/sanitizeDialog.css
Initial commit
Diffstat (limited to 'src/chrome/browser/sanitizeDialog.css')
-rw-r--r--src/chrome/browser/sanitizeDialog.css93
1 files changed, 93 insertions, 0 deletions
diff --git a/src/chrome/browser/sanitizeDialog.css b/src/chrome/browser/sanitizeDialog.css
new file mode 100644
index 0000000..4312eb8
--- /dev/null
+++ b/src/chrome/browser/sanitizeDialog.css
@@ -0,0 +1,93 @@
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/. */
4
5#sanitizeDurationChoice {
6 -moz-margin-end: 0;
7}
8
9/* Align the duration label with the warning box and item list */
10#sanitizeDurationLabel {
11 -moz-margin-start: 3px;
12}
13
14
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}
21
22
23/* Places tree */
24#placesTreechildren::-moz-tree-row(selected),
25#placesTreechildren::-moz-tree-row(grippyRow) {
26 background: #999;
27}
28
29#placesTreechildren::-moz-tree-cell-text(selected) {
30 color: #111;
31}
32
33
34/* Sanitize everything warning box */
35#sanitizeEverythingWarningBox {
36 background-color: Window;
37 border: 1px solid ThreeDDarkShadow;
38 border-radius: 5px;
39 padding: 16px;
40}
41
42#sanitizeEverythingWarningIcon {
43 list-style-image: url("chrome://global/skin/icons/warning-large.png");
44 padding: 0;
45 margin: 0;
46}
47
48#sanitizeEverythingWarningDescBox {
49 padding: 0 16px;
50 margin: 0;
51}
52
53
54/* Progressive disclosure button */
55#detailsExpanderWrapper {
56 padding: 0;
57 margin: 6px 0;
58}
59
60.expander-up,
61.expander-down {
62 min-width: 0;
63 margin: 0;
64}
65
66.expander-up > .button-box,
67.expander-down > .button-box {
68 padding: 0;
69}
70
71.expander-up {
72 list-style-image: url("chrome://global/skin/icons/collapse.png");
73}
74
75.expander-down {
76 list-style-image: url("chrome://global/skin/icons/expand.png");
77}
78
79
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}
85
86
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}