Merge pull request #847 from StanAngeloff/master
Turn off $legacy-support-for-ie* for @content within the @keyframes mixin.
This commit is contained in:
commit
4f813e30e7
@ -46,19 +46,31 @@
|
|||||||
$experimental-support-for-khtml: $khtml;
|
$experimental-support-for-khtml: $khtml;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Change the legacy-support-for-ie* settings in specific contexts.
|
||||||
|
@mixin set-legacy-ie-support($ie6: false, $ie7: false, $ie8: false) {
|
||||||
|
$legacy-support-for-ie6: $ie6;
|
||||||
|
$legacy-support-for-ie7: $ie7;
|
||||||
|
$legacy-support-for-ie8: $ie8;
|
||||||
|
}
|
||||||
|
|
||||||
// This mixin allows you to change the experimental support settings for
|
// This mixin allows you to change the experimental support settings for
|
||||||
// child (@content) styles.
|
// child (@content) styles.
|
||||||
@mixin with-only-support-for($moz: false, $webkit: false, $ms: false, $o: false, $khtml: false) {
|
@mixin with-only-support-for($moz: false, $webkit: false, $ms: false, $o: false, $khtml: false, $legacy-ie: false) {
|
||||||
// Capture the current state
|
// Capture the current state
|
||||||
$original-moz: $experimental-support-for-mozilla;
|
$original-moz: $experimental-support-for-mozilla;
|
||||||
$original-webkit: $experimental-support-for-webkit;
|
$original-webkit: $experimental-support-for-webkit;
|
||||||
$original-o: $experimental-support-for-opera;
|
$original-o: $experimental-support-for-opera;
|
||||||
$original-ms: $experimental-support-for-microsoft;
|
$original-ms: $experimental-support-for-microsoft;
|
||||||
$original-khtml: $experimental-support-for-khtml;
|
$original-khtml: $experimental-support-for-khtml;
|
||||||
|
$original-ie6: $legacy-support-for-ie6;
|
||||||
|
$original-ie7: $legacy-support-for-ie7;
|
||||||
|
$original-ie8: $legacy-support-for-ie8;
|
||||||
// Change support settings
|
// Change support settings
|
||||||
@include set-experimental-support($moz, $webkit, $ms, $o, $khtml);
|
@include set-experimental-support($moz, $webkit, $ms, $o, $khtml);
|
||||||
|
@include set-legacy-ie-support($legacy-ie, $legacy-ie, $legacy-ie);
|
||||||
// Apply styles
|
// Apply styles
|
||||||
@content;
|
@content;
|
||||||
// Return to original support settings
|
// Return to original support settings
|
||||||
|
@include set-legacy-ie-support($original-ie6, $original-ie7, $original-ie8);
|
||||||
@include set-experimental-support($original-moz, $original-webkit, $original-ms, $original-o, $original-khtml);
|
@include set-experimental-support($original-moz, $original-webkit, $original-ms, $original-o, $original-khtml);
|
||||||
}
|
}
|
||||||
|
41
test/fixtures/stylesheets/compass/css/animation-with-legacy-ie.css
vendored
Normal file
41
test/fixtures/stylesheets/compass/css/animation-with-legacy-ie.css
vendored
Normal file
@ -0,0 +1,41 @@
|
|||||||
|
@-moz-keyframes test {
|
||||||
|
0%, 100% {
|
||||||
|
opacity: 1; }
|
||||||
|
|
||||||
|
50% {
|
||||||
|
opacity: 0; } }
|
||||||
|
|
||||||
|
@-webkit-keyframes test {
|
||||||
|
0%, 100% {
|
||||||
|
opacity: 1; }
|
||||||
|
|
||||||
|
50% {
|
||||||
|
opacity: 0; } }
|
||||||
|
|
||||||
|
@-o-keyframes test {
|
||||||
|
0%, 100% {
|
||||||
|
opacity: 1; }
|
||||||
|
|
||||||
|
50% {
|
||||||
|
opacity: 0; } }
|
||||||
|
|
||||||
|
@-ms-keyframes test {
|
||||||
|
0%, 100% {
|
||||||
|
opacity: 1; }
|
||||||
|
|
||||||
|
50% {
|
||||||
|
opacity: 0; } }
|
||||||
|
|
||||||
|
@keyframes test {
|
||||||
|
0%, 100% {
|
||||||
|
opacity: 1; }
|
||||||
|
|
||||||
|
50% {
|
||||||
|
opacity: 0; } }
|
||||||
|
|
||||||
|
.animation {
|
||||||
|
-webkit-animation: test;
|
||||||
|
-moz-animation: test;
|
||||||
|
-ms-animation: test;
|
||||||
|
-o-animation: test;
|
||||||
|
animation: test; }
|
19
test/fixtures/stylesheets/compass/sass/animation-with-legacy-ie.scss
vendored
Normal file
19
test/fixtures/stylesheets/compass/sass/animation-with-legacy-ie.scss
vendored
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
@import "compass/css3/animation";
|
||||||
|
@import "compass/css3/opacity";
|
||||||
|
|
||||||
|
$legacy-support-for-ie8: true;
|
||||||
|
$legacy-support-for-ie7: true;
|
||||||
|
$legacy-support-for-ie6: true;
|
||||||
|
|
||||||
|
@include keyframes(test) {
|
||||||
|
0%, 100% {
|
||||||
|
@include opacity(1);
|
||||||
|
}
|
||||||
|
50% {
|
||||||
|
@include opacity(0);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.animation {
|
||||||
|
@include animation(test);
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user