Never mind, I got it to work by changing this:
style:
.mmp__container mmp-progress:
$: |
div.mmp-progress {
top: 0px;
bottom: unset;
}
Never mind, I got it to work by changing this:
style:
.mmp__container mmp-progress:
$: |
div.mmp-progress {
top: 0px;
bottom: unset;
}
hi, can you tell me how did you integrate the Vocolinc humidifier? I have the Mistflow, I have had it integrated before but after I had to reset it, Iâm just unable to add it again. Thanks!
Itâs not the vocolink humidifer that I integrated , itâs just the vocolink switch who control my basic humidifier for on or off.
Styling "restriction-card"
:
Vertical alignment of the âlockâ icon:
I found old post regarding "restriction-card"
.
There is another option to align the âlockâ icon for "multiple-entity-row"
:
style: |
div#overlay {
align-items: center;
}
How it works - check the example below: there are 4 identical rows:
"secondary_info"
, 1 w/o it);"secondary_info"
, 1 w/o it).In all rows w/o card-mod the âlockâ icon is not vertically aligned.
type: entities
entities:
- type: 'custom:restriction-card'
style: |
div#overlay {
align-items: center;
}
row: true
card:
type: 'custom:multiple-entity-row'
entity: sun.sun
entities:
- entity: sun.sun
- entity: sun.sun
name: false
icon: true
- entity: sun.sun
toggle: true
name: normal + card-mod
show_state: false
secondary_info: last-changed
- type: 'custom:restriction-card'
style: |
div#overlay {
align-items: center;
}
row: true
card:
type: 'custom:multiple-entity-row'
entity: sun.sun
entities:
- entity: sun.sun
- entity: sun.sun
name: false
icon: true
- entity: sun.sun
toggle: true
name: normal + card-mod
show_state: false
- type: 'custom:restriction-card'
row: true
card:
type: 'custom:multiple-entity-row'
entity: sun.sun
entities:
- entity: sun.sun
- entity: sun.sun
name: false
icon: true
- entity: sun.sun
toggle: true
name: normal
show_state: false
secondary_info: last-changed
- type: 'custom:restriction-card'
row: true
card:
type: 'custom:multiple-entity-row'
entity: sun.sun
entities:
- entity: sun.sun
- entity: sun.sun
name: false
icon: true
- entity: sun.sun
toggle: true
name: normal
show_state: false
Other styles - managed by theme variables:
For rows - check the example below:
type: entities
entities:
- type: 'custom:restriction-card'
row: true
card:
entity: sun.sun
name: default styles
secondary_info: last-changed
- type: 'custom:restriction-card'
restrictions:
block: true
row: true
card:
entity: sun.sun
secondary_info: last-changed
style: &ref_style |
:host {
--restriction-lock-icon-size: 18px;
--restriction-regular-lock-color: var(--accent-color);
--restriction-success-lock-color: green;
--restriction-lock-row-margin-left: 24px;
}
- type: 'custom:restriction-card'
restrictions:
pin:
code: 1234
row: true
card:
entity: sun.sun
secondary_info: last-changed
style: *ref_style
- type: 'custom:restriction-card'
row: true
style: *ref_style
card:
entity: sun.sun
For cards - check the example below:
type: vertical-stack
cards:
- type: custom:restriction-card
card:
type: entities
title: Default styles
entities:
- entity: sun.sun
- entity: sun.sun
- type: custom:mod-card
style: |
restriction-card {
--restriction-lock-icon-size: 18px;
--restriction-regular-lock-color: var(--accent-color);
--restriction-success-lock-color: green;
}
card:
type: custom:restriction-card
card:
type: entities
title: Changed styles
entities:
- entity: sun.sun
- entity: sun.sun
Using a decluttering template:
Since the "restriction-card"
may be used in many places of your HA setup, it could be a good idea to use a "decluttering-card"
for that (described here with examples).
Here is an upgraded version of the decluttering template - with "card-mod"
support:
decl_restriction_card_row:
default:
- VALUE_ROW: false
- STYLE_CARD_ROW: ''
card:
type: 'custom:mod-card'
style:
restriction-card:
$:
'div#card': '[[STYLE_CARD_ROW]]'
.: |
div#overlay {
{% if [[VALUE_ROW]] == true %}
align-items: center;
{% endif %}
}
.: |
restriction-card {
--restriction-lock-icon-size: 16px;
--restriction-regular-lock-color: var(--accent-color);
--restriction-success-lock-color: green;
--restriction-lock-row-margin-left: 24px;
}
card:
type: 'custom:restriction-card'
restrictions:
pin:
code: 1234
text: ĐĐČДЎОŃĐ” PIN ĐŽĐ»Ń ŃĐ°Đ·Đ±Đ»ĐŸĐșĐžŃĐŸĐČĐșĐž
retry_delay: 3
max_retries: 3
max_retries_delay: 10
action: hold
duration: 10
row: '[[VALUE_ROW]]'
card: '[[CARD_OR_ROW]]'
This template has 3 types of styles:
How to use the template:
type: entities
title: Default styles (rows)
entities:
- type: 'custom:decluttering-card'
template: decl_restriction_card_row
variables:
- VALUE_ROW: true
- CARD_OR_ROW:
entity: sun.sun
name: default styles
secondary_info: last-changed
- type: 'custom:decluttering-card'
template: decl_restriction_card_row
variables:
- VALUE_ROW: true
- CARD_OR_ROW:
type: 'custom:multiple-entity-row'
entity: sun.sun
entities:
- entity: sun.sun
- entity: sun.sun
name: false
icon: true
- entity: sun.sun
toggle: true
name: default styles
show_state: false
secondary_info: last-changed
For cards:
type: 'custom:decluttering-card'
template: decl_restriction_card_row
variables:
- CARD_OR_ROW:
type: entities
title: Default styles (card)
entities:
- entity: sun.sun
- entity: sun.sun
secondary_info: last-changed
"restriction-card"
:type: vertical-stack
title: Style as a part of card definition
cards:
- type: 'custom:decluttering-card'
template: decl_restriction_card_row
variables:
- CARD_OR_ROW:
type: entities
entities:
- entity: sun.sun
secondary_info: last-changed
- entity: sun.sun
secondary_info: last-changed
style: |
ha-card {
color: red;
}
- type: 'custom:decluttering-card'
template: decl_restriction_card_row
variables:
- CARD_OR_ROW:
type: entities
entities:
- entity: sun.sun
secondary_info: last-changed
- entity: sun.sun
secondary_info: last-changed
style:
hui-text-entity-row:
$:
hui-generic-entity-row $: |
.text-content:not(.info) {
color: red;
}
"restriction-card"
:decluttering-card
definition;Method 1:
Need to specify a full path to the row:
type: entities
entities:
- type: 'custom:decluttering-card'
template: decl_restriction_card_row
variables:
- VALUE_ROW: true
- CARD_OR_ROW:
entity: sun.sun
secondary_info: last-changed
style:
mod-card$.type-custom-mod-card restriction-card$:
'div#card hui-text-entity-row$': |
hui-generic-entity-row$: |
.text-content:not(.info) {
color: red;
}
Method 2:
Need to specify a style as an input variable:
type: vertical-stack
title: Style as an input variable
cards:
- type: custom:decluttering-card
template: decl_restriction_card_row
variables:
- VALUE_ROW: true
- CARD_OR_ROW:
entity: sun.sun
name: style passed to decluttering
secondary_info: last-changed
- STYLE_CARD_ROW:
hui-text-entity-row$:
hui-generic-entity-row$: |
.text-content:not(.info) {
color: cyan;
}
- type: custom:decluttering-card
template: decl_restriction_card_row
variables:
- VALUE_ROW: true
- CARD_OR_ROW:
type: custom:multiple-entity-row
entity: sun.sun
entities:
- entity: sun.sun
- entity: sun.sun
name: false
icon: true
- entity: sun.sun
toggle: true
name: style passed to decluttering
show_state: false
secondary_info: last-changed
- STYLE_CARD_ROW:
multiple-entity-row$hui-generic-entity-row:
$: |
state-badge {
color: magenta;
}
.: |
div.entity:nth-child(2) state-badge {
color: red;
}
Method 2 may be used for styling cards too. But I would recommend to specify a style as a part of card definition (see above).
Custom background:
post
More examples are described here.
The CSS-style donât change in a conditional row. what i doing wrong?
This doesnât works:
- type: entities
entities:
- type: conditional
conditions:
- entity: sensor.kompaktansicht_buro_naehlicht
state: 'on'
row:
entity: light.buro_nahlicht
icon: 'mdi:desk-lamp'
name: NĂ€hlicht Lampe
card_mod:
style: |
:host {
text-indent: 45px;
}
When i use this in a normal row, its works fine:
entities:
- type: section
- entity: switch.bugeleisen
icon: 'mdi:curling'
name: BĂŒgeleisen
card_mod:
style: |
:host {
text-indent: 45px;
}
Thanks for Helping
Conditional row inside Entities card:
Do not use ":host"
here.
type: vertical-stack
cards:
- type: entities
entities:
- input_boolean.test_boolean
- type: entities
entities:
- sun.sun
- type: conditional
conditions:
- entity: input_boolean.test_boolean
state: 'on'
row:
entity: sun.sun
icon: 'mdi:desk-lamp'
name: NĂ€hlicht Lampe
style:
hui-simple-entity-row$: |
hui-generic-entity-row {
text-indent: 45px;
color: red;
}
- entity: sun.sun
BTW, it is possible to use a âconfig.row.entityâ variable in templates.
Update 20.05.22:
The styling may not working sometimes - see a description for a conditional element inside Picture elements card. There is an issue on Github.
Update 31.05.22:
The issue is closed.
@Ildar_Gabdullin Thanks for you fast help.
But what i do wrong?
This (part of) code:
...
- type: conditional
conditions:
- entity: sensor.kompaktansicht_kinderzimmer_dimm_einzeln_deckenlicht
state: 'on'
row:
entity: light.kinderzimmer_01_esph
icon: 'false'
name: 'Fenster'
type: 'custom:slider-entity-row'
state_color: false
style:
hui-text-entity-row$: |
hui-generic-entity-row {
text-indent: 45px;
color: red;
}
- type: conditional
conditions:
- entity: sensor.kompaktansicht_kinderzimmer_dimm_einzeln_deckenlicht
state: 'on'
row:
entity: light.kinderzimmer_02_esph
icon: 'false'
name: 'Mitte'
type: 'custom:slider-entity-row'
state_color: false
...
results:
Thanks again
These will not work together:
Replace "hui-text-entity-row"
with an appropriate elementâs name (cannot tell it, I do not use "custom:slider-entity-row"
.
okay, @Ildar_Gabdullin you bring me on the right track. Thanks a lot. This works:
style:
slider-entity-row$: |
hui-generic-entity-row {
text-indent: 30px;
}
I followed the official instructions on Github. But I have no CSS experience. Accidentally found âslider-entity-rowâ in the source code, added a $ (like in your example) and it worked. A random noob hit.
So that I can understand this and apply it to other cards. Why does it work with it:
...
slider-entity-row$: |
hui-generic-entity-row {
...
and why does it not work with it:
...
slider-entity-row$: |
slider-entity-row$ {
...
Thanks one more time
I am also a noob in CSS. No web programming experience at all ))). Used to be a software developer for real-time applications. But what I understand and you can understand too:
According to written above - it is impossible to have a path like this:
slider-entity-row$: |
slider-entity-row$ {
BTW, on your screenshot I see nothing about slider-entity-rowâŠ
@Ildar_Gabdullin Wonderful, thank you very much for this execution
Iâll go crazy. Everything now seems to be working and the text is now shifted to the right. But that does not work if the hidden entity rows are âshown turn onâ during iâm looking on my Lovelace-dashboard. You have to reload the page every time so that it is displayed correctly. With my plan (press a button so that the details are displayed for a few seconds) unfortunately not to be used. Hereâs how the effect works:
red square in GIF = is displayed incorrectly, green square = is displayed correctly.
This effect can be seen in all browsers including the HA-IOS-APP.
What am I doing wrong?
(My dashboard idea is based on this âextended detail buttonâ and thatâs why itâs important to me)
I also have this effect without type: âcustom: slider-entity-rowâ)
type: entities
title: 1.OG BĂŒro / Korridor
style: |
ha-card {
--ha-card-background: rgba(255,228,0,0.07);
}
entities:
- type: conditional
conditions:
- entity: timer.auto_off_korridor_1og
state_not: idle
row:
entity: timer.auto_off_korridor_1og
icon: 'mdi:timer-outline'
name: Licht Korridor automatisch aus in...
- entity: light.1_og_korridor_c
icon: 'mdi:vanity-light'
name: Korridor
- type: section
- type: conditional
conditions:
- entity: timer.auto_off_buro
state_not: idle
row:
entity: timer.auto_off_buro
icon: 'mdi:timer-outline'
name: Licht BĂŒro automatisch aus in...
- entity: light.buro
icon: 'mdi:vanity-light'
name: Deckenleuchte BĂŒro
- entity: group.buro_nahlichter_beide
icon: 'mdi:desk-lamp'
name: NĂ€hlampen
extend_paper_buttons_row:
buttons:
- entity: script.kompaktansicht_buro_einzelne_naehlicht_lampen
name: false
icon: 'mdi:arrow-split-horizontal'
style:
button:
margin-right: 15px
- type: conditional
conditions:
- entity: sensor.kompaktansicht_buro_naehlicht
state: 'on'
row:
entity: light.buro_nahlicht
icon: 'mdi:subdirectory-arrow-right'
name: Tischlampe
style:
hui-toggle-entity-row$: |
hui-generic-entity-row {
text-indent: 50px;
margin-bottom: -12px;
margin-top: -10px;
}
- type: conditional
conditions:
- entity: sensor.kompaktansicht_buro_naehlicht
state: 'on'
row:
entity: switch.nahmaschienen_spot
icon: 'mdi:subdirectory-arrow-right'
name: Spot
style:
hui-toggle-entity-row$: |
hui-generic-entity-row {
text-indent: 50px;
margin-bottom: -5px;
}
- type: section
- entity: switch.bugeleisen
icon: 'mdi:curling'
name: BĂŒgeleisen
- entity: switch.plotter
name: Plotter
icon: 'mdi:printer'
- type: conditional
conditions:
- entity: timer.auto_off_bugeleisen
state_not: idle
row:
entity: timer.auto_off_bugeleisen
icon: 'mdi:timer-outline'
name: BĂŒgeleisen aus in...
- type: conditional
conditions:
- entity: sensor.kompaktansicht_buro_fenster
state: 'on'
row:
type: section
- type: conditional
conditions:
- entity: sensor.kompaktansicht_buro_fenster
state: 'on'
row:
entity: binary_sensor.aqara_kontaktsensor_buro_links_c
icon: 'mdi:window-open-variant'
name: Fenster
show_header_toggle: false
many thanks for the help
Styling "hui-input-number-entity-row"
- entity row for "input_number"
This post is dedicated to styling an "input_number"
entity defined with a "box"
type:
input_number:
test_number:
name: ...
min: ...
max: ...
step: ...
mode: box
icon: ...
If an "input_number"
entity is defined with a "slider"
type - then check this post for âslider entitiesâ.
Update (21.06.22): the post is updated with styles for MDC controls; old styles (see at the bottom of the post) do not work since 2022.3.
Warning: different browsers may display input_number
rows differently; here pictures from Chrome are provided by default.
Colored name:
Two methods are available:
â using a short â:host
â navigation;
â using a more detailed DOM navigation.
- type: entities
title: Colored name
entities:
- entity: input_number.test_number_2
name: Colored name (method 1)
card_mod: &ref_card_mod_red_text_host
style: |
:host {
color: red;
}
- entity: input_number.test_number_2
name: Colored name (method 1)
secondary_info: last-changed
card_mod: *ref_card_mod_red_text_host
- entity: input_number.test_number_2
name: Colored name (method 2)
card_mod: &ref_card_mod_red_text_dom
style:
hui-generic-entity-row $: |
.info {
color: red;
}
- entity: input_number.test_number_2
name: Colored name (method 2)
secondary_info: last-changed
card_mod: *ref_card_mod_red_text_dom
- entity: input_number.test_number_2
name: default
- entity: input_number.test_number_2
name: default
secondary_info: last-changed
How to style several rows:
Note that a common style may be overwritten for some particular entity.
- type: entities
title: Colored name for all entities
card_mod:
style:
.card-content:
div:
hui-input-number-entity-row $ hui-generic-entity-row $: |
.info {
color: orange;
}
entities:
- entity: input_number.test_number_2
name: Cannot be overwritten
style: |
:host {
color: red !important;
}
- entity: input_number.test_number_2
name: Overwritten style
card_mod: &ref_card_mod_overwritten_text
style:
hui-generic-entity-row $: |
.info {
color: red !important;
}
- entity: input_number.test_number_2
name: Overwritten style
secondary_info: last-changed
card_mod: *ref_card_mod_overwritten_text
- entity: input_number.test_number_2
secondary_info: last-changed
name: Colored name (common)
- entity: input_number.test_number_2
name: Colored name (common)
- entity: input_number.test_number_2
secondary_info: last-changed
name: Colored name (common)
Colored secondary_info:
- type: entities
title: Colored secondary_info for some entity
entities:
- entity: input_number.test_number_2
name: Colored secondary_info
secondary_info: last-changed
card_mod:
style:
hui-generic-entity-row $: |
.info .secondary ha-relative-time {
color: orange !important;
}
- entity: input_number.test_number_2
name: Different colors
secondary_info: last-changed
card_mod:
style:
hui-generic-entity-row $: |
.info .secondary ha-relative-time {
color: orange !important;
}
.info {
color: red;
}
- entity: input_number.test_number_2
secondary_info: last-changed
name: default
- entity: input_number.test_number_2
name: default
How to style several rows:
Note that a common style may be overwritten for some particular entity.
But - the new style is working unstable in my setup (HA 2022.6, card-mod 3.1.5) - sometimes it is applied, sometimes notâŠ
- type: entities
title: Colored secondary_info for all entities
card_mod:
style:
.card-content:
div:
hui-input-number-entity-row $ hui-generic-entity-row $: |
.info .secondary ha-relative-time {
color: cyan !important;
}
entities:
- entity: input_number.test_number_2
secondary_info: last-changed
name: Colored sec.info (common)
- entity: input_number.test_number_2
name: Overwritten color (unstable)
secondary_info: last-changed
card_mod:
style:
hui-generic-entity-row $: |
.info .secondary ha-relative-time {
color: orange !important;
}
- entity: input_number.test_number_2
secondary_info: last-changed
name: Colored sec.info (common)
- entity: input_number.test_number_2
name: default
Colored icon:
Two methods are available:
â using a CSS variable;
â using a CSS property with a detailed DOM navigation.
- type: entities
title: Colored icon for some entity
entities:
- entity: input_number.test_number_2
name: 'Colored icon (method #1)'
card_mod:
style: |
:host {
--paper-item-icon-color: red;
}
- entity: input_number.test_number_2
name: 'Colored icon (method #2)'
card_mod:
style:
hui-generic-entity-row $: |
state-badge {
color: red;
}
- entity: input_number.test_number_2
name: default
How to style several rows:
Note that a common style may be overwritten for some particular entity.
- type: entities
title: Colored icon for all entities
card_mod:
style: |
ha-card {
--paper-item-icon-color: cyan;
}
entities:
- entity: input_number.test_number_2
name: Overwritten color
card_mod:
style: |
:host {
--paper-item-icon-color: red;
}
- entity: input_number.test_number_2
name: Colored icon (common)
- entity: input_number.test_number_2
name: Colored icon (common)
Some other styles for an icon - resized icon, hidden icon:
- type: entities
title: Other styles for icon
entities:
- entity: input_number.test_number_2
name: resized icon
card_mod:
style: |
:host {
--mdc-icon-size: 40px;
}
- entity: input_number.test_number_2
name: hidden icon
card_mod:
style:
hui-generic-entity-row $: |
state-badge {
display: none;
}
Colored value:
- type: entities
title: Colored value
entities:
- entity: input_number.test_number_2
name: colored value
card_mod:
style: |
:host {
--mdc-text-field-ink-color: red;
}
- entity: input_number.test_number_2
name: default
Colored UoM:
By default a UoM label is colored by â--secondary-text-color
â; you may specify any color or set it equal to â--primary-text-color
â.
- type: entities
title: colored UoM
entities:
- entity: input_number.test_value_uom
name: red
card_mod:
style: |
:host {
--secondary-text-color: red;
}
- entity: input_number.test_value_uom
name: primary-text-color
card_mod:
style: |
:host {
--secondary-text-color: var(--primary-text-color);
}
- entity: input_number.test_value_uom
name: default
Colored fieldâs background:
- type: entities
title: Colored background
entities:
- entity: input_number.test_number_2
name: colored background
card_mod:
style: |
:host {
--mdc-text-field-fill-color: lightgreen;
}
- entity: input_number.test_number_2
name: default
Colored underline:
The underline had 3 possible states:
â a default (static) state;
â the input field is hovered by a mouse;
â the input field is selected by a mouse.
There are CSS variables for each state.
In the example below:
â the 1st row is modded by using these CSS variables;
â the 2nd row is modded by changing CSS properties with a detailed DOM navigation;
â the 3rd row has transparent underlines.
- type: entities
title: Colored underline
entities:
- entity: input_number.test_number_2
name: method 1
card_mod:
style: |
:host {
--mdc-text-field-idle-line-color: red;
--mdc-text-field-hover-line-color: cyan;
--mdc-theme-primary: magenta;
}
- entity: input_number.test_number_2
name: method 2
card_mod:
style:
ha-textfield $: |
.mdc-line-ripple::before {
border-bottom-color: red !important;
}
.mdc-line-ripple::after {
border-bottom-color: magenta !important;
}
- entity: input_number.test_number_2
name: no underline
card_mod:
style:
ha-textfield $: |
.mdc-line-ripple::before,
.mdc-line-ripple::after {
border-bottom-style: none !important;
}
- entity: input_number.test_number_2
name: default
Changing a padding around an input field:
Two methods are available:
â using a CSS variable;
â using a CSS property with a detailed DOM navigation.
- type: entities
title: padding
entities:
- entity: input_number.test_number_2
name: left & right padding = 0
card_mod:
style: |
:host {
--text-field-padding: 0px;
}
- entity: input_number.test_number_2
name: right padding = 0
card_mod:
style:
ha-textfield $: |
label {
padding-right: 0px !important;
}
- entity: input_number.test_number_2
name: default
Changing a width of the input field:
Two methods are available:
â using a CSS variable;
â using a CSS property with a detailed DOM navigation.
- type: entities
title: field width
entities:
- entity: input_number.test_number_2
name: custom (method 1)
card_mod:
style: |
:host {
--ha-textfield-input-width: 160px;
}
- entity: input_number.test_number_2
name: custom (method 2)
card_mod:
style:
ha-textfield $: |
input {
width: 120px !important;
}
- entity: input_number.test_number_2
name: default
Changing a padding around the UoM label:
- type: entities
title: padding for UoM
entities:
- entity: input_number.test_value_uom
name: custom padding
card_mod:
style: |
:host {
--text-field-suffix-padding-left: 0px;
--text-field-suffix-padding-right: 12px;
}
- entity: input_number.test_value_uom
name: default
Wrapping a long name:
- type: entities
title: Wrapping a text for the name
entities:
- entity: input_number.test_number_2
name: long long long long long long long
secondary_info: last-changed
card_mod: &ref_card_mod_wrapping_text
style:
hui-generic-entity-row $: |
.info {
text-overflow: unset !important;
white-space: unset !important;
}
- entity: input_number.test_number_2
name: long long long long long long long
card_mod: *ref_card_mod_wrapping_text
- entity: input_number.test_number_2
secondary_info: last-changed
name: long long long long long long long
- entity: input_number.test_number_2
name: long long long long long long long
Hidden name:
Two methods are available:
â use a âblankâ name;
â hide the name.
- type: entities
title: Hidden name
entities:
- entity: input_number.test_number_2
name: ' '
- entity: input_number.test_number_2
card_mod:
style:
hui-generic-entity-row $: |
.info {
display: none;
}
- entity: input_number.test_number_2
name: default
Changed rowâs height:
type: entities
entities:
- entity: input_number.test_number_2
name: custom height
card_mod:
style:
ha-textfield $: |
.mdc-text-field {
height: 40px !important;
}
- entity: input_number.test_number_2
name: default
How to disable an input_number
row:
Two methods are available:
â the row is displayed as disabled;
â the row only has a read-only input field.
- type: entities
title: Locked input_number
entities:
- entity: input_boolean.test_boolean
name: Lock input_number
- entity: input_number.test_number_2
name: disabled
tap_action:
action: none
card_mod:
style: |
:host {
{% if is_state('input_boolean.test_boolean','on') %}
--mdc-text-field-ink-color: var(--disabled-text-color);
color: var(--disabled-text-color);
--mdc-text-field-idle-line-color: var(--disabled-text-color);
--paper-item-icon-color: var(--disabled-text-color);
pointer-events: none;
{% endif %}
}
- entity: input_number.test_number_2
name: read-only
tap_action:
action: none
card_mod:
style: |
:host {
{% if is_state('input_boolean.test_boolean','on') %}
pointer-events: none;
{% endif %}
}
- type: section
label: with UoM
- entity: input_number.test_value_uom
name: custom padding
name: disabled
tap_action:
action: none
card_mod:
style: |
:host {
{% if is_state('input_boolean.test_boolean','on') %}
--mdc-text-field-ink-color: var(--disabled-text-color);
color: var(--disabled-text-color);
--mdc-text-field-idle-line-color: var(--disabled-text-color);
--paper-item-icon-color: var(--disabled-text-color);
--secondary-text-color: var(--disabled-text-color);
pointer-events: none;
{% endif %}
}
Short list of CSS variables available for âtextfieldâ control:
Colored value:
Styling is done like for "input-text"
entity row - check this description.
Colored background:
Styling is done like for "input-text"
entity row - check this description.
Aligned value:
Styling is done like for "input-text"
entity row - check this description.
Changing a width of the input field:
Styling is done like for "input-text"
entity row - check this description.
Colored underline:
Styling is done like for "input-text"
entity row - check this description.
Disabled control:
type: entities
title: Locked input_number
entities:
- entity: input_boolean.test_boolean
name: Lock input_number
- entity: input_number.test_number_2
tap_action:
action: none
card_mod:
style: |
:host {
{% if is_state('input_boolean.test_boolean','on') %}
--paper-item-icon-color: var(--disabled-text-color);
--paper-input-container-color: var(--disabled-text-color);
--paper-input-container-input-color: var(--disabled-text-color);
color: var(--disabled-text-color);
pointer-events: none;
{% endif %}
}
Also, you may remove color
options to make the row clearly visible but âread-onlyâ.
More examples are described here.
Hi!
I try all examples from this thread, but not work for me. I try change Badge icon color in HA Dark Theme, path for svg-icon:
/html/body/home-assistant//home-assistant-main//app-drawer-layout/partial-panel-resolver/ha-panel-lovelace//hui-root//ha-app-layout/div/hui-view/hui-masonry-view//div[1]/hui-state-label-badge[1]//ha-state-label-badge//ha-label-badge//div/div[1]/div/slot/ha-icon//ha-svg-icon
Any ideas?
Thanks!
PS:
This work without problem:
card_mod:
style: |
:host {
--label-badge-blue:
{% if is_state(config.entity, 'on') %}
var(--label-badge-red)
{% else %}
var(--label-badge-blue)
{% endif %};
}
Elaborate with context and your specific intent in order for us to help you.
Look at the 1st post, it contains a link to another post with many possible styles.
I want to change the color of the icon in the badge depending on the state of the sensors. I use default HA Dark theme.
Thanks, tried again today, it didnât work, did a cache cleanup and a hard reset in Chrome, it worked.
type: custom:auto-entities
card:
type: glance
title: Pollenvarsel i dag
entities: null
filter:
include:
- state: Medium
- state: Low
- state: High
exclude:
- entity_id: sensor.pollen_0*_tomorrow
options:
options:
style: |
:host {
--paper-item-icon-color:
{% if states(config.entity) | string == Medium}
orange
{% elif states(config.entity) | string == Low}
red
{% else %}
green
{% endif %}
;
}
What am i doing wrong here, the states are low, medium, high, i want to color the icons based on low, medium, high
Why it is written twice?
And why you are applying a style to the excluded entity?
The "options"
section must a part of each "include"
section.
Since you decided to list your entities as âfirst Medium, then Low, then Highâ, you should âhard-codeâ a corresponding style for each group.
no idea, its late, moved it to included, and removed the extra options, didnt solve it though