File tree Expand file tree Collapse file tree 1 file changed +52
-0
lines changed Expand file tree Collapse file tree 1 file changed +52
-0
lines changed Original file line number Diff line number Diff line change
1
+ progress [value ] {
2
+ /* Reset the default appearance */
3
+ -webkit-appearance : none;
4
+ -moz-appearance : none;
5
+ appearance : none;
6
+ border : none;
7
+ color : White;
8
+ }
9
+
10
+ /* Background Colors */
11
+ progress , /* Firefox */
12
+ progress [role ][aria-valuenow ] { /* Polyfill */
13
+ /* RESETS */
14
+ -webkit-appearance : none;
15
+ -moz-appearance : none;
16
+ appearance : none;
17
+ border : none;
18
+ background : # CCC ; /* !important is needed by the polyfill */
19
+ width : 240px ;
20
+ height : 1px ;
21
+ }
22
+
23
+ /* Chrome */
24
+ progress ::-webkit-progress-bar {
25
+ background : # CCC ;
26
+ }
27
+
28
+ /* Foreground Colors */
29
+ /* IE10 */
30
+ progress {
31
+ color : White;
32
+ }
33
+
34
+ /* Firefox */
35
+ progress ::-moz-progress-bar {
36
+ background : White;
37
+ }
38
+
39
+ /* Chrome */
40
+ progress ::-webkit-progress-value {
41
+ background : White;
42
+ }
43
+
44
+ /* Polyfill */
45
+ progress [aria-valuenow ]: before {
46
+ background : White;
47
+ }
48
+
49
+ /* MICROSOFT EDGE ANNOYING VERTICAL LINE AT END OF VALUE */
50
+ progress ::-ms-fill {
51
+ border-color : currentColor;
52
+ }
You can’t perform that action at this time.
0 commit comments