Has anyone figured out a way to flip which side of the screen the sidebar column renders on with card_mod? Itās driving me crazy on the right
Hi:
Iām new to card-mod. All I want to do is turn my badge icon yellow if a binary sensor is on. I can get the boarder to work but I donāt the name of the resource that controls the icon. Here is my code.
- entity: binary_sensor.zcombo_system_heartbeat
icon: mdi:heart
name: ZCombo System Heartbeat
style: |
:host {
ha-svg-icon: {% if is_state('binary_sensor.zcombo_system_heartbeat', 'on') %} yellow {% else %} red {% endif %};
}
Thank you!
Read the first post of this thread, at the bottom of that post youāll find a link with many card-mod codes and examples. Also for badges:
I figured it out, thanks.
Is it possible with this tool to change the height for the graphics in the history page?
Ok, let us not think about a purpose of the styles - let us assume that you specified styles properly. In similar cases to combine ālong DOM pathā and āshort ha-card / :host pathā you need to do this:
card_mod:
style:
hui-generic-entity-row:
$: |
state-badge {
...
}
.: |
:host {
.....
}
Now regarding your particular styles.
Decreasing margin-right
is OK but I am not getting a reason for this code:
state-badge {
flex: 0 0 0px !important;
height: 35px;
line-height: 35px;
}
Regarding ādimmedā icon.
You cannot specify a ācard_mod
ā for each secondary entity as you did:
The correct code is (examples for the main icon & secondary icon):
- type: custom:multiple-entity-row
entity: light.virtual_light_1
card_mod:
style:
hui-generic-entity-row $ state-badge $: |
ha-state-icon {
filter: brightness(100%) !important;
}
hui-generic-entity-row .entities-row div.entity:nth-child(3) state-badge $: |
ha-state-icon {
filter: brightness(100%) !important;
}
entities:
- entity: sun.sun
icon: true
name: false
- entity: sun.sun
- entity: light.virtual_light_1
icon: true
name: false
- entity: sun.sun
show_state: false
I have a little experience with the custom:button-card
, cannot clarify.
But according to CSS (well, I am not a CSS expert tooā¦) this construction is not about blinking or wiggling or rotating etc - it is about āapply the xxxxxxxxxxxxx transformationā:
animation: xxxxxxxxxxxxx 2s ease infinite;
and in your particular case it is NOTHING since you have not specified any transformation.
I think you better use a markdown if you need a tap_action
.
There are 2 issues here:
- How to animate some icon?
- Which animation should be used and when?
As for the 1st issue:
See the 1st post ā link to a post in the bottom ā consolidated post ā find a post for multiple-entity-row
ā find a style āchange a color for some iconā.
Then replace this code with a code for animation (see it in other topics for animation in the same consolidated post).
As for the 2nd issue - it is quit difficult since it is not clear what you want:
- Show the animation while the door is opening (or closing).
- Show the animation when the door is opened or closed.
yeah, I replaced it. with a button card though.
- type: custom:button-card
name: Set Switches
template: button_default_title
variables:
path: home
hold_action:
action: navigate
navigation_path: >
[[[ return window.location.pathname.split('/')[2] == 'home'
? '/ui-data/summary_groups' : '/ui-overview/home'; ]]]
you cant see the difference
Great idea to have button templates for every case)))
this is it btw:
button_default_title:
tap_action:
action: none
styles:
card:
- background-color: var(--background-color-off)
- color: var(--text-color-off)
- font-size: 24px
- font-weight: 300
- letter-spacing: 0px
# - font-weight: bold
- padding-left: 16px
- padding-top: 8px
- padding-bottom: 8px
name:
- justify-self: left
I am using āyamlā mode for the main dashboards & āstorageā mode for test dashboards.
I have this in configuration.yaml:
frontend:
extra_module_url:
- /hacsfiles/lovelace-card-mod/card-mod.js
but also I see the card-mod
line inside the ālovelace_resourcesā file (ā.storageā folder) - have no idea how this line is added.
I remove this line via UI but some time after this line is added again - miracleā¦
would it be possible to card-mod the options in an auto-entities card?
- type: custom:auto-entities
card:
type: map
hours_to_show: 48
dark_mode: true
card_mod:
style: |
ha-card {
box-shadow: none;
}
where Iād like the dark_mode to be dependent on my dark themes. (note this is not the same as the modes: dark in themes, which simply make these themes respond to the mode the device is in.I dont use those modes, and like to be able to do something like this:
dark_mode: {{'true' if states('input_select.theme')|regex_search('(ight|Dark|Matrix)')
else 'false'}};
HACS adds it. Itās recommended to add it to configuration.yaml but if you use HACS it adds it to storage as well. Works fine except the annoying console error.
I think that HACS adds this line during the card-mod installation.
But if this line is removed then by me - not clear how it was restored.
Example for Entities card:
type: custom:auto-entities
card:
type: entities
title: device_trackers
show_empty: false
filter:
include:
- entity_id: device_tracker.*
options:
card_mod:
style: |
:host {
{% if is_state(config.entity,'home') %}
color: green;
{% else %}
color: red;
{% endif %}
}
sort:
count: 5
I do not understand how dark_mode & card_mod are related.
The templated dark_mode
cannot be added neither by ājinjia in card_modā nor by ājinjia in auto-entities::templateā - both variants work for each āentitiesā element and ādark_mode
ā is a card-wide option.
they arenāt probably, its a card config optionā¦ its a feature I would embrace to be more configurable: allow dark_mode for (all) maps to be set in theme Ā· home-assistant/frontend Ā· Discussion #11084 Ā· GitHub
would GitHub - gadgetchnnel/lovelace-card-templater: Custom Lovelace card which allows Jinja2 templates to be applied to other cards be an option maybe?
Any option in the original card which takes a string value can be templated by changing the option name to be option_name_template .
- type: custom:card-templater
card:
type: map
hours_to_show: 48
dark_mode_template: >
{{states('input_select.theme')|regex_search('(ight|Dark|Matrix)')}}
entities:
- person.me
doesnt work eitherā¦ all showing dark maps ;-(
but hey thereās always state-switch:
- type: custom:state-switch
entity: template
template: >
{{states('input_select.theme')|regex_search('(ight|Dark|Matrix)')}}
states:
true:
<<: &map
type: map
hours_to_show: 48
entities:
- person.me
dark_mode: true
false:
<<: *map
dark_mode: false
do note the documentation on the template in Thomasās repo is incorrect and it should be like above. See: State switch not working template Ā· Issue #65 Ā· thomasloven/lovelace-state-switch Ā· GitHub
I am facing this exact same challenge while trying to add margin to all cards on my dashboard.
Mod-card with margin works on vertical-stacks, but only on the sides of each card.
It also adds margin above the top card and below the bottom card, but not between the cards.
See my screenshot below for clarity.
Did you ever find a solution for this using card-mod? I will try the gap-card from layout-card next, but I would prefer to do it with just card-mod, without having to change each individual card.
you may use config-template-card as well
maybe off topic here, but given the fact my template outputs false/true, I wonder why the given config doesnt workā¦