knoxville-utilities-board / nrg-ui

https://knoxville-utilities-board.github.io/nrg-ui/
MIT License
5 stars 1 forks source link

CSS minification breaks theming #75

Open KeithClinard opened 2 months ago

KeithClinard commented 2 months ago

Given CSS in the form of:

[data-theme="themename"] {
  --variable: value;
  .btn{
    --btn-variable: value;
  }
}

CSS minification produces the following structure:

[data-theme="themename"] {
  --variable: value;
}
.btn{
  --btn-variable: value;
}

This effectively breaks theming by "unwrapping" nested styles from the main data-theme attribute.

KeithClinard commented 2 months ago

A temporary fix has been put in place by removing CSS minification. PR #74