✨ New Features & 🐛 Bug Fix
New Features
Hide When Empty
The card can now completely hide itself when all entities are filtered out by visible_if. No more empty cards taking up space on your dashboard.
type: custom:strip-card
title: ""
hide_when_empty: true
entities:
- entity: sun.sun
name: Sun
visible_if: "{{ float(states('sensor.temperature')) > 23 }}"
When at least one entity becomes visible again, the card reappears automatically. Available in the editor under Toggles.
Click to Pause/Resume
You can now click the card to pause and resume scrolling. Click once to stop, click again to start.
pause_on_click: trueClicking on an entity still triggers its tap action as usual — the pause toggle only activates when you click the space between items or on the separator. Works alongside pause_on_hover. Available in the editor under Toggles.
Bug Fixes
Separator Spacing
Fixed uneven spacing around the separator character. Previously, the gap after the separator was roughly twice the size of the gap before it. The separator is now rendered as an independent element with equal spacing on both sides.