make prefs work right for FF4
[themes.git] / LCARStrek / browser / aboutCertError.css
CommitLineData
319c6529
RK
1/* ***** BEGIN LICENSE BLOCK *****
2 * Version: MPL 1.1/GPL 2.0/LGPL 2.1
3 *
4 * The contents of this file are subject to the Mozilla Public License Version
5 * 1.1 (the "License"); you may not use this file except in compliance with
6 * the License. You may obtain a copy of the License at
7 * http://www.mozilla.org/MPL/
8 *
9 * Software distributed under the License is distributed on an "AS IS" basis,
10 * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
11 * for the specific language governing rights and limitations under the
12 * License.
13 *
14 * The Original Code is mozilla.org code.
15 *
16 * The Initial Developer of the Original Code is
17 * the Mozilla Foundation.
18 * Portions created by the Initial Developer are Copyright (C) 2008
19 * the Initial Developer. All Rights Reserved.
20 *
21 * Contributor(s):
22 * William Price <bugzilla@mob.rice.edu>
23 * Steven Garrity <steven@silverorange.com>
24 * Henrik Skupin <mozilla@hskupin.info>
25 * Johnathan Nightingale <johnath@mozilla.com>
26 * Ehsan Akhgari <ehsan.akhgari@gmail.com>
27 *
28 * Alternatively, the contents of this file may be used under the terms of
29 * either the GNU General Public License Version 2 or later (the "GPL"), or
30 * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
31 * in which case the provisions of the GPL or the LGPL are applicable instead
32 * of those above. If you wish to allow use of your version of this file only
33 * under the terms of either the GPL or the LGPL, and not to allow others to
34 * use your version of this file under the terms of the MPL, indicate your
35 * decision by deleting the provisions above and replace them with the notice
36 * and other provisions required by the GPL or the LGPL. If you do not delete
37 * the provisions above, a recipient may use your version of this file under
38 * the terms of any one of the MPL, the GPL or the LGPL.
39 *
40 * ***** END LICENSE BLOCK ***** */
41
42
43html {
44 background: #000000;
45}
46
47body {
48 margin: 0;
49 padding: 0 1em;
50 color: #FF9F00;
51 font: 11px "Liberation Sans",Arial,Tahoma,Helvetica,sans-serif;
52}
53
54h1 {
55 margin: 0 0 .6em;
56 border-bottom: 1px solid #008484;
57 font-size: 160%;
58 color: #FF0000;
59}
60
61h2 {
62 font-size: 130%;
63 background-color: #9C9CFF;
64 color: #000000;
65 border-radius: 8px;
66 -moz-padding-start: 10px;
67}
68
69#errorPageContainer {
70 position: relative;
71 min-width: 13em;
72 max-width: 52em;
73 margin: 4em auto;
74 border: 2px solid #FFCF00;
75 border-radius: 10px;
76 padding: 3em;
77 -moz-padding-start: 30px;
78 background: url("chrome://global/skin/icons/sslWarning.png") left 0 no-repeat #000000;
79 background-origin: content-box;
80}
81
82body[dir="rtl"] #errorPageContainer {
83 background-position: right 0;
84}
85
86#errorTitle {
87 -moz-margin-start: 80px;
88}
89
90#errorLongContent {
91 -moz-margin-start: 80px;
92}
93
94#technicalContent > h2, #expertContent > h2 {
95 -moz-padding-start: 20px;
96 cursor: pointer;
97 background-image: url("chrome://global/skin/tree/twisty-open-selected.gif");
98 background-position: 5px center;
99 background-repeat: no-repeat;
100}
101
102#technicalContent > h2:hover,
103#technicalContent > h2:hover:active,
104#expertContent > h2:hover,
105#expertContent > h2:hover:active {
106 background-color: #FFCF00;
107}
108
109#technicalContent[collapsed] > h2,
110#expertContent[collapsed] > h2 {
111 background-image: url("chrome://global/skin/tree/twisty-closed-selected.gif");
112}
113
114#technicalContent[collapsed] > p,
115#expertContent[collapsed] > div {
116 display: none;
117}
118
119#technicalContentText {
120 overflow: auto;
121 white-space: pre-wrap;
122}