Skip to content

Commit

Permalink
fix(switch): widget not rendered correctly in IE 9 and 10
Browse files Browse the repository at this point in the history
  • Loading branch information
Juveniel authored and joneff committed Oct 19, 2019
1 parent 2258964 commit 5e9cd95
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions packages/default/scss/switch/_layout.scss
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@
[type="checkbox"] {
display: none;
}

.k-ie & {
display: inline-block;
}
}

.k-switch,
Expand All @@ -34,6 +38,10 @@
position: relative;
outline: 0;
transition: background-color 200ms ease-out 0s;

.k-ie & {
display: block;
}
}

.k-switch-handle {
Expand Down

0 comments on commit 5e9cd95

Please sign in to comment.