From dff825ecd7af9051b7f8bad420dace8165d2fdde Mon Sep 17 00:00:00 2001 From: skal Date: Thu, 5 Feb 2026 22:17:23 +0100 Subject: 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. --- tools/timeline_editor/index.html | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'tools/timeline_editor') 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 { -- cgit v1.2.3