1
0
mirror of https://github.com/gorhill/uBlock.git synced 2024-10-06 09:37:12 +02:00

Better folding arrows in CodeMirror editor

This commit is contained in:
Raymond Hill 2023-04-03 10:20:53 -04:00
parent 6e8aeae283
commit 4aea9aa624
No known key found for this signature in database
GPG Key ID: 25E1490B761470C2

View File

@ -26,6 +26,12 @@
font-size: large;
text-shadow: none;
}
.CodeMirror-foldgutter-folded::after {
content: '\25B6';
}
.CodeMirror-foldgutter-open::after {
content: '\25BC';
}
.CodeMirror-gutters {
background-color: var(--cm-gutter-surface);
border-color: var(--cm-gutter-border);