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