fix(control-ui): improve text selection contrast

Use dedicated high-contrast selection tokens for Control UI/WebChat text selection and add the user-facing changelog entry.\n\nFixes #60850.\nSupersedes #60854.
This commit is contained in:
Val Alexander
2026-05-02 07:56:08 -05:00
committed by GitHub
parent f523620abe
commit d919281fa8
2 changed files with 5 additions and 2 deletions

View File

@@ -42,6 +42,8 @@
--accent-subtle: rgba(255, 92, 92, 0.1);
--accent-foreground: #fafafa;
--accent-glow: rgba(255, 92, 92, 0.2);
--selection-bg: #005fcc;
--selection-fg: #ffffff;
--primary: #ff5c5c;
--primary-foreground: #ffffff;
@@ -589,8 +591,8 @@ select {
}
::selection {
background: var(--accent-subtle);
color: var(--text-strong);
background: var(--selection-bg);
color: var(--selection-fg);
}
/* Scrollbar styling - Minimal, barely visible */