diff --git a/frontend/src/App.vue b/frontend/src/App.vue index 0b4c972..4351ffb 100644 --- a/frontend/src/App.vue +++ b/frontend/src/App.vue @@ -70,7 +70,7 @@
@@ -165,7 +165,7 @@
diff --git a/frontend/src/components/Header.vue b/frontend/src/components/Header.vue index c4b6def..1dd3939 100644 --- a/frontend/src/components/Header.vue +++ b/frontend/src/components/Header.vue @@ -109,7 +109,7 @@
-
+

Media Roots

Folders scanned and indexed by MediaHive.

diff --git a/frontend/src/components/MediaDetail.vue b/frontend/src/components/MediaDetail.vue index 1bcaba5..fa58a8a 100644 --- a/frontend/src/components/MediaDetail.vue +++ b/frontend/src/components/MediaDetail.vue @@ -1479,20 +1479,14 @@ html:not(.mouse-active) .cast-card.nav-focused::after { overflow-x: auto; padding-bottom: 8px; scroll-behavior: smooth; + scrollbar-width: none; + -ms-overflow-style: none; } .showreel-images::-webkit-scrollbar { - height: 6px; -} - -.showreel-images::-webkit-scrollbar-track { - background: rgba(255, 255, 255, 0.05); - border-radius: 3px; -} - -.showreel-images::-webkit-scrollbar-thumb { - background: rgba(255, 255, 255, 0.2); - border-radius: 3px; + width: 0; + height: 0; + display: none; } .showreel-image { diff --git a/frontend/src/styles/main.css b/frontend/src/styles/main.css index 5e414af..ff9f008 100644 --- a/frontend/src/styles/main.css +++ b/frontend/src/styles/main.css @@ -61,6 +61,17 @@ html:not(.pointer-visible) * { overflow: hidden; } +.scrollbar-hidden { + scrollbar-width: none; + -ms-overflow-style: none; +} + +.scrollbar-hidden::-webkit-scrollbar { + width: 0; + height: 0; + display: none; +} + /* Scrollbar styling */ ::-webkit-scrollbar { width: 8px; @@ -525,6 +536,14 @@ html.mouse-active .media-card:hover .media-card-info { justify-content: center; padding: 40px 20px; overflow-y: auto; + scrollbar-width: none; + -ms-overflow-style: none; +} + +.modal-overlay::-webkit-scrollbar { + width: 0; + height: 0; + display: none; } .modal-content {