Lovelace: custom:popup-card

Hello,

I am using the custom:popup-card (@thomasloven) it works like a charm.
But I have aquestion about it.
When I add entities to the card section it will show up in the card.
The problem is when I click (or touch) that entity it doesn’t display anything.
Is this normal ?
When I add the entity out of the custom:popup-card it shows me the historical data.

My questions is it possible to get this historical data when I use the custom:popup-card ?
Or is it possible to make the entity not clickable ? (so that I only can see the data of the sensors?)

Kind regards,

Bart Engelen

That is, unfortunately, the expected behavior.

The popup-card piggybacks on the more-info dialog, and it is not currently possible to open more than one more-info dialog at a time.

There’s also currently no way of modifying the tap action of an entities card (which I assume you are using).

Hello Thomas!
I use popup cards on my dashboard lovelace config but it looks like I have reached the limits when I want to use the horizontal stack card. I’d like to use it for a popup system infomation with 3-4 graph-card instead of a different view but I get the no card type configured message. The situation is same with other “multi handler” cards, for example the layout card.
Is it possible to display more than one card somehow?

Please provide a minimal working example.

It is working:

popup_cards:
  alarm_control_panel.en_kicsi_riasztom:
    card:
      entity: alarm_control_panel.en_kicsi_riasztom
      states:
        - arm_home
        - arm_away
      type: alarm-panel
    style:
      background-color: 'rgba(0,0,0,0.3)'
      background-image: url("/local/pictures/cardback.png")
      background-repeat: no-repeat
      background-size: 100% 100%
      border: 'solid 1px rgba(57,128,228)'
      border-radius: 15px
    title: Riasztó
    type: 'custom:card-modder'

and this for example:

  sensor.time:
    card:
      color: white
      entities:
        - sensor.alarm_time
        - input_boolean.alarm_switch
        - input_number.alarm_hour
        - input_number.alarm_minutes
        - style:
            background-color: dodgerblue
            height: 1px
          type: divider
        - input_boolean.weekdays
        - head:
            label: napok
            type: section
          items:
            - input_boolean.monday
            - input_boolean.tuesday
            - input_boolean.wednesday
            - input_boolean.thursday
            - input_boolean.friday
          type: 'custom:fold-entity-row'
        - style:
            background-color: dodgerblue
            height: 1px
          type: divider
        - input_boolean.weekend
        - head:
            label: napok
            type: section
          items:
            - input_boolean.saturday
            - input_boolean.sunday
          type: 'custom:fold-entity-row'
      show_header_toggle: false
      title: null
      type: entities
    style:
      background-color: 'rgba(0,0,0,0.3)'
      background-image: url("/local/pictures/cardback.png")
      background-repeat: no-repeat
      background-size: 100% 100%
      border: 'solid 1px rgba(57,128,228)'
      border-radius: 15px
    title: ébresztés
    type: 'custom:card-modder'

I think if I try with relative large cards ( like horizontal stack with 2-3 graph card) it doesn’t work, maybe because of the basic size of this kind of cards.

Sorry about the confusion. In programming terms a Minimal Working Example (MWE) is a short code snippet which illustrates the problem.

In your case, a MWE would be the configuration that makes you “get the no card type configured message”.
Also, please note the Minimal in Minimal Working Example. Does your problem only happen if you set background-image: url("/local/pictures/cardback.png")? If not, remove that from the MWE. My days also only have 24 hours.

Thirdly: Did you try the large: option described in the documentation?

Yes, I did but the result was an empty card , only the card header appeared.
I’ll show you.

If I use one graph card then it is working but doesn’t work in verical or horizontal stack:

popup_cards:
  sensor.cpu_temp:
    type: vertical-stack
    cards:
      - card:
          animate: true
          entities:
            - entity: sensor.cpu_temp
          graph: line
          hour24: true
          name: CPU hőmérséklet
          show:
            extrema: true
            icon: true
            name: true
          type: 'custom:mini-graph-card'
        style:
          border: 'solid 1px rgba(57,128,228)'
          border-radius: 15px
        type: 'custom:card-modder'
      - card:
          animate: true
          entities:
            - entity: sensor.processor_use
          graph: line
          hour24: true
          name: CPU hőmérséklet
          show:
            extrema: true
            icon: true
            name: true
          type: 'custom:mini-graph-card'
        style:
          border: 'solid 1px rgba(57,128,228)'
          border-radius: 15px
        type: 'custom:card-modder'
    title: system
    large: true

