OLD | NEW |
1 /* This Source Code Form is subject to the terms of the Mozilla Public | 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 | 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/. */ | 3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
4 | 4 |
5 html, | 5 html, |
6 body { | 6 body { |
7 margin: 0; | 7 margin: 0; |
8 padding: 0; | 8 padding: 0; |
9 background-color: #ced7de; | 9 background-color: #ced7de; |
10 -moz-user-select: none; | 10 -moz-user-select: none; |
11 font-family: "Clear Sans",sans-serif; | 11 font-family: "Clear Sans",sans-serif; |
12 -moz-text-size-adjust: none; | 12 -moz-text-size-adjust: none; |
13 } | 13 } |
14 | 14 |
15 .toolbar { | 15 .toolbar { |
16 width: 100%; | 16 width: 100%; |
17 height: 3em; | 17 height: 3em; |
18 position: fixed; | 18 position: fixed; |
19 top: 0; | 19 top: 0; |
20 left: 0; | 20 left: 0; |
21 z-index: 10; | 21 z-index: 10; |
22 box-shadow: 0 0 3px #444; | 22 box-shadow: 0 0 3px #444; |
23 background-color: #ced7de; | 23 background-color: #ced7de; |
24 color: #000000; | 24 color: #000000; |
25 font-weight: bold; | 25 font-weight: bold; |
26 border-bottom: 2px solid; | 26 border-bottom: 2px solid; |
27 -moz-border-bottom-colors: #ff9100 #f27900; | 27 -moz-border-bottom-colors: #009CD9 #009CD9; /*matched to abb_accent_dark_blu
e in java codebase*/ |
28 } | 28 } |
29 | 29 |
30 .toolbar-container { | 30 .toolbar-container { |
31 max-width: 40em; | 31 max-width: 40em; |
32 margin-left: auto; | 32 margin-left: auto; |
33 margin-right: auto; | 33 margin-right: auto; |
34 } | 34 } |
35 | 35 |
36 #filter-container { | 36 #filter-container { |
37 margin-top: 0.5em; | 37 margin-top: 0.5em; |
(...skipping 286 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
324 } | 324 } |
325 | 325 |
326 #loading-container > li { | 326 #loading-container > li { |
327 background-image: url(chrome://browser/skin/images/throbber.png); | 327 background-image: url(chrome://browser/skin/images/throbber.png); |
328 background-position: center center; | 328 background-position: center center; |
329 background-repeat: no-repeat; | 329 background-repeat: no-repeat; |
330 padding-left: 40px; | 330 padding-left: 40px; |
331 height: 3em; | 331 height: 3em; |
332 width: 100%; | 332 width: 100%; |
333 } | 333 } |
OLD | NEW |