Skip to content

Commit

Permalink
Fix scrollbar on slides for Jupyterlab>4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
brichet committed Jan 14, 2025
1 parent 4578a75 commit 0f71508
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion js/jupyterlab-slideshow/style/notebook.css
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,10 @@ body[data-notebook='notebooks']
background: transparent !important;
}

.jp-Deck .jp-Notebook.jp-mod-scrollPastEnd::after {
/* Both are required for compatibility with Jupyterlab before and after 4.1.0, after
https://github.com/jupyterlab/jupyterlab/commit/6a86d8f163fe11cf7b1964b1ed54999ee2234c8c#diff-ccf3f53605be6603fd5fd949742f25ea8919c48dcc75322c483ebf9988404 */
.jp-Deck .jp-Notebook.jp-mod-scrollPastEnd::after,
.jp-Deck .jp-Notebook.jp-mod-scrollPastEnd > .jp-WindowedPanel-outer::after {
display: none;
}

Expand Down

0 comments on commit 0f71508

Please sign in to comment.