Is it possible to disable the more info pop up in lovelace ui?

Is it possible to disable the more info pop up (with the chart etc.) with for example the lovelace entitites card?
I already tried disabling the pointer-events like this:
style:
pointer-events: none;

But I still see the pop-up (with the chart etc.). Is there any other way?

3 Likes

Any sollution?

Agreed. It’s especially annoying when combining with the swiper custom card. It prevents the slider from sliding and there doesn’t seem to be any way to turn it off from an entities card.

I made another attempt and I got it working with this lovelace-card-mod plugin: https://community.home-assistant.io/t/card-mod-add-css-styles-to-any-lovelace-card/. With this card you can add css styles to any card. The following example works for me:

entity: sensor.any_sensor
graph: line
style: |
  ha-card {
    pointer-events: none;
  }
type: sensor

Just set tap_action to something else: https://www.home-assistant.io/lovelace/entities/#tap_action

1 Like

I’m trying to do this with an alarm control panel entity, but it seems to not be working. I don’t want the more info popup to show up, because I don’t want the alarm to be set or disabled in the display, I just want to display the status.

type: entity
entity: alarm_control_panel.abode_alarm
name: Alarm
tap_action:
  action: none