feature add top horizontal scroll bar done VERSION v1.0 release

This commit is contained in:
2026-06-28 17:12:25 -03:00
parent 5fcf1ffeb1
commit 5712d055d3
5 changed files with 54 additions and 8 deletions

View File

@@ -32,3 +32,19 @@
max-height: calc(100vh - var(--sv-shrink-offset, 240px)) !important;
min-height: 0 !important;
}
/*
* Optional top horizontal scrollbar (added by Asset/js/top-scrollbar.js when the
* "Add a top horizontal scrollbar" setting is enabled). The inner element is given a
* width equal to the board's scrollable width by the script; overflow-x: auto then
* produces a scrollbar whose range mirrors the board's own bottom scrollbar. The 1px
* inner height keeps the bar to just the scrollbar itself.
*/
.sv-top-scroll {
overflow-x: auto;
overflow-y: hidden;
}
.sv-top-scroll-inner {
height: 1px;
}