소스 검색

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

Hakim El Hattab 5 년 전
부모
커밋
a4cb3307bb
1개의 변경된 파일2개의 추가작업 그리고 4개의 파일을 삭제
  1. 2 4
      css/reveal.scss

+ 2 - 4
css/reveal.scss

@@ -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;
 }