thesamim / TickTickSync

GNU General Public License v3.0
98 stars 2 forks source link

Templater Comments Hidden Due to CSS #89

Closed LemurTech closed 2 months ago

LemurTech commented 3 months ago

Hi @thesamim. Here's another quick css fix.

This current line of css will hide comments in Templater code/command blocks:

.cm-line:not(:hover):not(.cm-active) span.cm-comment:not(.cm-hmd-codeblock) {
    display: none;
}

This is what you need:

.cm-line:not(:hover):not(.cm-active) span.cm-comment:not(.cm-hmd-codeblock):not(.cm-templater-command) {
    display: none;
}
thesamim commented 3 months ago

Noted: will include in next release.