I am working on distribution which calls for a neato sub-theme which will be in version control and a secondary site specific sub-sub-theme which would not be in version control.

I am finding that normalize.css is overriding important typography styles in the sub-sub-theme and I am guessing that normalize is being imported twice.

Any suggestions what I can do to stop normalize being used in the sub-sub-theme?

Possibly connected Move normalize.css into STARTER theme as an import

Comments

MrPaulDriver created an issue. See original summary.

MrPaulDriver’s picture

Issue summary: View changes
MrPaulDriver’s picture

Title: Normalize seems to overriding my sass » Normalize seems to overriding my sub-sub-theme sass
MrPaulDriver’s picture

Issue summary: View changes
kevinquillen’s picture

In newer versions, normalize was moved from the base .info file and into the themename.scss file. Example:

http://cgit.drupalcode.org/neato/tree/STARTER/scss/STARTER.scss

In which case, here, you would remove it from the import and regenerate the CSS.

MrPaulDriver’s picture

Status: Active » Closed (fixed)

Thanks for that Kevin.

kevinquillen’s picture