* Fix all stylelint errors For any errors that fixing would require changing the output of the css disable stylelint for that line instead of modifying. * Update quality.py Make stylelint quality check pass when there are no errors * Delete empty selectors
18 lines
305 B
SCSS
18 lines
305 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);
|
|
}
|
|
}
|
|
}
|