But it is working:

  sensor.illumination_158d0002b48df1:
    card:
      entities:
        - card:
            cards:
              - cards:
                  - template: popup_switch_button
                    type: 'custom:decluttering-card'
                    variables:
                      - name: Konyha
                      - icon: 'bha:ceiling-lamp'
                      - entity: light.kitchen
                  - template: popup_switch_button
                    type: 'custom:decluttering-card'
                    variables:
                      - name: Konyha 2
                      - icon: 'bha:ceiling-lamp'
                      - entity: light.kitchen2
                  - template: popup_switch_button
                    type: 'custom:decluttering-card'
                    variables:
                      - name: Nappali
                      - icon: 'bha:ceiling-lamp'
                      - entity: light.living_room
                  - template: popup_switch_button
                    type: 'custom:decluttering-card'
                    variables:
                      - name: Gateway
                      - icon: 'mdi:mdi:lightbulb'
                      - entity: light.gateway_light_7811dcf79959
                type: horizontal-stack
              - cards:
                  - template: popup_switch_button
                    type: 'custom:decluttering-card'
                    variables:
                      - name: Konyha
                      - icon: 'mdi:weather-night'
                      - entity: light.kitchen_nightlight
                  - template: popup_switch_button
                    type: 'custom:decluttering-card'
                    variables:
                      - name: Konyha 2
                      - icon: 'mdi:weather-night'
                      - entity: light.kitchen2_nightlight
                  - template: popup_switch_button
                    type: 'custom:decluttering-card'
                    variables:
                      - name: Nappali
                      - icon: 'mdi:weather-night'
                      - entity: light.living_room_nightlight
                  - template: popup_switch_button
                    type: 'custom:decluttering-card'
                    variables:
                      - name: Nappali
                      - icon: 'mdi:palette'
                      - entity: light.living_room_ambilight
                type: horizontal-stack
              - cards:
                  - template: popup_switch_button
                    type: 'custom:decluttering-card'
                    variables:
                      - name: Hálószoba
                      - icon: 'bha:ceiling-lamp'
                      - entity: light.bedroom
                  - template: popup_switch_button
                    type: 'custom:decluttering-card'
                    variables:
                      - name: Hálószoba
                      - icon: 'mdi:weather-night'
                      - entity: light.bedroom_nightlight
                  - template: popup_switch_button
                    type: 'custom:decluttering-card'
                    variables:
                      - name: Sólámpa
                      - icon: lamp
                      - entity: switch.71550386cc50e32a31de
                  - template: popup_switch_button
                    type: 'custom:decluttering-card'
                    variables:
                      - name: Szoba
                      - icon: 'mdi:lightbulb'
                      - entity: light.room
                type: horizontal-stack
              - cards:
                  - template: popup_switch_button
                    type: 'custom:decluttering-card'
                    variables:
                      - name: Lányok
                      - icon: 'bha:ceiling-lamp'
                      - entity: light.girls
                  - template: popup_switch_button
                    type: 'custom:decluttering-card'
                    variables:
                      - name: Lányok
                      - icon: 'mdi:weather-night'
                      - entity: light.girls_nightlight
                  - template: popup_switch_button
                    type: 'custom:decluttering-card'
                    variables:
                      - name: Bejárat
                      - icon: 'mdi:lightbulb'
                      - entity: light.entrance
                  - template: popup_switch_button
                    type: 'custom:decluttering-card'
                    variables:
                      - name: Fürdőszoba
                      - icon: 'mdi:lightbulb'
                      - entity: light.bathroom
                type: horizontal-stack
              - cards:
                  - template: popup_switch_button
                    type: 'custom:decluttering-card'
                    variables:
                      - name: WC
                      - icon: lightbulb
                      - entity: light.wc_lampa
                  - template: popup_switch_button
                    type: 'custom:decluttering-card'
                    variables:
                      - name: Kamera
                      - icon: 'mdi:webcam'
                      - entity: switch.plug_158d0002410dbd
                  - template: popup_switch_button
                    type: 'custom:decluttering-card'
                    variables:
                      - name: Cirkadián világítás
                      - icon: 'mdi:theme-light-dark'
                      - entity: switch.circadian_lighting_cirkadian_vilagitas
                  - template: popup_switch_button
                    type: 'custom:decluttering-card'
                    variables:
                      - name: Edzésmód
                      - icon: dumbbell
                      - entity: input_boolean.training_mode
                type: horizontal-stack
            type: vertical-stack
          type: 'custom:card-modder'
      show_header_toggle: false
      type: entities
    large: false
    style:
      background-color: 'rgba(0,0,20,0.3)'
      background-image: url("/local/pictures/cardback.png")
      background-repeat: no-repeat
      background-size: 100% 100%
      border: 'solid 1px rgba(57,128,228)'
      border-radius: 15px
    type: 'custom:card-modder'

