Files
edx-platform/cms/static/sass/contexts/_ie.scss
2013-11-25 20:57:35 -05:00

33 lines
450 B
SCSS

// studio - contexts - ie
// ====================
// CASE: less than or equal to IE9
.lte9 {
// CASE: IE9 doesn't support css animations and negative positioning
.wrapper-notification {
&.is-shown {
bottom: 0;
}
&.is-hiding {
bottom: -($ui-notification-height);
}
}
}
// ====================
// CASE: less than or equal to IE8
.lte8 {
}
// ====================
// CASE: less than or equal to IE7
.lte7 {
}