diff --git a/CHANGELOG.md b/CHANGELOG.md index 4ed07af..bf029bd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # CHANGELOG +## v4.0.2 – 2026-07-07 + +- Add fullscreen mode (hides navbar and expands viewer to full viewport) and a new share-link option to hide the toolbar, ideal for student-facing links. + +--- + ## v4.0.1 – 2026-06-09 - Fix Dropbox, Nextcloud and ownCloud shared-link downloads by routing them through `github-proxy.exelearning.dev`. diff --git a/css/styles.css b/css/styles.css index 9415b75..816a7bc 100644 --- a/css/styles.css +++ b/css/styles.css @@ -305,6 +305,12 @@ body { background-color: var(--surface-color); } +/* Fullscreen mode: hide navbar, expand viewer to full viewport */ +body.fullscreen-mode .viewer-container { + height: 100vh; + margin-top: 0; +} + .content-frame { width: 100%; height: 100%; diff --git a/index.html b/index.html index aa1c3a5..fa0d685 100644 --- a/index.html +++ b/index.html @@ -236,6 +236,15 @@