Hi all,
The new thermostat card was working really nice for my all the way until 2024.8.0 but my buttons changed after updating to 2024.8.1.
This was before the update:
Using this style:
card_mod:
style:
hui-card-features $ hui-climate-hvac-modes-card-feature $ ha-control-select $: |
:host {
--control-select-thickness: 100px !important;
--mdc-icon-size: 30px !important;
}
Now after the update it look as default:
Seems the button configuration has changed ?
Any idea what to change to my style to get back to the “old” buttons I had?
EDIT:
Found a setting --feature-height
and changed the style to:
card_mod:
style:
hui-card-features$: |
:host {
--feature-height: 100px !important;
}
hui-card-features $ hui-climate-hvac-modes-card-feature $ ha-control-select $: |
:host {
--mdc-icon-size: 30px !important;
}
… which restored the height of the buttons
But still can’t change the size of the icons. The --mdc-icon-size
is still present under :host
but doesn’t update.