mirror of
https://github.com/aaif-goose/goose.git
synced 2026-07-03 14:10:03 +02:00
Lighten text selection blue color for better visibility
- Changed selection background from #3b82f6 (blue-500) to #60a5fa (blue-400) - Provides lighter, more subtle selection highlighting - Maintains clear selection feedback while being easier on the eyes
This commit is contained in:
@@ -1027,12 +1027,12 @@ export const RichChatInput = forwardRef<RichChatInputRef, RichChatInputProps>(({
|
||||
}
|
||||
|
||||
.rich-text-input textarea::selection {
|
||||
background-color: #3b82f6 !important; /* Blue selection */
|
||||
background-color: #60a5fa !important; /* Lighter blue selection */
|
||||
color: transparent !important; /* Keep text transparent even when selected */
|
||||
}
|
||||
|
||||
.rich-text-input textarea::-moz-selection {
|
||||
background-color: #3b82f6 !important; /* Blue selection */
|
||||
background-color: #60a5fa !important; /* Lighter blue selection */
|
||||
color: transparent !important; /* Keep text transparent even when selected */
|
||||
}
|
||||
`
|
||||
|
||||
Reference in New Issue
Block a user