From a02d2abe49b59e5deeef7ab5bc0bc809e497e13f Mon Sep 17 00:00:00 2001 From: AJ Date: Wed, 1 Jul 2026 23:55:18 -0400 Subject: [PATCH] fix: readable text selection in inputs (selection-color on orange highlight) Editing a table cell select-alls its text; without an explicit selection-color the highlighted text rendered near-invisible against the accent-orange selection background. Applies to all line edits, text areas, and combo boxes. --- bcc.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bcc.py b/bcc.py index 1f9218a..ab4d1c5 100644 --- a/bcc.py +++ b/bcc.py @@ -67,7 +67,7 @@ QLabel#muted {{ color: {MUTED}; }} QFrame#card {{ background: {PANEL}; border: 1px solid {BORDER}; border-radius: 10px; }} QLineEdit, QPlainTextEdit, QComboBox {{ background: {PANEL_2}; border: 1px solid {BORDER}; border-radius: 7px; - padding: 6px 8px; selection-background-color: {ACCENT}; + padding: 6px 8px; selection-background-color: {ACCENT}; selection-color: #1a1205; }} QLineEdit:focus, QPlainTextEdit:focus, QComboBox:focus {{ border: 1px solid {ACCENT}; }} QComboBox::drop-down {{ border: none; width: 22px; }}