mirror of https://github.com/gorhill/uBlock.git
Fix selection color in codemirror editor
Related feedback: - https://github.com/uBlockOrigin/uBlock-issues/discussions/1963#discussioncomment-2113694
This commit is contained in:
parent
35490439b9
commit
ed25ed6a6c
|
@ -15,9 +15,11 @@
|
||||||
.CodeMirror-cursor {
|
.CodeMirror-cursor {
|
||||||
border-color: var(--cm-cursor);
|
border-color: var(--cm-cursor);
|
||||||
}
|
}
|
||||||
|
.CodeMirror-selected {
|
||||||
|
background-color: var(--cm-selection-surface);
|
||||||
|
}
|
||||||
.CodeMirror-focused .CodeMirror-selected {
|
.CodeMirror-focused .CodeMirror-selected {
|
||||||
background: var(--cm-selection-surface);
|
background-color: var(--cm-selection-focused-surface);
|
||||||
color: var(--cm-selection-ink);
|
|
||||||
}
|
}
|
||||||
.CodeMirror-foldmarker {
|
.CodeMirror-foldmarker {
|
||||||
color: var(--cm-foldmarker-ink);
|
color: var(--cm-foldmarker-ink);
|
||||||
|
@ -31,8 +33,7 @@
|
||||||
.CodeMirror-line::selection,
|
.CodeMirror-line::selection,
|
||||||
.CodeMirror-line > span::selection,
|
.CodeMirror-line > span::selection,
|
||||||
.CodeMirror-line > span > span::selection {
|
.CodeMirror-line > span > span::selection {
|
||||||
background: var(--cm-selection-surface);
|
background-color: var(--cm-selection-surface);
|
||||||
color: var(--cm-selection-ink);
|
|
||||||
}
|
}
|
||||||
.CodeMirror-linenumber {
|
.CodeMirror-linenumber {
|
||||||
color: var(--cm-gutter-ink);
|
color: var(--cm-gutter-ink);
|
||||||
|
|
|
@ -242,7 +242,7 @@
|
||||||
--cloud-used-surface: rgb(var(--violet-60));
|
--cloud-used-surface: rgb(var(--violet-60));
|
||||||
|
|
||||||
/* codemirror */
|
/* codemirror */
|
||||||
--cm-active-line: var(--surface-1);
|
--cm-active-line: rgb(var(--gray-90));
|
||||||
--cm-cursor: var(--ink-0);
|
--cm-cursor: var(--ink-0);
|
||||||
--cm-foldmarker-ink: rgb(var(--blue-40));
|
--cm-foldmarker-ink: rgb(var(--blue-40));
|
||||||
--cm-gutter-border: var(--surface-1);
|
--cm-gutter-border: var(--surface-1);
|
||||||
|
@ -254,10 +254,10 @@
|
||||||
--cm-merge-chunk-surface: rgb(var(--surface-0-rgb) / 40%);
|
--cm-merge-chunk-surface: rgb(var(--surface-0-rgb) / 40%);
|
||||||
--cm-negative: #e32f00; /* h:15 S:100 Luv:50 */
|
--cm-negative: #e32f00; /* h:15 S:100 Luv:50 */
|
||||||
--cm-positive: #008a21; /* h:130 S:100 Luv:50 */
|
--cm-positive: #008a21; /* h:130 S:100 Luv:50 */
|
||||||
--cm-selection-surface: rgb(var(--primary-70) / 50%);
|
--cm-selection-surface: rgb(var(--gray-90));
|
||||||
--cm-selection-ink: var(--ink-1);
|
--cm-selection-focused-surface: rgb(var(--primary-90));
|
||||||
--cm-searching-ink: inherit;
|
--cm-searching-ink: black;
|
||||||
--cm-searching-surface: rgb(var(--yellow-20) / 80%);
|
--cm-searching-surface: #fee300cc /* h75 S:100 Luv:90 a:80% */;
|
||||||
--cm-search-match-surface: rgb(var(--yellow-40) / 50%);
|
--cm-search-match-surface: rgb(var(--yellow-40) / 50%);
|
||||||
|
|
||||||
/* syntax highlight: static filtering */
|
/* syntax highlight: static filtering */
|
||||||
|
@ -322,14 +322,16 @@
|
||||||
--cloud-used-surface: rgb(var(--violet-20));
|
--cloud-used-surface: rgb(var(--violet-20));
|
||||||
|
|
||||||
/* codemirror */
|
/* codemirror */
|
||||||
|
--cm-active-line: rgb(var(--gray-20));
|
||||||
--cm-merge-copy-ink: rgb(var(--blue-30));
|
--cm-merge-copy-ink: rgb(var(--blue-30));
|
||||||
--cm-foldmarker-ink: rgb(var(--blue-20));
|
--cm-foldmarker-ink: rgb(var(--blue-20));
|
||||||
--cm-matchingbracket: rgb(var(--green-30) / 50%);
|
--cm-matchingbracket: rgb(var(--green-30) / 50%);
|
||||||
--cm-negative: #ff8982; /* h:15 S:100 Luv:70 */
|
--cm-negative: #ff8982; /* h:15 S:100 Luv:70 */
|
||||||
--cm-positive: #00c634; /* h:130 S:100 Luv:70 */
|
--cm-positive: #00c634; /* h:130 S:100 Luv:70 */
|
||||||
--cm-selection-surface: rgb(var(--primary-30) / 50%);
|
--cm-selection-surface: rgb(var(--gray-20));
|
||||||
--cm-searching-ink: var(--surface-0);
|
--cm-selection-focused-surface: rgb(var(--primary-20));
|
||||||
--cm-searching-surface: rgb(var(--yellow-20));
|
--cm-searching-ink: black;
|
||||||
|
--cm-searching-surface: #fee300cc /* h75 S:100 Luv:90 a:80% */;
|
||||||
|
|
||||||
/* syntax highlight: static filtering */
|
/* syntax highlight: static filtering */
|
||||||
--sf-comment-ink: var(--ink-3);
|
--sf-comment-ink: var(--ink-3);
|
||||||
|
|
Loading…
Reference in New Issue