From 9339bce8645d0f84d20ff0f7aacdd10dbf543723 Mon Sep 17 00:00:00 2001 From: scheinriese Date: Thu, 21 May 2026 16:19:09 +0200 Subject: [PATCH] fix(asset-picker): theme inner rail border-top in expanded banner MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The `.cb-rail` (the line between the Shape/Fallback rows and the Reset/Done row when the customize banner is expanded) used a 2-step fallback `var(--lx-gray-05, var(--rx-gray-05))` — neutral gray in OG. Add `--ls-border-color` middle step so the rail matches the topbar separator and the customize-zone bottom border (all #0e5263 in OG). Co-Authored-By: Claude Opus 4.7 --- src/main/frontend/components/icon.css | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/main/frontend/components/icon.css b/src/main/frontend/components/icon.css index e8f452f631..4570458c98 100644 --- a/src/main/frontend/components/icon.css +++ b/src/main/frontend/components/icon.css @@ -2785,7 +2785,9 @@ html.dark .avatar-customize-zone { minus 2 × 18px wrapper padding) instead of bleeding to the band edges, matching the Paper design. */ padding: 10px 0 12px; - border-top: 1px solid var(--lx-gray-05, var(--rx-gray-05)); + /* Themed via --ls-border-color middle step (matches the topbar + separator and the customize-zone bottom border). */ + border-top: 1px solid var(--lx-gray-05, var(--ls-border-color, var(--rx-gray-05))); }