1
0
mirror of https://github.com/hakimel/reveal.js.git synced 2025-07-31 20:00:28 +02:00

fix pause overlay

This commit is contained in:
tobi-or-not-tobi
2025-03-21 07:09:21 +01:00
parent 47ee25dd19
commit 1e0a2a7d4a
2 changed files with 2 additions and 2 deletions

View File

@@ -1073,7 +1073,7 @@ $controlsArrowAngleActive: 36deg;
background: black; background: black;
visibility: hidden; visibility: hidden;
opacity: 0; opacity: 0;
z-index: 100; z-index: 10001;
transition: all 1s ease; transition: all 1s ease;
} }

View File

@@ -190,7 +190,7 @@ export default class Keyboard {
} }
} }
if( this.Reveal.isOverlayOpen() && !['Escape', 'f', 'c'].includes(event.key) ) { if( this.Reveal.isOverlayOpen() && !["Escape", "f", "c", "b", "."].includes(event.key) ) {
return false; return false;
} }