@microsoft/atlas-css 3.12.1 → 3.12.2

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.12.1",
3
+ "version": "3.12.2",
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,6 +24,7 @@ $select-arrow-actual-width: 0.75em !default;
24
24
 
25
25
  .select {
26
26
  position: relative;
27
+ font-size: $control-font-size;
27
28
 
28
29
  select {
29
30
  @include control;
@@ -33,7 +34,6 @@ $select-arrow-actual-width: 0.75em !default;
33
34
  border-color: $select-border-color;
34
35
  background-color: $select-background-color;
35
36
  color: $select-color;
36
- font-size: inherit;
37
37
  cursor: pointer;
38
38
 
39
39
  &[multiple] {
@@ -90,11 +90,19 @@ $select-arrow-actual-width: 0.75em !default;
90
90
  }
91
91
 
92
92
  &.select-sm {
93
- @include control-sm;
93
+ font-size: $control-sm-font-size;
94
+
95
+ select {
96
+ @include control-sm;
97
+ }
94
98
  }
95
99
 
96
100
  &.select-lg {
97
- @include control-lg;
101
+ font-size: $control-lg-font-size;
102
+
103
+ select {
104
+ @include control-lg;
105
+ }
98
106
  }
99
107
 
100
108
  &.select-danger select {