using the following yaml
Multiple entity row
type: entities
card_mod:
style: |
.card-content {
padding: 8px 8px 8px 0px;
}
entities:
- type: custom:multiple-entity-row
entity: weather.buienradar
card_mod:
style:
hui-generic-entity-row $: |
.info {
display: none;
}
.: |
.entities-row {
align-items: start !important;
width: 100%;
justify-content: space-evenly !important;
}
show_state: false
entities:
- entity: sensor.ws_5500_outdoor_temperature
name: Temp
- entity: sensor.buienradar_woensdrecht
attribute: windspeedBft
name: Kracht
unit: Bft
- entity: sensor.buienradar_woensdrecht
attribute: winddirection
name: Wind
- entity: sensor.ws_5500_relative_pressure
name: Lucht
- entity: sensor.ws_5500_rain_rate
name: Neerslag
- entity: sensor.ws_5500_uv_index
name: Uv
- entity: sensor.ws_5500_humidity
name: Vocht
No longer hides the info, probably because of yet to be found changes in core 2025.1 Frontend hui-generic-entity-row.
the Inspector DOM now is like this
and as you can see the relevant
card_mod:
style:
hui-generic-entity-row $: |
.info {
display: none;
}
is no longer applied, showing the Buienradar name
please help me find the correct syntax/element to set the display: none
to, ive looked at this too long now to see anything anymoreā¦
other than the same technique used in the camera card above, setting the mod on the entities card:
type: entities
card_mod:
style:
multiple-entity-row $:
hui-generic-entity-row $: |
.info {
display: none;
}
I am lost how to set it to the multiple-entity-row card itself
next, the
- type: custom:multiple-entity-row
entity: weather.buienradar
card_mod:
style: |
.entities-row {
align-items: start !important;
width: 100%;
justify-content: space-evenly !important;
}
is no longer being functional eitherā¦
Update
also setting it on the main entities card with:
multiple-entity-row:
$: |
.entities-row {
width: 100%;
justify-content: space-evenly !important;
}
totaling the full card_mod:
card_mod:
style:
.: |
.card-content {
padding: 8px 8px 8px 0px;
}
multiple-entity-row $:
hui-generic-entity-row $: |
.info {
display: none;
}
multiple-entity-row:
$: |
.entities-row {
width: 100%;
justify-content: space-evenly !important;
}
has the desired effect:
allowing me to slate do that in the Horizon stack
from
back to this again:
NOTE: the original yaml (hidden at the top of this post), is still functional when the row is in a fold-entity-rowā¦
so going forward, we need to apply 2 sets of mods for the same effect