diff options
author | Hakim El Hattab | 2016-10-05 14:00:40 +0200 |
---|---|---|
committer | Hakim El Hattab | 2016-10-05 14:00:40 +0200 |
commit | 0b9233cf4a1a53297356cbc834c2240a92d20545 (patch) | |
tree | 2194ec29e51412bab129031dd300db5501fcc7d9 /css/reveal.scss | |
parent | ce55d1a179c4e81ffe84c4f880a3b21fb6f3b440 (diff) |
attempt at fixing ff transition bug #1627
Diffstat (limited to 'css/reveal.scss')
-rw-r--r-- | css/reveal.scss | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/css/reveal.scss b/css/reveal.scss index c888a27..c5ff05a 100644 --- a/css/reveal.scss +++ b/css/reveal.scss @@ -480,6 +480,12 @@ body { @content; } } +@mixin transition-stack($style) { + .reveal .slides section[data-transition=#{$style}].stack, + .reveal.#{$style} .slides section.stack { + @content; + } +} @mixin transition-horizontal-past($style) { .reveal .slides>section[data-transition=#{$style}].past, .reveal .slides>section[data-transition~=#{$style}-out].past, @@ -539,7 +545,7 @@ body { *********************************************/ @each $stylename in default, convex { - @include transition-global(#{$stylename}) { + @include transition-stack(#{$stylename}) { transform-style: preserve-3d; } @@ -561,7 +567,7 @@ body { * CONCAVE TRANSITION *********************************************/ -@include transition-global(concave) { +@include transition-stack(concave) { transform-style: preserve-3d; } |