Overriding italics in theme

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.

It looks like this is a bug in Nova’s CSS theme parsing. We aren’t correctly respecting normal or none as a value for font-style. I will note this and try and get a fix in place soon!

Great! Thanks, Logan!