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);