Merge pull request #847 from StanAngeloff/master

Turn off $legacy-support-for-ie* for @content within the @keyframes mixin.
This commit is contained in:
Eric Meyer 2012-04-13 10:23:43 -07:00
commit 4f813e30e7
3 changed files with 73 additions and 1 deletions

View File

@ -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);
} }

View 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; }

View 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);
}