Did I write or ask something wrong?

What I mean about my days also having only 24 hours relates to the previous sentence about removing unnecessary clutter from your example code.

For example, assuming you read and understood what I said, I can only conclude that the fact that you are using card-modder and have set the border to solid 1 px rgba(57,128,228) is absolutely vital for the error to appear, as is the hour24: true parameter.

That means it will take me quite a while to debug this error, because I will have to install decluttering-card and mini-graph-card to make sure we are standing at the same place.

I might have the time to do this in August.

While waiting, you could try again to strip down your example to the minimal amount of code which illustrates the problem.
Chances are great that in doing so, you will notice that your working example looks like:

sensor.illumination_158d0002b48df1:
    card:
      type: custom:card-modder
      ... other stuff...

and your non-working example looks like

sensor.cpu_temp:
    type: vertical-stack
    ... other stuff...

Maybe you can spot some other difference between the two than the type: parameter…

 

Recommended reading: The Art of War - Sun Tsu. Specifically the chapters on “divide-and-conquer”.

He only wants you to show him the exact part of the card that you are having problems with.

The “problem” is the following, if I wanted to use graph cards in vertical stack or horizontal stack. I can use the stack cards with other type cards, I can use the graph card alone. So I don’t know what is the exact part but I’ve let it go.

I also try popup-card, but not working, no error:

Here is a working card I wanna popup when I click on media_player.bedroom_rpi3_kodi:

card config:

card_settings:
  background: var(--paper-card-background-color)
  column_width: calc(97%/4)
  columns: 4
  row_height: 75px
  title: Kodi (spalnica)
  title_align: left
entities:
  - column: 1
    entity: script.bedroom_rpi3_kodi_input_home
    icon:
      value: 'mdi:home'
    row: 1
  - column: 2
    entity: script.bedroom_rpi3_kodi_input_contectx_menu
    icon:
      value: 'mdi:menu'
    label_sec:
      value: Menu
    row: 1
  - background:
      value: '#2576da'
    column: 3
    entity: script.bedroom_rpi3_kodi_input_up
    icon:
      value: 'mdi:arrow-up-bold-circle'
    row: 1
  - column: 4
    entity: script.bedroom_rpi3_kodi_input_info
    icon:
      value: 'mdi:information-outline'
    label_sec:
      value: Info
    row: 1
  - column: 1
    entity: script.bedroom_rpi3_kodi_player_play_pause
    icon:
      value: 'mdi:play-pause'
    row: 2
  - background:
      value: '#2576da'
    column: 2
    entity: script.bedroom_rpi3_kodi_input_left
    icon:
      value: 'mdi:arrow-left-bold-circle'
    row: 2
  - column: 3
    entity: script.bedroom_rpi3_kodi_input_select
    icon:
      value: 'mdi:check-circle-outline'
    row: 2
  - background:
      value: '#2576da'
    column: 4
    entity: script.bedroom_rpi3_kodi_input_right
    icon:
      value: 'mdi:arrow-right-bold-circle'
    row: 2
  - column: 1
    entity: script.bedroom_rpi3_kodi_player_stop
    icon:
      value: 'mdi:stop'
    row: 3
  - column: 2
    entity: script.bedroom_rpi3_kodi_input_back
    icon:
      value: 'mdi:backburger'
    label_sec:
      value: Return
    row: 3
  - background:
      value: '#2576da'
    column: 3
    entity: script.bedroom_rpi3_kodi_input_down
    icon:
      value: 'mdi:arrow-down-bold-circle'
    row: 3
  - column: 4
    entity: script.bedroom_rpi3_kodi_input_next_subtitle
    icon:
      value: 'mdi:subtitles-outline'
    label_sec:
      value: Subtitle
    row: 3
  - column: 1
    entity: script.bedroom_rpi3_kodi_player_rewind
    icon:
      value: 'mdi:rewind'
    row: 4
  - column: 2
    entity: script.bedroom_rpi3_kodi_player_fast_fwd
    icon:
      value: 'mdi:fast-forward'
    row: 4
  - column: 3
    entity: script.bedroom_rpi3_kodi_player_skip_back
    icon:
      value: 'mdi:skip-previous'
    row: 4
  - column: 4
    entity: script.bedroom_rpi3_kodi_player_skip_next
    icon:
      value: 'mdi:skip-next'
    row: 4
  - column: 1
    entity: script.bedroom_rpi3_kodi_player_skip_back_30
    icon:
      value: 'mdi:rewind-30'
    row: 5
  - column: 2
    entity: script.bedroom_rpi3_kodi_player_skip_back_10
    icon:
      value: 'mdi:rewind-10'
    row: 5
  - column: 3
    entity: script.bedroom_rpi3_kodi_player_skip_forward_10
    icon:
      value: 'mdi:fast-forward-10'
    row: 5
  - column: 4
    entity: script.bedroom_rpi3_kodi_player_skip_forward_30
    icon:
      value: 'mdi:fast-forward-30'
    row: 5
