sync EarlyBlue theme with toolkit windows theme changes in Mozilla 40 cycle
[themes.git] / EarlyBlue / 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 inset #CCD0DD;
16 background-color: #999999;
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: #CCD0DD;
24}
25
26.progress-bar {
27 min-width: 0px;
28 background-color: #6699CC;
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 2px;
40 border: 1px solid #CCD0DD;
41 background-color: #666699;
42 min-width: 96px;
43 min-height: 16px;
44}