fix: Use light blue to display light theme conversation text selections (#1071)

This commit is contained in:
Ariza
2026-04-30 12:24:30 +03:00
committed by GitHub
parent 90c8c948f8
commit 897c435d14
+6
View File
@@ -62,6 +62,12 @@ textarea[data-chat-input="true"]:focus-visible {
cursor: not-allowed;
}
:root.light .message-content-text::selection,
:root.light .message-content-text ::selection {
background: color-mix(in srgb, var(--interactive-border-focus) 18%, transparent);
color: var(--surface-foreground);
}
.oc-cm-selected-line {
background: color-mix(in srgb, var(--primary-base) 22%, transparent);
}