In the theme I’m working on, I’ve set the base styles for identifier.type
to include italics:
identifier.type {
color: #8be9fd;
font-style: italic;
}
I’d like to set identifier.type.class
to display the same color, without the italic font-style:
identifier.type.class {
color: #8be9fd;
font-style: normal;
}
I’ve tried everything to get rid of the italics for this selector. Different placement in the CSS file, added !important, etc. Nothing seems to work. Changing other properties such as color work without a problem, but font-style is persistent.