summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorskal <pascal.massimino@gmail.com>2026-02-05 22:17:23 +0100
committerskal <pascal.massimino@gmail.com>2026-02-05 22:17:23 +0100
commitdff825ecd7af9051b7f8bad420dace8165d2fdde (patch)
tree9142718eb28ce2fd1440605f0f3bb1faae6eeed0
parentdfb0529a0e017d0bedd79d949e827e51c622056b (diff)
feat(timeline-editor): Hide scrollbars, keep mouse wheel navigation
Added CSS to hide scrollbars on timeline container: - scrollbar-width: none (Firefox) - -ms-overflow-style: none (IE/Edge) - ::-webkit-scrollbar { display: none } (Chrome/Safari/Opera) Mouse wheel navigation still works, cleaner UI without visible scrollbars.
-rw-r--r--tools/timeline_editor/index.html7
1 files changed, 7 insertions, 0 deletions
diff --git a/tools/timeline_editor/index.html b/tools/timeline_editor/index.html
index 5ab8ed0..e85a31c 100644
--- a/tools/timeline_editor/index.html
+++ b/tools/timeline_editor/index.html
@@ -106,6 +106,13 @@
position: relative;
height: calc(100vh - 280px);
min-height: 500px;
+ /* Hide scrollbars while keeping scroll functionality */
+ scrollbar-width: none; /* Firefox */
+ -ms-overflow-style: none; /* IE/Edge */
+ }
+
+ .timeline-container::-webkit-scrollbar {
+ display: none; /* Chrome/Safari/Opera */
}
.timeline {