@microsoft/atlas-css 3.47.0 → 3.47.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@microsoft/atlas-css",
3
- "version": "3.47.0",
3
+ "version": "3.47.1",
4
4
  "description": "Styles backing the Atlas Design System used by Microsoft's Developer Relations.",
5
5
  "scripts": {
6
6
  "test": "echo \"Error: no test specified\" && exit 1",
@@ -24,7 +24,10 @@ $progress-bar-indeterminate-animation-duration: 2s !default;
24
24
  background-color: $progress-bar-background-color;
25
25
  }
26
26
 
27
- &::-webkit-progress-value,
27
+ &::-webkit-progress-value {
28
+ background-color: $progress-bar-value-background-color;
29
+ }
30
+
28
31
  &::-moz-progress-bar {
29
32
  background-color: $progress-bar-value-background-color;
30
33
  }
@@ -38,21 +41,30 @@ $progress-bar-indeterminate-animation-duration: 2s !default;
38
41
  // Colors
39
42
 
40
43
  &.progress-bar-success {
41
- &::-webkit-progress-value,
44
+ &::-webkit-progress-value {
45
+ background-color: $progress-bar-value-background-color-success;
46
+ }
47
+
42
48
  &::-moz-progress-bar {
43
49
  background-color: $progress-bar-value-background-color-success;
44
50
  }
45
51
  }
46
52
 
47
53
  &.progress-bar-danger {
48
- &::-webkit-progress-value,
54
+ &::-webkit-progress-value {
55
+ background-color: $progress-bar-value-background-color-danger;
56
+ }
57
+
49
58
  &::-moz-progress-bar {
50
59
  background-color: $progress-bar-value-background-color-danger;
51
60
  }
52
61
  }
53
62
 
54
63
  &.progress-bar-warning {
55
- &::-webkit-progress-value,
64
+ &::-webkit-progress-value {
65
+ background-color: $progress-bar-value-background-color-warning;
66
+ }
67
+
56
68
  &::-moz-progress-bar {
57
69
  background-color: $progress-bar-value-background-color-warning;
58
70
  }
@@ -78,7 +90,10 @@ $progress-bar-indeterminate-animation-duration: 2s !default;
78
90
  animation-direction: reverse;
79
91
  }
80
92
 
81
- &::-webkit-progress-bar,
93
+ &::-webkit-progress-bar {
94
+ background-color: transparent;
95
+ }
96
+
82
97
  &::-moz-progress-bar {
83
98
  background-color: transparent;
84
99
  }
@@ -95,7 +110,10 @@ $progress-bar-indeterminate-animation-duration: 2s !default;
95
110
  background-color: CanvasText !important;
96
111
  }
97
112
 
98
- &::-webkit-progress-value,
113
+ &::-webkit-progress-value {
114
+ background-color: Highlight !important;
115
+ }
116
+
99
117
  &::-moz-progress-bar {
100
118
  background-color: Highlight !important;
101
119
  }