thomasloven / lovelace-fold-entity-row

🔹 A foldable row for entities card, containing other rows
MIT License
587 stars 38 forks source link

Mouse over information hidden behind "fold" #189

Closed scaarup closed 2 years ago

scaarup commented 2 years ago

My Home Assistant version: 2021.11.4

Fold-entity-row version (FROM BROWSER CONSOLE): 20.0.11

What I am doing: Holding mouse button while using a slider control.

What I expected to happen: I expect to be able to see the value of the slider

What happened instead: The pop-up information from the slider is hidden behind the "head" fold entity

image

Minimal steps to reproduce:

# The least ammount of code possible to reproduce my error
type: grid
square: false
columns: 1
cards:
  - type: entities
    entities:
      - type: custom:fold-entity-row
        head:
          entity: input_boolean.heating_schedule_frederik
          name: Tidsplan
          state_color: true
        entities:
          - entity: input_number.heating_target_temp_plan_frederik
            icon: mdi:clock-outline
            name: Temp. dagstid
          - entity: input_number.heating_target_temp_noplan_frederik
            name: Temp. nat
    title: Tidsplan, Frederik
    show_header_toggle: false

# End of code

Error messages from the browser console: n/a

By putting an X in the boxes ([X]) below, I indicate that I:

ildar170975 commented 2 years ago

A possible walkaround:

type: entities
entities:
  - type: custom:fold-entity-row
    open: false
    padding: 0
    head:
      entity: sun.sun
    entities:
      - entity: input_number.test_number
      - entity: sun.sun
      - entity: sun.sun
    card_mod:
      style: |
        div#items {
          overflow: visible;
        }

image

thomasloven commented 2 years ago

This should be fixed in 2.0.12

ildar170975 commented 2 years ago

Seems to be solved!

scaarup commented 2 years ago

HACS doesn't seem to think 2.0.12 is a new version. Since the prior is 20.0.11. Was the new version meant to be 20.0.12?

thomasloven commented 2 years ago

Oops. Sorry about that. I've retagged the release.

scaarup commented 2 years ago

Thank you very much - it is all looking good now :)