0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2026-01-13 06:32:39 +00:00

Merge pull request #2811 from 5e-Cleric/text-color-change

correct highlight of .cm-comment elements in editor
This commit is contained in:
Trevor Buckner
2023-05-03 12:48:28 -04:00
committed by GitHub

View File

@@ -19,17 +19,17 @@
background-color : fade(#299, 15%); background-color : fade(#299, 15%);
border-bottom : #299 solid 1px; border-bottom : #299 solid 1px;
} }
.block{ .block:not(.cm-comment){
color : purple; color : purple;
font-weight : bold; font-weight : bold;
//font-style: italic; //font-style: italic;
} }
.inline-block{ .inline-block:not(.cm-comment){
color : red; color : red;
font-weight : bold; font-weight : bold;
//font-style: italic; //font-style: italic;
} }
.injection{ .injection:not(.cm-comment){
color : green; color : green;
font-weight : bold; font-weight : bold;
} }