diff options
author | Hakim El Hattab | 2013-06-04 19:51:06 +0200 |
---|---|---|
committer | Hakim El Hattab | 2013-06-04 19:51:06 +0200 |
commit | bfadfcc7ce8235ad90982aa5020731db9b2ee69c (patch) | |
tree | 5ff2f76281582921f43dc67e129432d408b97708 /css/reveal.css | |
parent | 90811b8709cb26d1db91247fb650c44621315a25 (diff) |
don't transition to first slide background (#453)
Diffstat (limited to 'css/reveal.css')
-rw-r--r-- | css/reveal.css | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/css/reveal.css b/css/reveal.css index 59d3c45..69a337d 100644 --- a/css/reveal.css +++ b/css/reveal.css @@ -1245,12 +1245,13 @@ body { left: 0; } -.no-transition { - -webkit-transition: none; - -moz-transition: none; - -ms-transition: none; - -o-transition: none; - transition: none; +.no-transition, +.no-transition * { + -webkit-transition: none !important; + -moz-transition: none !important; + -ms-transition: none !important; + -o-transition: none !important; + transition: none !important; } |