sync both themes with toolkit windows theme changes in Mozilla 35 cycle
[themes.git] / EarlyBlue / communicator / certError.css
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: #CCD0DD;
8 }
9
10 body {
11   margin: 0;
12   padding: 0 1em;
13   color: #000000;
14   font: 11px "Liberation Sans",Arial,Tahoma,Helvetica,sans-serif;
15 }
16
17 h1 {
18   margin: 0 0 .6em;
19   border-bottom: 1px solid #666699;
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: 2px solid #FFFFCC;
33   padding: 3em;
34   -moz-padding-start: 30px;
35   background: url("chrome://global/skin/icons/sslWarning.png") left 0 no-repeat #9999CC;
36   background-origin: content-box;
37 }
38
39 body[dir="rtl"] #errorPageContainer {
40   background-position: right 0;
41 }
42
43 #errorTitle {
44   -moz-margin-start: 80px;
45 }
46
47 #errorLongContent {
48   -moz-margin-start: 80px;
49 }
50
51 #technicalContent > h2, #expertContent > h2 {
52   cursor: pointer;
53   -moz-padding-start: 20px;
54   position: relative;
55   left: -20px;
56   background: url("chrome://global/skin/tree/twisty-open-selected.gif") left center no-repeat;
57 }
58
59 #technicalContent[collapsed] > h2,
60 #expertContent[collapsed] > h2 {
61   background-image: url("chrome://global/skin/tree/twisty-closed-selected.gif");
62 }
63
64 #technicalContent[collapsed] > p,
65 #expertContent[collapsed] > div {
66   display: none;
67 }
68
69 #technicalContentText {
70   overflow: auto;
71   white-space: pre-wrap;
72 }