Wed, 31 Dec 2014 07:53:36 +0100
Correct small whitespace inconsistency, lost while renaming variables.
michael@0 | 1 | div.progress-element { |
michael@0 | 2 | -moz-appearance: progressbar; |
michael@0 | 3 | display: inline-block; |
michael@0 | 4 | height: 1em; |
michael@0 | 5 | width: 10em; |
michael@0 | 6 | vertical-align: -0.2em; |
michael@0 | 7 | |
michael@0 | 8 | /* Default style in case of there is -moz-appearance: none; */ |
michael@0 | 9 | border: 2px solid; |
michael@0 | 10 | -moz-border-top-colors: ThreeDShadow #e6e6e6; |
michael@0 | 11 | -moz-border-right-colors: ThreeDHighlight #e6e6e6; |
michael@0 | 12 | -moz-border-bottom-colors: ThreeDHighlight #e6e6e6; |
michael@0 | 13 | -moz-border-left-colors: ThreeDShadow #e6e6e6; |
michael@0 | 14 | background-color: #e6e6e6; |
michael@0 | 15 | } |
michael@0 | 16 | |
michael@0 | 17 | div.progress-element.vertical { |
michael@0 | 18 | height: 10em; |
michael@0 | 19 | width: 1em; |
michael@0 | 20 | } |
michael@0 | 21 | |
michael@0 | 22 | div.progress-bar { |
michael@0 | 23 | -moz-appearance: progresschunk; |
michael@0 | 24 | height: 100%; |
michael@0 | 25 | /* |
michael@0 | 26 | * We can't apply the following style to the reference because it will have |
michael@0 | 27 | * underisable effectes: |
michael@0 | 28 | * width: 100%; |
michael@0 | 29 | */ |
michael@0 | 30 | |
michael@0 | 31 | box-sizing: border-box; |
michael@0 | 32 | |
michael@0 | 33 | /* Default style in case of there is -moz-appearance: none; */ |
michael@0 | 34 | background-color: #0064b4; |
michael@0 | 35 | } |
michael@0 | 36 | |
michael@0 | 37 | progress, progress::-moz-progress-bar, div.progress-element, div.progress-bar { |
michael@0 | 38 | -moz-appearance: none; |
michael@0 | 39 | } |