From cb2cf485b4adfc7355b44dd4439cb6ec7e956e2d Mon Sep 17 00:00:00 2001 From: Kenneth Reitz Date: Sun, 23 Nov 2025 13:26:06 -0500 Subject: [PATCH] Move sidebar scrollbar to left side MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Added direction: rtl to sidebar to position scrollbar on left. Child elements reset to direction: ltr to maintain normal text flow. This creates a more intuitive layout with the scrollbar between the sidebar and main content rather than at the edge. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- kjvstudy_org/templates/base.html | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/kjvstudy_org/templates/base.html b/kjvstudy_org/templates/base.html index 3a99391..a5042a3 100644 --- a/kjvstudy_org/templates/base.html +++ b/kjvstudy_org/templates/base.html @@ -192,6 +192,11 @@ z-index: 100; border-right: 1px solid var(--border-color); box-shadow: 2px 0 8px rgba(0, 0, 0, 0.03); + direction: rtl; + } + + .nav-sidebar > * { + direction: ltr; } .nav-sidebar::-webkit-scrollbar {