|
1 %if 0 |
|
2 /* This Source Code Form is subject to the terms of the Mozilla Public |
|
3 * License, v. 2.0. If a copy of the MPL was not distributed with this |
|
4 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
|
5 %endif |
|
6 |
|
7 html { |
|
8 height: 100%; |
|
9 } |
|
10 |
|
11 body { |
|
12 height: 100%; |
|
13 text-align: center; |
|
14 } |
|
15 |
|
16 #errorPageContainer { |
|
17 background-image: url("moz-icon://stock/gtk-dialog-warning?size=dialog"); |
|
18 display: -moz-box; |
|
19 width: -moz-available; |
|
20 height: 70%; |
|
21 -moz-box-orient: vertical; |
|
22 text-align: start; |
|
23 } |
|
24 |
|
25 #errorShortDesc > p { |
|
26 margin-top: 0.4em; |
|
27 margin-bottom: 0; |
|
28 } |
|
29 |
|
30 #errorLongContent, #errorTrailerDesc { |
|
31 display: -moz-box; |
|
32 -moz-box-flex: 1; |
|
33 -moz-box-orient: vertical; |
|
34 } |
|
35 |
|
36 #tabList { |
|
37 margin-top: 2.5em; |
|
38 width: 100%; |
|
39 min-height: 12em; |
|
40 } |
|
41 |
|
42 treechildren::-moz-tree-image(icon), |
|
43 treechildren::-moz-tree-image(noicon) { |
|
44 padding-right: 2px; |
|
45 margin: 0px 2px; |
|
46 width: 16px; |
|
47 height: 16px; |
|
48 } |
|
49 |
|
50 treechildren::-moz-tree-image(noicon) { |
|
51 list-style-image: url("chrome://mozapps/skin/places/defaultFavicon.png"); |
|
52 } |
|
53 treechildren::-moz-tree-image(container, noicon) { |
|
54 list-style-image: url("chrome://browser/skin/aboutSessionRestore-window-icon.png"); |
|
55 } |
|
56 treechildren::-moz-tree-image(checked) { |
|
57 list-style-image: url("chrome://global/skin/checkbox/cbox-check.gif"); |
|
58 } |
|
59 treechildren::-moz-tree-image(partial) { |
|
60 list-style-image: url("chrome://global/skin/checkbox/cbox-check-dis.gif"); |
|
61 } |
|
62 |
|
63 /* undo odd row highlighting from tree.css */ |
|
64 treechildren::-moz-tree-row(odd) { |
|
65 background-color: transparent; |
|
66 } |
|
67 treechildren::-moz-tree-row(odd, selected, focus) { |
|
68 background-color: Highlight; |
|
69 } |
|
70 |
|
71 /* highlight "windows" instead */ |
|
72 treechildren::-moz-tree-row(alternate) { |
|
73 background-color: -moz-oddtreerow; |
|
74 } |
|
75 treechildren::-moz-tree-row(alternate, selected) { |
|
76 background-color: Highlight; |
|
77 } |
|
78 |
|
79 #buttons { |
|
80 -moz-margin-start: 80px; /* same as #errorLongContent in netError.css */ |
|
81 } |
|
82 #buttons > button { |
|
83 margin-top: 2em; |
|
84 -moz-margin-start: 5px; |
|
85 } |