browser/themes/windows/aboutCertError.css

changeset 0
6474c204b198
equal deleted inserted replaced
-1:000000000000 0:4525dcf28c65
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
6 html {
7 background: -moz-Dialog;
8 }
9
10 body {
11 margin: 0;
12 padding: 0 1em;
13 color: -moz-FieldText;
14 font: message-box;
15 }
16
17 h1 {
18 margin: 0 0 .6em 0;
19 border-bottom: 1px solid ThreeDLightShadow;
20 font-size: 160%;
21 }
22
23 h2 {
24 font-size: 130%;
25 }
26
27 #errorPageContainer {
28 position: relative;
29 min-width: 13em;
30 max-width: 52em;
31 margin: 4em auto;
32 border: 1px solid #FFBD09; /* pale yellow extracted from yellow passport icon */
33 border-radius: 10px;
34 padding: 3em;
35 -moz-padding-start: 30px;
36 background: url("chrome://global/skin/icons/sslWarning.png") left 0 no-repeat -moz-Field;
37 background-origin: content-box;
38 }
39
40 #errorPageContainer:-moz-dir(rtl) {
41 background-position: right 0;
42 }
43
44 #errorTitle {
45 -moz-margin-start: 80px;
46 }
47
48 #errorLongContent {
49 -moz-margin-start: 80px;
50 }
51
52 .expander > button {
53 -moz-padding-start: 20px;
54 -moz-margin-start: -20px;
55 background: url("chrome://browser/skin/aboutCertError_sectionExpanded.png") left center no-repeat;
56 border: none;
57 font: inherit;
58 color: inherit;
59 cursor: pointer;
60 }
61
62 .expander > button:-moz-dir(rtl) {
63 background-position: right center;
64 }
65
66 .expander[collapsed] > button {
67 background-image: url("chrome://browser/skin/aboutCertError_sectionCollapsed.png");
68 }
69
70 .expander[collapsed] > button:-moz-dir(rtl) {
71 background-image: url("chrome://browser/skin/aboutCertError_sectionCollapsed-rtl.png");
72 }

mercurial