File tree 4 files changed +28
-4
lines changed
4 files changed +28
-4
lines changed Original file line number Diff line number Diff line change 95
95
}
96
96
}
97
97
98
+ @media all and (-ms-high-contrast : none ), (-ms-high-contrast : active ) {
99
+ .field {
100
+ & __widget {
101
+ flex-basis : auto ;
102
+ }
103
+ }
104
+ }
105
+
98
106
.field .field {
99
107
border-top : none ;
100
108
.field__no-title {
Original file line number Diff line number Diff line change @@ -24,6 +24,12 @@ $colorscalepicker-width: 215px;
24
24
.colorscalePickerContainer input :focus {
25
25
outline : none ;
26
26
}
27
+ @media all and (-ms-high-contrast : none ), (-ms-high-contrast : active ) {
28
+ .colorscalePickerContainer {
29
+ display : inline ;
30
+ }
31
+ }
32
+
27
33
.colorscalePickerBottomContainer {
28
34
padding-right : 3px ;
29
35
}
Original file line number Diff line number Diff line change 24
24
color : var (--color-text-base );
25
25
}
26
26
27
+ @media all and (-ms-high-contrast : none ), (-ms-high-contrast : active ) {
28
+ .numeric-input__wrapper {
29
+ flex-basis : auto ;
30
+ }
31
+ }
32
+
27
33
.numeric-input__number {
28
34
display : inline-block ;
29
35
border : var (--border-default );
34
40
white-space : nowrap ;
35
41
text-align : left ;
36
42
border-radius : var (--border-radius-small );
37
- padding : var (--spacing-quarter-unit ) var (--spacing-quarter-unit )
38
- var (--spacing-quarter-unit ) var ( --spacing- half-unit );
43
+ padding : var (--spacing-quarter-unit ) var (--spacing-quarter-unit ) var ( --spacing-quarter-unit )
44
+ var (--spacing-half-unit );
39
45
width : 62px ;
40
46
vertical-align : middle ;
41
47
font-size : inherit ;
Original file line number Diff line number Diff line change 1
1
$item-size : 90px ;
2
2
$image-size : 60px ;
3
+ $label-height : 34px ;
4
+ $row-height : $image-size + $label-height + $default-half-spacing-unit +
5
+ $default-quarter-spacing-unit ;
3
6
4
7
.trace-grid {
5
8
display : grid ;
6
9
grid-template-columns : repeat (4 , 1fr );
7
- @media (max-width : 1000 px ) {
10
+ @media (max-width : 860 px ) {
8
11
grid-template-columns : repeat (2 , 1fr );
9
12
}
10
13
& __column {
@@ -141,6 +144,7 @@ $image-size: 60px;
141
144
display : grid ;
142
145
grid-gap : 0 ;
143
146
grid-template-columns : repeat (2 , $item-size );
147
+ grid-template-rows : repeat (2 , $row-height );
144
148
flex-grow : 1 ;
145
149
width : 100% ;
146
150
padding : 0 var (--spacing-half-unit ) var (--spacing-half-unit );
@@ -267,7 +271,7 @@ $image-size: 60px;
267
271
& __label {
268
272
font-weight : var (--font-weight-semibold );
269
273
width : $item-size * 0.8 ;
270
- height : 34 px ;
274
+ height : $label-height ;
271
275
margin-top : var (--spacing-quarter-unit );
272
276
color : var (--color-text-base );
273
277
text-transform : capitalize ;
You can’t perform that action at this time.
0 commit comments