forked from AuroraMiddleware/gtk
node editor: Avoid inheriting textview styles
...to its descendant selectors Without ">", "text" style is propagated to entry in the emoji chooser. https://gitlab.gnome.org/GNOME/gtk/issues/2061
This commit is contained in:
parent
b9d8eb54b7
commit
3eec90cdc0
@ -26,9 +26,9 @@
|
||||
static const char *css =
|
||||
"textview.editor {"
|
||||
" color: rgb(192, 197, 206);"
|
||||
" caret-color: white;"
|
||||
" caret-color: currentColor;"
|
||||
"}"
|
||||
"textview.editor text {"
|
||||
"textview.editor > text {"
|
||||
" background-color: rgb(43, 48, 59);"
|
||||
"}"
|
||||
;
|
||||
|
Loading…
Reference in New Issue
Block a user