fix(asset-picker): theme inner rail border-top in expanded banner

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 <noreply@anthropic.com>
This commit is contained in:
scheinriese
2026-05-21 16:19:09 +02:00
parent e7c2c51453
commit 9339bce864

View File

@@ -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)));
}