HTML-Renderer icon indicating copy to clipboard operation
HTML-Renderer copied to clipboard

css class names with periods don't work

Open tig opened this issue 6 years ago • 0 comments

Consider

<span class="token property">property</span>

This CSS should work, but doesn't:

     .token.property {
    	color: #c92c2c;
    }

But this does

     .property {
    	color: #c92c2c;
    }

tig avatar Jan 04 '20 16:01 tig