scrollbar-width: thin + scrollbar-color: var(--border) transparent on all scrollers (standard props; Chromium >= 121 and Firefox honor them)
::-webkit-scrollbar/-thumb/-track/-corner rules as fallback for finer Chromium styling; thumb uses var(--border), hover var(--muted-fg)
All colors from CSS variables so scrollbars track the active preset; CSS only in app.css, no inline styles, no CSP risk
Verified on a local build with CDP probes: computed scrollbar-color differs per preset (dark rgb(66,53,92), light pastel-lavender rgb(196,182,224)) on documentElement and the paste-view .codebody horizontal scroller (wrap OFF, scrollableX true), at 1400x900 and 375x812. go build + go test pass.
Ref #273
- `scrollbar-width: thin` + `scrollbar-color: var(--border) transparent` on all scrollers (standard props; Chromium >= 121 and Firefox honor them)
- `::-webkit-scrollbar`/`-thumb`/`-track`/`-corner` rules as fallback for finer Chromium styling; thumb uses var(--border), hover var(--muted-fg)
- All colors from CSS variables so scrollbars track the active preset; CSS only in app.css, no inline styles, no CSP risk
Verified on a local build with CDP probes: computed scrollbar-color differs per preset (dark rgb(66,53,92), light pastel-lavender rgb(196,182,224)) on documentElement and the paste-view .codebody horizontal scroller (wrap OFF, scrollableX true), at 1400x900 and 375x812. go build + go test pass.
Blocking a user prevents them from interacting with repositories, such as opening or commenting on pull requests or issues. Learn more about blocking a user.
Ref #273
scrollbar-width: thin+scrollbar-color: var(--border) transparenton all scrollers (standard props; Chromium >= 121 and Firefox honor them)::-webkit-scrollbar/-thumb/-track/-cornerrules as fallback for finer Chromium styling; thumb uses var(--border), hover var(--muted-fg)Verified on a local build with CDP probes: computed scrollbar-color differs per preset (dark rgb(66,53,92), light pastel-lavender rgb(196,182,224)) on documentElement and the paste-view .codebody horizontal scroller (wrap OFF, scrollableX true), at 1400x900 and 375x812. go build + go test pass.