add images that are referenced somewhere but not actually present
[themes.git] / LCARStrek / global / progressmeter.css
... / ...
CommitLineData
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/* ===== progressmeter.css ==============================================
6 == Styles used by the XUL progressmeter element.
7 ======================================================================= */
8
9@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
10
11/* ::::: progressmeter ::::: */
12
13progressmeter {
14 margin: 2px 4px;
15 border: 1px solid #FF9F00;
16 background-color: #000000;
17 min-width: 128px;
18 min-height: 15px;
19}
20
21progressmeter[mode="undetermined"] {
22 background-image: url("chrome://global/skin/progressmeter/progressmeter-busy.gif");
23 background-color: #008484;
24}
25
26.progress-bar {
27 min-width: 0px;
28 background-color: #008484;
29}
30
31.progress-bar[mode="undetermined"],
32.progress-remainder[mode="undetermined"] {
33 visibility: collapse;
34}
35
36/* ::::: statusbar progressmeter ::::: */
37
38.progressmeter-statusbar {
39 margin: 0px;
40 min-width: 96px;
41 -moz-box-flex: 1;
42 background-color: #794900;
43 border: none;
44}