🔹 Card-mod - Add css styles to any lovelace card

Thermostat Card: Disable More-Info and Slider


  - type: thermostat
    entity: climate.my_thermostat
    card_mod:
      style:
        .: |
          .more-info {
            width: 0;
          }
        ha-state-control-climate-temperature$:
          ha-control-circular-slider$: |
            g#interaction {
              display: none;
            }

Before:
(“hand” style pointer indicating slider grab, and “more info” button available)
image

After:
(“arrow” style pointer indicating no slider grab, and “more info” button not present)
image


The plus and minus buttons still function with this configuration.

Enjoy

5 Likes