global_settings:
  border:
    color:
      value: black
    radius: 5px
    size: 3px
  icon:
    color:
      value: white
  label_sec:
    color:
      value: white
  shadow: 'elevation: 6dp'
type: 'custom:tiles-card'

Here is popup card conf:

popup_cards:
  media_player.bedroom_rpi3_kodi:
    title: bedroom_rpi3_player_popup
    card:
      card_settings:
        background: var(--paper-card-background-color)
        column_width: calc(97%/4)
        columns: 4
        row_height: 75px
        title: Kodi (spalnica)
        title_align: left
      entities:
        - column: 1
          entity: script.bedroom_rpi3_kodi_input_home
          icon:
            value: 'mdi:home'
          row: 1
        - column: 2
          entity: script.bedroom_rpi3_kodi_input_contectx_menu
          icon:
            value: 'mdi:menu'
          label_sec:
            value: Menu
          row: 1
        - background:
            value: '#2576da'
          column: 3
          entity: script.bedroom_rpi3_kodi_input_up
          icon:
            value: 'mdi:arrow-up-bold-circle'
          row: 1
        - column: 4
          entity: script.bedroom_rpi3_kodi_input_info
          icon:
            value: 'mdi:information-outline'
          label_sec:
            value: Info
          row: 1
        - column: 1
          entity: script.bedroom_rpi3_kodi_player_play_pause
          icon:
            value: 'mdi:play-pause'
          row: 2
        - background:
            value: '#2576da'
          column: 2
          entity: script.bedroom_rpi3_kodi_input_left
          icon:
            value: 'mdi:arrow-left-bold-circle'
          row: 2
        - column: 3
          entity: script.bedroom_rpi3_kodi_input_select
          icon:
            value: 'mdi:check-circle-outline'
          row: 2
        - background:
            value: '#2576da'
          column: 4
          entity: script.bedroom_rpi3_kodi_input_right
          icon:
            value: 'mdi:arrow-right-bold-circle'
          row: 2
        - column: 1
          entity: script.bedroom_rpi3_kodi_player_stop
          icon:
            value: 'mdi:stop'
          row: 3
        - column: 2
          entity: script.bedroom_rpi3_kodi_input_back
          icon:
            value: 'mdi:backburger'
          label_sec:
            value: Return
          row: 3
        - background:
            value: '#2576da'
          column: 3
          entity: script.bedroom_rpi3_kodi_input_down
          icon:
            value: 'mdi:arrow-down-bold-circle'
          row: 3
        - column: 4
          entity: script.bedroom_rpi3_kodi_input_next_subtitle
          icon:
            value: 'mdi:subtitles-outline'
          label_sec:
            value: Subtitle
          row: 3
        - column: 1
          entity: script.bedroom_rpi3_kodi_player_rewind
          icon:
            value: 'mdi:rewind'
          row: 4
        - column: 2
          entity: script.bedroom_rpi3_kodi_player_fast_fwd
          icon:
            value: 'mdi:fast-forward'
          row: 4
        - column: 3
          entity: script.bedroom_rpi3_kodi_player_skip_back
          icon:
            value: 'mdi:skip-previous'
          row: 4
        - column: 4
          entity: script.bedroom_rpi3_kodi_player_skip_next
          icon:
            value: 'mdi:skip-next'
          row: 4
        - column: 1
          entity: script.bedroom_rpi3_kodi_player_skip_back_30
          icon:
            value: 'mdi:rewind-30'
          row: 5
        - column: 2
          entity: script.bedroom_rpi3_kodi_player_skip_back_10
          icon:
            value: 'mdi:rewind-10'
          row: 5
        - column: 3
          entity: script.bedroom_rpi3_kodi_player_skip_forward_10
          icon:
            value: 'mdi:fast-forward-10'
          row: 5
        - column: 4
          entity: script.bedroom_rpi3_kodi_player_skip_forward_30
          icon:
            value: 'mdi:fast-forward-30'
          row: 5
      global_settings:
        border:
          color:
            value: black
          radius: 5px
          size: 3px
        icon:
          color:
            value: white
        label_sec:
          color:
            value: white
        shadow: 'elevation: 6dp'
      type: 'custom:tiles-card'
