v1.8.8
Breaking changes
For card_mod
users 🤖
You can no longer style chip background
and box-shadow
with card_mod
. You must use theme variables : --chip-background
and --chip-box-shadow
.
Old style
card_mod:
style: |
ha-card {
box-shadow: none;
background: none;
}
New style
card_mod:
style: |
ha-card {
--chip-box-shadow: none;
--chip-background: none;
}
What's Changed
New Features 🎉
- feat(theme): add card text line height variable by @piitaya in #496
- feat(chip): improve stack in card support by @piitaya in #502
Fixes 🐛
- fix: hacs version by @acesyde in #498
- fix(button): ignore button ratio if fill mode for button group by @piitaya in #503
- fix(chip): restore ha-card element on chip for better styling by @piitaya in #512
Translations 🌍
- add Hebrew translation by @AwesomeSapir in #509
- added 'Show Volume Level' and 'Collapse Controls translations' by @ldvc86 in #501
New Contributors
- @AwesomeSapir made their first contribution in #509
Full Changelog: v1.8.5...v1.8.8