summaryrefslogtreecommitdiffhomepage
path: root/css
diff options
context:
space:
mode:
Diffstat (limited to 'css')
-rw-r--r--css/reveal.css10
-rw-r--r--css/reveal.scss7
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;
}