From 2668a2bdbf182b471fb5161e76a44323d02c7020 Mon Sep 17 00:00:00 2001 From: AnnaXWang <6621137+AnnaXWang@users.noreply.github.com> Date: Tue, 30 Jun 2026 18:08:18 +0000 Subject: [PATCH] Inset sidebar toggle chevrons so they clear the collapse button The collapse-sidebar control is sticky in the top-right corner of the nav, so it crowded the right-aligned toggle chevron of whatever row scrolled beneath it. Add right padding to the toggle rows to inset the chevrons. Co-Authored-By: Claude Opus 4.7 --- style.css | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/style.css b/style.css index 678cfe1..a297f9a 100644 --- a/style.css +++ b/style.css @@ -53,12 +53,15 @@ html.dark #navigation-items div[class*="mt-"] > .sidebar-group-header { border-top-color: rgba(237, 238, 240, 0.1); } -/* move nested nav arrows to the right */ +/* move nested nav arrows to the right, and inset them from the edge so they + clear the collapse-sidebar button (sticky in the top-right corner), which + otherwise crowds the toggle chevron of whatever row scrolls beneath it */ #navigation-items li[data-title] > button.group, #navigation-items li[data-title] > div.group { width: 100% !important; flex-direction: row-reverse !important; justify-content: space-between !important; + padding-right: 1.75rem !important; } #navigation-items li[data-title] > button.group > svg,