Commit | Line | Data |
---|---|---|
9099c61d RK |
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/. */ | |
f620f94d | 4 | |
1e29db46 RK |
5 | /* |
6 | * The default namespace for this file is XUL. Be sure to prefix rules that | |
7 | * are applicable to both XUL and HTML with '*|'. | |
8 | */ | |
f620f94d | 9 | @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); |
1e29db46 | 10 | @namespace html url("http://www.w3.org/1999/xhtml"); |
f620f94d RK |
11 | |
12 | /* Page background */ | |
1e29db46 | 13 | *|*:root { |
f620f94d RK |
14 | background-color: #000000; |
15 | color: #FF9F00; | |
16 | margin: 20px; | |
17 | } | |
18 | ||
1e29db46 RK |
19 | html|html { |
20 | font: 11px "Liberation Sans",Arial,Tahoma,Helvetica,sans-serif; | |
21 | } | |
22 | ||
441d0294 RK |
23 | /* Use the new in-content colors for #contentAreaDownloadsView. After landing |
24 | of bug 989469 the colors can be moved to *|*:root */ | |
25 | *|*#contentAreaDownloadsView { | |
26 | background: #000000; | |
27 | color: #FF9F00; | |
28 | } | |
29 | ||
f620f94d | 30 | /* Content */ |
1e29db46 | 31 | *|*.main-content { |
f620f94d | 32 | /* Needed to allow the radius to clip the inner content, see bug 595656 */ |
f620f94d | 33 | overflow: hidden; |
f620f94d RK |
34 | border: 1px solid #9C9CFF; |
35 | border-radius: 5px; | |
36 | } | |
154ee8b3 RK |
37 | |
38 | colorpicker[type="button"] { | |
39 | margin: 1px 5px 2px 5px; | |
40 | padding: 3px; | |
41 | height: 25px; | |
42 | } |