Clooos / Bubble-Card

Bubble Card is a minimalist card collection for Home Assistant with a nice pop-up touch.
MIT License
1.72k stars 47 forks source link

Popup button active color #263

Closed arkpoah closed 8 months ago

arkpoah commented 8 months ago

In the example video, we can see popup button changes color when entities are enabled in popup. I don't achieve to do this. How can we get the popup button enabled when an entity is on in popup vertical stack ? thanks

Clooos commented 8 months ago

Hi! You need to add an entity to that pop-up, ideally a light group with all your lights from that pop-up in it.

In YAML it looks like this:

type: vertical-stack
cards:
  - type: custom:bubble-card
    card_type: pop-up
    hash: '#kitchen'
    name: Kitchen
    icon: mdi:fridge
    entity: light.kitchen #This is what you need to add
arkpoah commented 8 months ago

nice thanks, it works with a group entity with one or all entity enabled !