Skip to content

Commit

Permalink
feat: Support --st-mode-active-background for operation. Fix #345
Browse files Browse the repository at this point in the history
  • Loading branch information
nervetattoo committed Jul 23, 2022
1 parent 5ef3274 commit eb0c0d5
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -209,25 +209,25 @@ header {
}

&.active.off {
background: var(--off-color);
background: var(--st-mode-active-background, var(--off-color));
}
&.active.heat {
background: var(--heat-color);
background: var(--st-mode-active-background, var(--heat-color));
}
&.active.cool {
background: var(--cool-color);
background: var(--st-mode-active-background, var(--cool-color));
}
&.active.heat_cool {
background: var(--heat_cool-color);
background: var(--st-mode-active-background, var(--heat_cool-color));
}
&.active.auto {
background: var(--auto-color);
background: var(--st-mode-active-background, var(--auto-color));
}
&.active.dry {
background: var(--dry-color);
background: var(--st-mode-active-background, var(--dry-color));
}
&.active.fan_only {
background: var(--fan_only-color);
background: var(--st-mode-active-background, var(--fan_only-color));
}
}
.mode-icon {
Expand Down

0 comments on commit eb0c0d5

Please sign in to comment.