Skip to content

Commit

Permalink
Add min-width property only for ie10+ (#558)
Browse files Browse the repository at this point in the history
  • Loading branch information
JKMarkowski committed Jan 2, 2020
1 parent 7697c78 commit 26a755c
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/input-group.scss
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ $fd-input-border-radius: var(--sapField_BorderCornerRadius);

background-color: transparent;
border: none;
flex: 1 1 auto;
flex: 1;
padding-right: 0.25rem;
padding-left: 0.25rem;

Expand Down Expand Up @@ -105,6 +105,11 @@ $fd-input-border-radius: var(--sapField_BorderCornerRadius);
padding-right: 0.25rem;
}
}

/** Behaviour only for IE10+ */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
min-width: 160px;
}
}

&--inline {
Expand Down

0 comments on commit 26a755c

Please sign in to comment.