Skip to content

Commit d843b11

Browse files
committed
more IE fixes
1 parent c27e5a9 commit d843b11

File tree

3 files changed

+22
-2
lines changed

3 files changed

+22
-2
lines changed

src/styles/components/fields/_field.scss

+8
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,14 @@
9595
}
9696
}
9797

98+
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
99+
.field {
100+
&__widget {
101+
flex-basis: auto;
102+
}
103+
}
104+
}
105+
98106
.field .field {
99107
border-top: none;
100108
.field__no-title {

src/styles/components/widgets/_colorscalepicker.scss

+6
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,12 @@ $colorscalepicker-width: 215px;
2424
.colorscalePickerContainer input:focus {
2525
outline: none;
2626
}
27+
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
28+
.colorscalePickerContainer {
29+
display: inline;
30+
}
31+
}
32+
2733
.colorscalePickerBottomContainer {
2834
padding-right: 3px;
2935
}

src/styles/components/widgets/_numeric-input.scss

+8-2
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,12 @@
2424
color: var(--color-text-base);
2525
}
2626

27+
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
28+
.numeric-input__wrapper {
29+
flex-basis: auto;
30+
}
31+
}
32+
2733
.numeric-input__number {
2834
display: inline-block;
2935
border: var(--border-default);
@@ -34,8 +40,8 @@
3440
white-space: nowrap;
3541
text-align: left;
3642
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);
3945
width: 62px;
4046
vertical-align: middle;
4147
font-size: inherit;

0 commit comments

Comments
 (0)