Re-apply missing IE10+ and Edge fix for touch/trackpad

This commit is contained in:
Hyunje Alex Jun 2016-01-24 04:25:28 +09:00
parent f4cb31f8d8
commit c49cf7905e

View File

@ -43,7 +43,18 @@
// Layout and theme mixin
@mixin ps-container($theme) {
-ms-touch-action: none;
touch-action: none;
overflow: hidden !important;
-ms-overflow-style: none;
// Edge
@supports (-ms-overflow-style: none) {
overflow: auto !important;
}
// IE10+
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
overflow: auto !important;
}
&.ps-active-x > .ps-scrollbar-x-rail,
&.ps-active-y > .ps-scrollbar-y-rail {