diff options
author | Hakim El Hattab <hakim.elhattab@gmail.com> | 2015-01-27 09:21:49 +0100 |
---|---|---|
committer | Hakim El Hattab <hakim.elhattab@gmail.com> | 2015-01-27 09:21:49 +0100 |
commit | e29c706533c227682cfde1ac0b187e90738b9bbc (patch) | |
tree | 6f93c5a5b98a13af75902f8d60984d7cb0b806c2 /css | |
parent | 11293d7c9415862007dbc1e3936b0fcbf4626da1 (diff) | |
download | fosdem-2018-presentation-e29c706533c227682cfde1ac0b187e90738b9bbc.tar fosdem-2018-presentation-e29c706533c227682cfde1ac0b187e90738b9bbc.tar.gz |
further overview refactoring
Diffstat (limited to 'css')
-rw-r--r-- | css/reveal.css | 10 | ||||
-rw-r--r-- | css/reveal.scss | 7 |
2 files changed, 9 insertions, 8 deletions
diff --git a/css/reveal.css b/css/reveal.css index b198486..69b7cf9 100644 --- a/css/reveal.css +++ b/css/reveal.css @@ -645,8 +645,8 @@ body { outline-offset: 10px; } .reveal.overview .slides section, .reveal.overview-deactivating .slides section { - -webkit-transition: none !important; - transition: none !important; } + -webkit-transition: none; + transition: none; } .reveal.overview .slides section .fragment { opacity: 1; } @@ -677,10 +677,10 @@ body { visibility: visible; } .reveal.overview .backgrounds .slide-background, .reveal.overview-deactivating .backgrounds .slide-background { - -webkit-transition: none !important; - transition: none !important; } + -webkit-transition: none; + transition: none; } -.reveal.overview-animated .slides { +.reveal.overview-animated .slides, .reveal.overview-animated .slides section { -webkit-transition: -webkit-transform 0.4s ease; transition: transform 0.4s ease; } diff --git a/css/reveal.scss b/css/reveal.scss index 02587fb..b3f3bdc 100644 --- a/css/reveal.scss +++ b/css/reveal.scss @@ -759,7 +759,7 @@ body { } .reveal.overview .slides section, .reveal.overview-deactivating .slides section { - transition: none !important; + transition: none; } .reveal.overview .slides section .fragment { opacity: 1; @@ -793,10 +793,11 @@ body { } .reveal.overview .backgrounds .slide-background, .reveal.overview-deactivating .backgrounds .slide-background { - transition: none !important; + transition: none; } -.reveal.overview-animated .slides { +.reveal.overview-animated .slides, +.reveal.overview-animated .slides section { transition: transform 0.4s ease; } |