From 5039a76bec012f55ed4b27071000e196f516635c Mon Sep 17 00:00:00 2001 From: fen Date: Thu, 10 Sep 2026 12:56:44 -0500 Subject: [PATCH] Fix #209: move sort arrows to the right of the column label --- internal/web/static/app.css | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/internal/web/static/app.css b/internal/web/static/app.css index cf4a9c5..43c43ce 100644 --- a/internal/web/static/app.css +++ b/internal/web/static/app.css @@ -528,11 +528,11 @@ td .id-link:hover { color: var(--accent); } th.sortable { cursor: pointer; user-select: none; } th.sortable:hover { color: var(--fg); } th.sortable { cursor: pointer; user-select: none; white-space: nowrap; } -/* #101: arrow sits LEFT of the label, further spaced, vertically centered, - and absolutely positioned so it never shifts the label text. */ -th.sortable { position: relative; padding-left: 24px; } +/* #209: arrow sits RIGHT of the label, vertically centered, and absolutely + positioned so it never shifts the label text; label aligns with column contents. */ +th.sortable { position: relative; padding-right: 24px; } th.sortable .sort-ind { - position: absolute; left: 8px; top: 50%; transform: translateY(-50%); + position: absolute; right: 8px; top: 50%; transform: translateY(-50%); display: inline-block; width: 0; height: 0; border-left: 5px solid transparent; border-right: 5px solid transparent; } -- 2.54.0