Skip to content

Commit

Permalink
fix pause/help overlay position in scroll mode (closes #3542)
Browse files Browse the repository at this point in the history
  • Loading branch information
hakimel committed Dec 6, 2023
1 parent d5896c9 commit 993b8f3
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
9 changes: 7 additions & 2 deletions css/reveal.scss
Original file line number Diff line number Diff line change
Expand Up @@ -1445,7 +1445,8 @@ $overlayHeaderPadding: 5px;
width: 100%;
height: 100%;
z-index: 1000;
background: rgba( 0, 0, 0, 0.9 );
background: rgba( 0, 0, 0, 0.95 );
backdrop-filter: blur( 6px );

This comment has been minimized.

Copy link
@JonZeolla

JonZeolla Apr 15, 2024

If you find this is causing blur in your presentations, and you're using the chalkboard plugin, you may want to give that plugin an update. See rajgoel/reveal.js-plugins@6228778

transition: all 0.3s ease;
}

Expand Down Expand Up @@ -1589,7 +1590,6 @@ $overlayHeaderPadding: 5px;
padding-bottom: 20px;
}


/*********************************************
* PLAYBACK COMPONENT
*********************************************/
Expand Down Expand Up @@ -1901,6 +1901,11 @@ $notesWidthPercent: 25%;
display: none !important;
}

.overlay,
.pause-overlay {
position: fixed;
}

.reveal {
overflow: visible;
touch-action: manipulation;
Expand Down
Loading

0 comments on commit 993b8f3

Please sign in to comment.