blob: ae44afec74c16da8209b42296ffe8475a84ae94a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
|
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
/* ===== progressmeter.css ==============================================
== Styles used by the XUL progressmeter element.
======================================================================= */
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul");
/* ::::: progressmeter ::::: */
progressmeter {
margin: 2px 4px;
border: 1px solid;
border-top-color: #8997A1;
border-right-color: #C7D0D9;
border-bottom-color: #C7D0D9;
border-left-color: #8997A1;
min-width: 128px;
height: 14px;
}
progressmeter[mode="undetermined"] {
background: url("chrome://global/skin/progressmeter/progress-busy.png");
}
.progress-bar {
min-width: 0px;
background-color: #6B7B8D;
}
.progress-bar[mode="undetermined"],
.progress-remainder[mode="undetermined"] {
visibility: hidden;
}
/* ::::: statusbar progressmeter ::::: */
.progressmeter-statusbar {
margin: 0;
border-bottom-color: transparent;
border-top-color: #C7D0D9;
border-right-color: #8997A1;
border-left-color: #C7D0D9;
}
|