1
0
mirror of https://github.com/hakimel/reveal.js.git synced 2025-08-29 09:19:57 +02:00

fixes ff overview rendering bug #1649

This commit is contained in:
Hakim El Hattab
2016-10-10 12:11:27 +02:00
parent e76855e257
commit 7547b893d4
2 changed files with 14 additions and 1 deletions

View File

@@ -1028,6 +1028,12 @@ body {
perspective-origin: 50% 50%;
perspective: 700px;
.slides {
// Fixes overview rendering errors in FF48+, not applied to
// other browsers since it degrades performance
-moz-transform-style: preserve-3d;
}
.slides section {
height: 100%;
top: 0 !important;
@@ -1060,6 +1066,10 @@ body {
.backgrounds {
perspective: inherit;
// Fixes overview rendering errors in FF48+, not applied to
// other browsers since it degrades performance
-moz-transform-style: preserve-3d;
}
.backgrounds .slide-background {