Make it possible to set tile card features in lovelace as "read only" (or ignore input without a preceeding long press)

Some devices are easy to inadvertently change the state of when paging through the lovelace UI (scrolling in particular.)
However, the ‘features’ on a tile card are still really useful for understanding the state of a device/entity (brightness, color, color temp on a light, temperature on a thermostat.)
I’d like to be able to show the current state but prevent accidental changes by forcing either a long press to enable input, or just disabling it unless I go to the ‘more information’ view.

Up-voted!
This “read only” feature could be enabled/disabled from the top 3dots lovelace menu. It would be great to avoid unintentional change when it is used by those at home less used to Home Assistant.

You can achieve this by using

tap_action:
  action: none

e.g.

type: tile
entity: switch.rpi_cooling_fan
tap_action:
  action: none
hold_action:
  action: toggle

So the long press would provide the original function here.

That wouldn’t work for a thermostat card/ tile, but thanks for the suggestion (already done for locks, for example.)