Browse Source

Fix @keyframes.

Use the `@at-root` directive to work around the issue.
pull/463/head
XhmikosR 11 years ago
parent
commit
7711f4bf87
  1. 4
      sass/theme-ios.scss

4
sass/theme-ios.scss

@ -580,7 +580,9 @@ textarea,
} }
// Overlay animation for the slide transition // Overlay animation for the slide transition
@-webkit-keyframes fadeOverlay { @at-root {
@-webkit-keyframes fadeOverlay {
from { @include box-shadow(0 0 10px rgba(0,0,0,0), -320px 0 0 rgba(0,0,0,0)); } from { @include box-shadow(0 0 10px rgba(0,0,0,0), -320px 0 0 rgba(0,0,0,0)); }
to { @include box-shadow(0 0 10px rgba(0,0,0,.3), -320px 0 0 rgba(0,0,0,.1)); } to { @include box-shadow(0 0 10px rgba(0,0,0,.3), -320px 0 0 rgba(0,0,0,.1)); }
}
} }

Loading…
Cancel
Save