1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-09-15 07:22:28 +02:00

Fix selection color in codemirror editor

Related feedback:
- https://github.com/uBlockOrigin/uBlock-issues/discussions/1963#discussioncomment-2113694
This commit is contained in:
Raymond Hill 2022-02-04 18:31:00 -05:00
parent 35490439b9
commit ed25ed6a6c
No known key found for this signature in database
GPG Key ID: 25E1490B761470C2
2 changed files with 15 additions and 12 deletions

View File

@ -15,9 +15,11 @@
.CodeMirror-cursor {
border-color: var(--cm-cursor);
}
.CodeMirror-selected {
background-color: var(--cm-selection-surface);
}
.CodeMirror-focused .CodeMirror-selected {
background: var(--cm-selection-surface);
color: var(--cm-selection-ink);
background-color: var(--cm-selection-focused-surface);
}
.CodeMirror-foldmarker {
color: var(--cm-foldmarker-ink);
@ -31,8 +33,7 @@
.CodeMirror-line::selection,
.CodeMirror-line > span::selection,
.CodeMirror-line > span > span::selection {
background: var(--cm-selection-surface);
color: var(--cm-selection-ink);
background-color: var(--cm-selection-surface);
}
.CodeMirror-linenumber {
color: var(--cm-gutter-ink);

View File

@ -242,7 +242,7 @@
--cloud-used-surface: rgb(var(--violet-60));
/* codemirror */
--cm-active-line: var(--surface-1);
--cm-active-line: rgb(var(--gray-90));
--cm-cursor: var(--ink-0);
--cm-foldmarker-ink: rgb(var(--blue-40));
--cm-gutter-border: var(--surface-1);
@ -254,10 +254,10 @@
--cm-merge-chunk-surface: rgb(var(--surface-0-rgb) / 40%);
--cm-negative: #e32f00; /* h:15 S:100 Luv:50 */
--cm-positive: #008a21; /* h:130 S:100 Luv:50 */
--cm-selection-surface: rgb(var(--primary-70) / 50%);
--cm-selection-ink: var(--ink-1);
--cm-searching-ink: inherit;
--cm-searching-surface: rgb(var(--yellow-20) / 80%);
--cm-selection-surface: rgb(var(--gray-90));
--cm-selection-focused-surface: rgb(var(--primary-90));
--cm-searching-ink: black;
--cm-searching-surface: #fee300cc /* h75 S:100 Luv:90 a:80% */;
--cm-search-match-surface: rgb(var(--yellow-40) / 50%);
/* syntax highlight: static filtering */
@ -322,14 +322,16 @@
--cloud-used-surface: rgb(var(--violet-20));
/* codemirror */
--cm-active-line: rgb(var(--gray-20));
--cm-merge-copy-ink: rgb(var(--blue-30));
--cm-foldmarker-ink: rgb(var(--blue-20));
--cm-matchingbracket: rgb(var(--green-30) / 50%);
--cm-negative: #ff8982; /* h:15 S:100 Luv:70 */
--cm-positive: #00c634; /* h:130 S:100 Luv:70 */
--cm-selection-surface: rgb(var(--primary-30) / 50%);
--cm-searching-ink: var(--surface-0);
--cm-searching-surface: rgb(var(--yellow-20));
--cm-selection-surface: rgb(var(--gray-20));
--cm-selection-focused-surface: rgb(var(--primary-20));
--cm-searching-ink: black;
--cm-searching-surface: #fee300cc /* h75 S:100 Luv:90 a:80% */;
/* syntax highlight: static filtering */
--sf-comment-ink: var(--ink-3);