diff options
author | Hakim El Hattab | 2012-10-29 00:10:14 -0400 |
---|---|---|
committer | Hakim El Hattab | 2012-10-29 00:10:14 -0400 |
commit | 5c5b3d34d9031f08fb6b8a8e16345c36e2891c9d (patch) | |
tree | 720adb3396fdf4d4f6da3e209e3672a18b3d13d9 /css/reveal.css | |
parent | e87d68923169cdff32c2ddf97981d2c7ac9efd2f (diff) |
fix rolling links glitch in firefox
Diffstat (limited to 'css/reveal.css')
-rw-r--r-- | css/reveal.css | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/css/reveal.css b/css/reveal.css index ad2e33e..412e8ec 100644 --- a/css/reveal.css +++ b/css/reveal.css @@ -1157,15 +1157,15 @@ body { .zoomed .reveal *, .zoomed .reveal *:before, .zoomed .reveal *:after { - -webkit-transform: initial !important; - -moz-transform: initial !important; - -ms-transform: initial !important; - transform: initial !important; - - -webkit-backface-visibility: initial !important; - -moz-backface-visibility: initial !important; - -ms-backface-visibility: initial !important; - backface-visibility: initial !important; + -webkit-transform: none !important; + -moz-transform: none !important; + -ms-transform: none !important; + transform: none !important; + + -webkit-backface-visibility: visible !important; + -moz-backface-visibility: visible !important; + -ms-backface-visibility: visible !important; + backface-visibility: visible !important; } .zoomed .reveal .progress, |