1
0
mirror of https://github.com/hakimel/reveal.js.git synced 2025-08-11 09:04:51 +02:00

fix bug where interactive iframe backgrounds were blocked by future vertical stacks

This commit is contained in:
Hakim El Hattab
2020-05-04 09:48:12 +02:00
parent 619b3a087c
commit a4cb3307bb

View File

@@ -703,10 +703,8 @@ $controlsArrowAngleActive: 36deg;
}
/* Don't allow interaction with invisible slides */
.reveal .slides>section.future,
.reveal .slides>section>section.future,
.reveal .slides>section.past,
.reveal .slides>section>section.past {
.reveal .slides>section:not(.present),
.reveal .slides>section>section:not(.present) {
pointer-events: none;
}