type: 'custom:mod-card'

I get red line,no error:

Hi, sorry for reviving old post, how did you accomplish that the buttons are aparted from the popup border and have a difuminted border when on? Can i see you styling? Thank you!!

Hi Thomas,

I’ve been frustrated looking a week on one view to find out WHY my popup doesn’t work. Could you please give me a hint ? Don’t know where to look:

  - title: Merc
    icon: 'mdi:car-sports'
    path: auto
    type: custom:grid-layout
    layout:
      grid-template-columns: 50% 50% 
      grid-template-rows: auto ## or 4 if you want to be strict about it 
      grid-template-areas: |
         "buttons1 buttons1 "
         "picture1  picture1 "
         "buttons2  buttons2 "
    cards:
      - type: custom:button-card
        view_layout: buttons1
        title : Mercedes GLE350 DE
      
      - type: horizontal-stack
        view_layout:
           grid-area: picture1
        cards:
          - type: picture-elements
            image: /local/merclogo.png
            hold_action:
             action: fire-dom-event
             browser_mod:
              command: popup
              title: "Dit is een test"
              card:
                type: custom:layout-card
                title: Dit is test 2  
                
            elements:
              - type: state-badge
                entity: sensor.2_amu_833_fuel_level
                title: Fuel level
                hold_action:
                 action: fire-dom-event
                 browser_mod:
                  command: popup
                  title: Mercedes
                  hide_header: true
                  style:
                    .: |
                      :host .content {
                        width: calc(385px + 385px + 385px);
                        max-width: 90vw;
                      }
                    $: |
                     .mdc-dialog .mdc-dialog__container .mdc-dialog__surface {
                       background: none !important;
                      }
                  card:
                   - type: custom:layout-card
                     column_num: 3
                     column_width: [385, 385, 385]
                     layout: vertical
                     cards:
                      - type: entities
                        title: Battery and Range
                        class: add_header
                        state_color: true
                        show_header_toggle: false
                        entities:
                        - entity: sensor.2_amu_833_state_of_charge
                          name: Charging Status
                        - entity: sensor.2_amu_833_starter_battery_state
                          name: Starter Battery
                        - entity: sensor.2_amu_833_oil_level
                          name: Oil Level
                        - type: 'custom:bar-card'
                          width: 70%
                          height: 2em
                          entities:
                            - name: Battery
                              entity: sensor.2_amu_833_state_of_charge
                              severity:
                                - color: '#e63917'
                                  from: 0
                              style:
                                top: 15%
                                left: 10%
                
          - type: picture-elements
            image: /local/mercnew.png
            elements:
              - entity: sensor.2_amu_833_fuel_level
                prefix: ''
                style:
                    transform: 'translate(-50%, -50%) scale(1.3, 1.3)'
                    color: lightgrey
                    left: 15%
                    top: 17%
                type: state-label
              - entity: sensor.2_amu_833_odometer
                prefix: ' '
                style:
                    transform: 'translate(-50%, -50%) scale(1.3, 1.3)'
                    color: lightgrey
                    left: 39%
                    top: 17%
                type: state-label
              - entity: sensor.car_window_sunroof
                style:
                    transform: 'translate(-50%, -50%) scale(0.7, 0.7)'
                    '--paper-item-icon-color': null
                    left: 57%
                    top: 17.5%
                type: state-icon
              - entity: binary_sensor.2_amu_833_tire_warning
                prefix: ''
                style:
                    transform: 'translate(-50%, -50%) scale(0.7, 0.7)'
                    color: '#FFFFFF'
                    left: 66.5%
                    top: 17.5%
                type: state-icon
              - entity: binary_sensor.2_amu_833_low_brake_fluid_warning
                prefix: ''
                style:
                    transform: 'translate(-50%, -50%) scale(0.7, 0.7)'
                    color: '#FFFFFF'
                    left: 76%
                    top: 17.5%
                type: state-icon
              - entity: binary_sensor.2_amu_833_low_coolant_level_warning
                prefix: ''
                style:  
                    transform: 'translate(-50%, -50%) scale(0.7, 0.7)'
                    color: '#FFFFFF'
                    left: 85.5%
                    top: 17.5%
                type: state-icon
              - entity: binary_sensor.2_amu_833_low_wash_water_warning
                prefix: ''
                style:
                    transform: 'translate(-50%, -50%) scale(0.7, 0.7)'
                    color: '#FFFFFF'
                    left: 95%
                    top: 17.5%
                type: state-icon
              - entity: sensor.car_tire_pressure_front_right
                style:
                    transform: 'translate(-50%, -50%) scale(0.8, 0.8)'
                    color: lightgrey
                    left: 38%
                    top: 32%
                type: state-label
              - entity: sensor.car_tire_pressure_rear_right
                style:
                    transform: 'translate(-50%, -50%) scale(0.8, 0.8)'
                    color: lightgrey
                    left: 84%
                    top: 32%
                type: state-label
              - entity: sensor.car_tire_pressure_front_left
                style:
                    transform: 'translate(-50%, -50%) scale(0.7, 0.7)'
                    color: lightgrey
                    left: 38%
                    top: 90%
                type: state-label
              - entity: sensor.car_tire_pressure_rear_left
                style:
                    transform: 'translate(-50%, -50%) scale(0.8, 0.8)'
                    color: lightgrey
                    left: 84%
                    top: 90%
                type: state-label
              - entity: sensor.car_lock_front_right
                style:
                    '--paper-item-icon-color': white
                    transform: 'translate(-50%, -50%) scale(0.7, 0.7)'
                    left: 61%
                    top: 38%
                type: state-icon
              - entity: sensor.car_lock_rear_right
                style:
                    '--paper-item-icon-color': white
                    transform: 'translate(-50%, -50%) scale(0.7, 0.7)'
                    left: 68%
                    top: 38%
                type: state-icon
              - entity: sensor.car_lock_front_left
                style:
                    '--paper-item-icon-color': white
                    transform: 'translate(-50%, -50%) scale(0.7, 0.7)'
                    left: 61%
                    top: 83%
                type: state-icon
              - entity: sensor.car_lock_rear_left
                style:
                    '--paper-item-icon-color': white
                    transform: 'translate(-50%, -50%) scale(0.7, 0.7)'
                    left: 68%
                    top: 83%
                type: state-icon
              - entity: sensor.car_lock_trunk
                style:
                    '--paper-item-icon-color': white
                    transform: 'translate(-50%, -50%) scale(0.7, 0.7)'
                    left: 95%
                    top: 60%
                type: state-icon    
              - entity: sensor.car_window_front_right
                style:
                    '--paper-item-icon-color': lightgrey
                    transform: 'translate(-50%, -50%) scale(0.7, 0.7)'
                    left: 56%
                    top: 31%
                type: state-icon
              - entity: sensor.car_window_rear_right
                style:
                    '--paper-item-icon-color': lightgrey
                    transform: 'translate(-50%, -50%) scale(0.7, 0.7)'
                    left: 73%
                    top: 31%
                type: state-icon
              - entity: sensor.car_window_front_left
                style:
                    '--paper-item-icon-color': lightgrey
                    transform: 'translate(-50%, -50%) scale(0.7, 0.7)'
                    left: 56%
                    top: 90%
                type: state-icon
              - entity: sensor.car_window_rear_left
                style:
                    '--paper-item-icon-color': lightgrey
                    transform: 'translate(-50%, -50%) scale(0.7, 0.7)'
                    left: 73%
                    top: 90%
                type: state-icon
              - entity: binary_sensor.2_amu_833_park_brake_status
                prefix: ''
                style:
                    transform: 'translate(-50%, -50%) scale(0.8, 0.8)'
                    color: '#FFFFFF'
                    left: 11%
                    top: 42%
                type: state-icon
              - entity: binary_sensor.2_amu_833_windows_closed
                prefix: ''
                style:
                    transform: 'translate(-50%, -50%) scale(0.8, 0.8)'
                    color: '#FFFFFF'
                    left: 11%
                    top: 52%
                type: state-icon
              - entity: sensor.2_amu_833_lock
                prefix: ''
                style:  
                    color: '#FFFFFF'
                    left: 11%
                    top: 64%
                type: state-label
              - entity: device_tracker.2_amu_833_device_tracker
                prefix: ''
                style:
                    color: lightgrey
                    left: 11%
                    top: 77%
                type: state-label
                    

Much gratitude in advance

Kr,

Bart