_ie.scss 450 Bytes
Newer Older
1 2 3 4 5 6
// studio - contexts - ie
// ====================

// CASE: less than or equal to IE9
.lte9 {

7 8 9 10 11 12
  // CASE: IE9 doesn't support css animations and negative positioning
  .wrapper-notification {

    &.is-shown {
      bottom: 0;
    }
13 14 15 16

    &.is-hiding {
      bottom: -($ui-notification-height);
    }
17
  }
18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
}

// ====================

// CASE: less than or equal to IE8
.lte8 {

}

// ====================

// CASE: less than or equal to IE7
.lte7 {

}