yeah my bad, hit ctrl enter by accident, I fixed it!
you were close but you used the attribute selector for :not instead of the class selector
style:
multiple-entity-row:
$: |
state-badge:not(.icon-small) {
color: green;
}
Edit: you may have to actually use ha-icon with !important if something else is setting the color. (my test used lights, and the yellow was overriding the state-badge color when the lights were on)
style:
multiple-entity-row:
$:
state-badge:not(.icon-small):
$: |
ha-icon {
color: green !important;
}
I have a fairly complex card which includes an input_number
where the ānumber bubbleā overflows but is not visible:
Is there a way to apply a style to the ābubbleā such as overflow: visible
(which I thought was the default anyway?) or any other way to force the ābubbleā to be visible?
For obvious reasons I canāt see the ābubbleā element in the consoleā¦
Here is my code (Iām pretty sure this is new behaviour since the 112 update):
type: custom:mod-card
style: |
ha-card {
{% raw %}
{% set zone = {% endraw %} {{ zone }} {% raw %} %}
{% set zone_count = states('input_number.irrigation_number_of_zones') %}
{% if (zone_count | int) < (zone | int) %}
display: none;
{% else %}
border: 1px solid var(--primary-background-color);
{% endif %}
{% endraw %}
}
card:
type: vertical-stack
cards:
- type: horizontal-stack
cards:
- type: custom:config-template-card
variables:
- states['input_text.irrigation_zone{{ zone }}_name'].state
- states['input_text.irrigation_cycle{{ cycle }}_name'].state
- states['timer.irrigation_zone{{ zone }}_timer'].state
entities:
- input_text.irrigation_zone{{ zone }}_name
- input_number.irrigation_cycle{{ cycle }}_zone{{ zone }}_duration
- timer.irrigation_zone{{ zone }}_timer
card:
type: entities
entities:
- entity: input_number.irrigation_cycle{{ cycle }}_zone{{ zone }}_duration
name: "${ vars[0] }"
icon: "${ vars[2] === 'active' ? 'mdi:sprinkler-variant' : '' }"
style: |
ha-card {
box-shadow: none;
background: none;
}
#states {
{% raw %}
{% set font = states('input_text.irrigation_ui_font_family') %}
{% endraw %}
font-family: {% raw %}{{ font }}{% endraw %};
font-size: 16px;
padding: 0.25em 0.75em 0.25em 0.25em;
}
:host {
{% raw %}
{% set zone = {% endraw %} {{ zone }} {% raw %} %}
{% if is_state('timer.irrigation_zone' ~ zone ~ '_timer', 'active') %}
--paper-item-icon-color: var(--paper-item-icon-active-color);
{% endif %}
{% endraw %}
;
}
#=== Every Day
- !include
- item_cycle_zone_every_day_check_box.yaml
- entity: input_boolean.irrigation_cycle{{ cycle }}_zone{{ zone }}_every_day
Would someone mind helping me with the required style syntax for adjusting the grid margin values in the layout below please?
I have the following button layout where Iād like to reduce the gap between each button.
If I look at the console to inspect CSS layout, I can see the following margin information:
Which is linked to the following:
When I click on that element, it shows this around the buttons:
I just donāt know how to translate that into the syntax for style, so any advice would be very welcome please!
My yaml is as follows:
- type: vertical-stack
cards:
- type: custom:layout-card
layout: grid
gridrows: 50% 50%
gridcols: 15% 35% 15% 35%
gridgap: 1px
cards:
- type: "custom:button-card"
entity: light.test
gridrow: 1 / 3
gridcol: 1 / 1
style: "ha-card { height: 100%; }"
- type: "custom:button-card"
entity: light.test
gridrow: 1 / 1
gridcol: 2 / 2
style: "ha-card { height: 55px; }"
- type: "custom:button-card"
entity: light.test
gridrow: 2 / 2
gridcol: 2 / 2
style: "ha-card { height: 55px; }"
- type: "custom:button-card"
entity: light.test
gridrow: 1 / 3
gridcol: 3 / 3
style: "ha-card { height: 100%; }"
- type: "custom:button-card"
entity: light.test
gridrow: 1 / 1
gridcol: 4 / 4
style: "ha-card { height: 55px; }"
- type: "custom:button-card"
entity: light.test
gridrow: 2 / 2
gridcol: 4 / 4
style: "ha-card { height: 55px; }"
Thanks for your help! your example didnāt work at first but with a little bit of tinkering I found this solution at the end:
- entity: input_number.turflijst_duikboot_pils
type: custom:multiple-entity-row
name: test
secondary_info: last-changed
show_state: false
icon: mdi:cart
debug_cardmod: true
style:
.:
"state-badge:not(.icon-small)":
$:
"ha-icon":
$: |
ha-svg-icon {
color: green;
}
CARD-MOD 2.0 has just been released
To be honest, this may be too earlyā¦ but I just couldnāt wait! Itās too awesome!
Remember how this thread started with me saying ānot a custom:
in sight.ā because you didnāt have to do type: custom:card-modder
(or type custom:mod-card
!) ever again?
Well, now Iām doing away with style:
too.
All styles can now be moved over to your theme
and be applied to everything at once. Or just a view, or just a card - itās your choice!
Styling via styles still works, of course, and you can even use both methods at once.
Since I was so eager to release this, thereās absolutely no documentation yet. But I included two demo themes.
Airy:
and Art-nouveau:
To try them out. Install them as per the link above, then install card-mod 2.0 and select the theme in your user settings. You wonāt need to do anything else.
To just try it out, you can also try running my test docker containers.
Assuming you have git and docker installed and know your way around them somewhat:
- clone the entire repository
- go to the test directory
- run
docker-compose up prod
- point your browser to
http://localhost:5001
- log in using user:
dev
password:dev
This is super cool, appreciate your work Thomas!
Looks like a great improvement. Iām not yet clear on how I apply different card mod styles per existing theme though.
I have a main card style that I apply everywhere - except for where a card is a row item in an entities card, they get a different transparent style to blend in with the main card.
This happens for both my day and night theme.
Will keep digging in the theme files and see if I can work it out.
I realize it can be tricky to understand whatās going on. I will update the documentation soon - but I need some rest first.
The basics is that you have some new theme variables, card-mod-{thing}
where thing
can be e.g. card
, row
, glance
ā¦ and thatās where you put what youād earlier put in style:
.
Itās important that the variable values are strings, so the |
is absolutely vital.
E.g:
card-mod-card: |
ha-card {
background: red;
}
card-mod-row: |
:host {
background: blue;
}
Edit:
Oh! And card-mod now adds a class to every card depending on itās type, and lets the user add more.
So e.g.
card-mod-card: |
ha-card {
background: purple;
}
ha-card.type-button {
background: teal;
}
ha-card.pink {
background: pink;
}
Would make all cards purple except buttons, which would be teal, and cards where the user has specified:
type: entities
class: pink
entities:
- light.bed_light
which would be pink.
My UI is so much faster now! I noticed on iPhone (official app) that markdown card was loading slower. Icons were there, but not the markdowns. Now all is instant.
Hey all, hoping to get some help in this thread. I have a dropdown list but the is there a way to align it better and keep it in the card when it comes to width? I have CSS styling options but just donāt know what to style
Hmmm I donāt know is it just me orā¦After updating to 2.0.0 version from 14 when entering HA address web page freezes for a couple of seconds. Iāve just installled back 14 version and the freeze is gone. In my java script console all I see is:
Uncaught (in promise) TypeError: Object(...)()._addCard is not a function
but it is an error from card-tools and I have as in 2 version as in 14. ANy ideas what might be the problem? I tested in latest firefox and in Edge so I guess Chrome is also affected by thisā¦
Is this just me or? Core in a Venv on ubuntuā¦:
it seems to work, but tons, and tons of errorsā¦ they keep on going as I change views to.
This is a sample after selecting the theme and then clicking the default view:
I can open an issue on github if neededā¦
Jul 23 13:37:34 server hass[18523]: 2020-07-23 13:37:34 ERROR (MainThread) [homeassistant.components.websocket_api.http.connection.140458933657040] Error handling message: Unknown error
Jul 23 13:37:34 server hass[18523]: Traceback (most recent call last):
Jul 23 13:37:34 server hass[18523]: File "/home/ctrl/ha/lib/python3.7/site-packages/homeassistant/helpers/template.py", line 229, in async_render
Jul 23 13:37:34 server hass[18523]: return compiled.render(kwargs).strip()
Jul 23 13:37:34 server hass[18523]: File "/home/ctrl/ha/lib/python3.7/site-packages/jinja2/environment.py", line 1045, in render
Jul 23 13:37:34 server hass[18523]: self.environment.handle_exception()
Jul 23 13:37:34 server hass[18523]: File "/home/ctrl/ha/lib/python3.7/site-packages/jinja2/environment.py", line 787, in handle_exception
Jul 23 13:37:34 server hass[18523]: raise rewrite_traceback_stack(source=source)
Jul 23 13:37:34 server hass[18523]: File "<template>", line 3, in top-level template code
Jul 23 13:37:34 server hass[18523]: File "/home/ctrl/ha/lib/python3.7/site-packages/jinja2/sandbox.py", line 412, in call
Jul 23 13:37:34 server hass[18523]: return __context.call(__obj, *args, **kwargs)
Jul 23 13:37:34 server hass[18523]: File "/home/ctrl/ha/lib/python3.7/site-packages/homeassistant/helpers/template.py", line 366, in __call__
Jul 23 13:37:34 server hass[18523]: state = _get_state(self._hass, entity_id)
Jul 23 13:37:34 server hass[18523]: File "/home/ctrl/ha/lib/python3.7/site-packages/homeassistant/helpers/template.py", line 480, in _get_state
Jul 23 13:37:34 server hass[18523]: state = hass.states.get(entity_id)
Jul 23 13:37:34 server hass[18523]: File "/home/ctrl/ha/lib/python3.7/site-packages/homeassistant/core.py", line 885, in get
Jul 23 13:37:34 server hass[18523]: return self._states.get(entity_id.lower())
Jul 23 13:37:34 server hass[18523]: jinja2.exceptions.UndefinedError: 'dict object' has no attribute 'entity'
Jul 23 13:37:34 server hass[18523]: During handling of the above exception, another exception occurred:
Jul 23 13:37:34 server hass[18523]: Traceback (most recent call last):
Jul 23 13:37:34 server hass[18523]: File "/home/ctrl/ha/lib/python3.7/site-packages/homeassistant/components/websocket_api/connection.py", line 95, in async_handle
Jul 23 13:37:34 server hass[18523]: handler(self.hass, self, schema(msg))
Jul 23 13:37:34 server hass[18523]: File "/home/ctrl/ha/lib/python3.7/site-packages/homeassistant/components/websocket_api/commands.py", line 265, in handle_render_template
Jul 23 13:37:34 server hass[18523]: state_listener()
Jul 23 13:37:34 server hass[18523]: File "/home/ctrl/ha/lib/python3.7/site-packages/homeassistant/components/websocket_api/commands.py", line 253, in state_listener
Jul 23 13:37:34 server hass[18523]: msg["id"], {"result": template.async_render(variables)}
Jul 23 13:37:34 server hass[18523]: File "/home/ctrl/ha/lib/python3.7/site-packages/homeassistant/helpers/template.py", line 231, in async_render
Jul 23 13:37:34 server hass[18523]: raise TemplateError(err)
Jul 23 13:37:34 server hass[18523]: homeassistant.exceptions.TemplateError: UndefinedError: 'dict object' has no attribute 'entity'
Jul 23 13:37:34 server hass[18523]: 2020-07-23 13:37:34 ERROR (MainThread) [homeassistant.components.websocket_api.http.connection.140458933657040] Error handling message: Unknown error
Jul 23 13:37:34 server hass[18523]: Traceback (most recent call last):
Jul 23 13:37:34 server hass[18523]: File "/home/ctrl/ha/lib/python3.7/site-packages/homeassistant/helpers/template.py", line 229, in async_render
Jul 23 13:37:34 server hass[18523]: return compiled.render(kwargs).strip()
Jul 23 13:37:34 server hass[18523]: File "/home/ctrl/ha/lib/python3.7/site-packages/jinja2/environment.py", line 1045, in render
Jul 23 13:37:34 server hass[18523]: self.environment.handle_exception()
Jul 23 13:37:34 server hass[18523]: File "/home/ctrl/ha/lib/python3.7/site-packages/jinja2/environment.py", line 787, in handle_exception
Jul 23 13:37:34 server hass[18523]: raise rewrite_traceback_stack(source=source)
Jul 23 13:37:34 server hass[18523]: File "<template>", line 3, in top-level template code
Jul 23 13:37:34 server hass[18523]: File "/home/ctrl/ha/lib/python3.7/site-packages/jinja2/sandbox.py", line 412, in call
Jul 23 13:37:34 server hass[18523]: return __context.call(__obj, *args, **kwargs)
Jul 23 13:37:34 server hass[18523]: File "/home/ctrl/ha/lib/python3.7/site-packages/homeassistant/helpers/template.py", line 366, in __call__
Jul 23 13:37:34 server hass[18523]: state = _get_state(self._hass, entity_id)
Jul 23 13:37:34 server hass[18523]: File "/home/ctrl/ha/lib/python3.7/site-packages/homeassistant/helpers/template.py", line 480, in _get_state
Jul 23 13:37:34 server hass[18523]: state = hass.states.get(entity_id)
Jul 23 13:37:34 server hass[18523]: File "/home/ctrl/ha/lib/python3.7/site-packages/homeassistant/core.py", line 885, in get
Jul 23 13:37:34 server hass[18523]: return self._states.get(entity_id.lower())
Jul 23 13:37:34 server hass[18523]: jinja2.exceptions.UndefinedError: 'dict object' has no attribute 'entity'
Jul 23 13:37:34 server hass[18523]: During handling of the above exception, another exception occurred:
Jul 23 13:37:34 server hass[18523]: Traceback (most recent call last):
Jul 23 13:37:34 server hass[18523]: File "/home/ctrl/ha/lib/python3.7/site-packages/homeassistant/components/websocket_api/connection.py", line 95, in async_handle
Jul 23 13:37:34 server hass[18523]: handler(self.hass, self, schema(msg))
Jul 23 13:37:34 server hass[18523]: File "/home/ctrl/ha/lib/python3.7/site-packages/homeassistant/components/websocket_api/commands.py", line 265, in handle_render_template
Jul 23 13:37:34 server hass[18523]: state_listener()
Jul 23 13:37:34 server hass[18523]: File "/home/ctrl/ha/lib/python3.7/site-packages/homeassistant/components/websocket_api/commands.py", line 253, in state_listener
Jul 23 13:37:34 server hass[18523]: msg["id"], {"result": template.async_render(variables)}
Jul 23 13:37:34 server hass[18523]: File "/home/ctrl/ha/lib/python3.7/site-packages/homeassistant/helpers/template.py", line 231, in async_render
Jul 23 13:37:34 server hass[18523]: raise TemplateError(err)
Jul 23 13:37:34 server hass[18523]: homeassistant.exceptions.TemplateError: UndefinedError: 'dict object' has no attribute 'entity'
Jul 23 13:37:34 server hass[18523]: 2020-07-23 13:37:34 ERROR (MainThread) [homeassistant.components.websocket_api.http.connection.140458933657040] Error handling message: Unknown error
Jul 23 13:37:34 server hass[18523]: Traceback (most recent call last):
Jul 23 13:37:34 server hass[18523]: File "/home/ctrl/ha/lib/python3.7/site-packages/homeassistant/helpers/template.py", line 229, in async_render
Jul 23 13:37:34 server hass[18523]: return compiled.render(kwargs).strip()
Jul 23 13:37:34 server hass[18523]: File "/home/ctrl/ha/lib/python3.7/site-packages/jinja2/environment.py", line 1045, in render
Jul 23 13:37:34 server hass[18523]: self.environment.handle_exception()
Jul 23 13:37:34 server hass[18523]: File "/home/ctrl/ha/lib/python3.7/site-packages/jinja2/environment.py", line 787, in handle_exception
Jul 23 13:37:34 server hass[18523]: raise rewrite_traceback_stack(source=source)
Jul 23 13:37:34 server hass[18523]: File "<template>", line 3, in top-level template code
Jul 23 13:37:34 server hass[18523]: File "/home/ctrl/ha/lib/python3.7/site-packages/jinja2/sandbox.py", line 412, in call
Jul 23 13:37:34 server hass[18523]: return __context.call(__obj, *args, **kwargs)
Jul 23 13:37:34 server hass[18523]: File "/home/ctrl/ha/lib/python3.7/site-packages/homeassistant/helpers/template.py", line 366, in __call__
Jul 23 13:37:34 server hass[18523]: state = _get_state(self._hass, entity_id)
Jul 23 13:37:34 server hass[18523]: File "/home/ctrl/ha/lib/python3.7/site-packages/homeassistant/helpers/template.py", line 480, in _get_state
Jul 23 13:37:34 server hass[18523]: state = hass.states.get(entity_id)
Jul 23 13:37:34 server hass[18523]: File "/home/ctrl/ha/lib/python3.7/site-packages/homeassistant/core.py", line 885, in get
Jul 23 13:37:34 server hass[18523]: return self._states.get(entity_id.lower())
Jul 23 13:37:34 server hass[18523]: jinja2.exceptions.UndefinedError: 'dict object' has no attribute 'entity'
Jul 23 13:37:34 server hass[18523]: During handling of the above exception, another exception occurred:
Jul 23 13:37:34 server hass[18523]: Traceback (most recent call last):
Jul 23 13:37:34 server hass[18523]: File "/home/ctrl/ha/lib/python3.7/site-packages/homeassistant/components/websocket_api/connection.py", line 95, in async_handle
Jul 23 13:37:34 server hass[18523]: handler(self.hass, self, schema(msg))
Jul 23 13:37:34 server hass[18523]: File "/home/ctrl/ha/lib/python3.7/site-packages/homeassistant/components/websocket_api/commands.py", line 265, in handle_render_template
Jul 23 13:37:34 server hass[18523]: state_listener()
Jul 23 13:37:34 server hass[18523]: File "/home/ctrl/ha/lib/python3.7/site-packages/homeassistant/components/websocket_api/commands.py", line 253, in state_listener
Jul 23 13:37:34 server hass[18523]: msg["id"], {"result": template.async_render(variables)}
Jul 23 13:37:34 server hass[18523]: File "/home/ctrl/ha/lib/python3.7/site-packages/homeassistant/helpers/template.py", line 231, in async_render
Jul 23 13:37:34 server hass[18523]: raise TemplateError(err)
Jul 23 13:37:34 server hass[18523]: homeassistant.exceptions.TemplateError: UndefinedError: 'dict object' has no attribute 'entity'
Jul 23 13:37:34 server hass[18523]: 2020-07-23 13:37:34 ERROR (MainThread) [homeassistant.components.websocket_api.http.connection.140458933657040] Error handling message: Unknown error
Jul 23 13:37:34 server hass[18523]: Traceback (most recent call last):
Jul 23 13:37:34 server hass[18523]: File "/home/ctrl/ha/lib/python3.7/site-packages/homeassistant/helpers/template.py", line 229, in async_render
Jul 23 13:37:34 server hass[18523]: return compiled.render(kwargs).strip()
Jul 23 13:37:34 server hass[18523]: File "/home/ctrl/ha/lib/python3.7/site-packages/jinja2/environment.py", line 1045, in render
Jul 23 13:37:34 server hass[18523]: self.environment.handle_exception()
Jul 23 13:37:34 server hass[18523]: File "/home/ctrl/ha/lib/python3.7/site-packages/jinja2/environment.py", line 787, in handle_exception
Jul 23 13:37:34 server hass[18523]: raise rewrite_traceback_stack(source=source)
Jul 23 13:37:34 server hass[18523]: File "<template>", line 3, in top-level template code
Jul 23 13:37:34 server hass[18523]: File "/home/ctrl/ha/lib/python3.7/site-packages/jinja2/sandbox.py", line 412, in call
Jul 23 13:37:34 server hass[18523]: return __context.call(__obj, *args, **kwargs)
Jul 23 13:37:34 server hass[18523]: File "/home/ctrl/ha/lib/python3.7/site-packages/homeassistant/helpers/template.py", line 366, in __call__
Jul 23 13:37:34 server hass[18523]: state = _get_state(self._hass, entity_id)
Jul 23 13:37:34 server hass[18523]: File "/home/ctrl/ha/lib/python3.7/site-packages/homeassistant/helpers/template.py", line 480, in _get_state
Jul 23 13:37:34 server hass[18523]: state = hass.states.get(entity_id)
Jul 23 13:37:34 server hass[18523]: File "/home/ctrl/ha/lib/python3.7/site-packages/homeassistant/core.py", line 885, in get
Jul 23 13:37:34 server hass[18523]: return self._states.get(entity_id.lower())
Jul 23 13:37:34 server hass[18523]: jinja2.exceptions.UndefinedError: 'dict object' has no attribute 'entity'
Jul 23 13:37:34 server hass[18523]: During handling of the above exception, another exception occurred:
Jul 23 13:37:34 server hass[18523]: Traceback (most recent call last):
Jul 23 13:37:34 server hass[18523]: File "/home/ctrl/ha/lib/python3.7/site-packages/homeassistant/components/websocket_api/connection.py", line 95, in async_handle
Jul 23 13:37:34 server hass[18523]: handler(self.hass, self, schema(msg))
Jul 23 13:37:34 server hass[18523]: File "/home/ctrl/ha/lib/python3.7/site-packages/homeassistant/components/websocket_api/commands.py", line 265, in handle_render_template
Jul 23 13:37:34 server hass[18523]: state_listener()
Jul 23 13:37:34 server hass[18523]: File "/home/ctrl/ha/lib/python3.7/site-packages/homeassistant/components/websocket_api/commands.py", line 253, in state_listener
Jul 23 13:37:34 server hass[18523]: msg["id"], {"result": template.async_render(variables)}
Jul 23 13:37:34 server hass[18523]: File "/home/ctrl/ha/lib/python3.7/site-packages/homeassistant/helpers/template.py", line 231, in async_render
Jul 23 13:37:34 server hass[18523]: raise TemplateError(err)
Jul 23 13:37:34 server hass[18523]: homeassistant.exceptions.TemplateError: UndefinedError: 'dict object' has no attribute 'entity'
Jul 23 13:37:34 server hass[18523]: 2020-07-23 13:37:34 ERROR (MainThread) [homeassistant.components.websocket_api.http.connection.140458933657040] Error handling message: Unknown error
Jul 23 13:37:34 server hass[18523]: Traceback (most recent call last):
Jul 23 13:37:34 server hass[18523]: File "/home/ctrl/ha/lib/python3.7/site-packages/homeassistant/helpers/template.py", line 229, in async_render
Jul 23 13:37:34 server hass[18523]: return compiled.render(kwargs).strip()
Jul 23 13:37:34 server hass[18523]: File "/home/ctrl/ha/lib/python3.7/site-packages/jinja2/environment.py", line 1045, in render
Jul 23 13:37:34 server hass[18523]: self.environment.handle_exception()
Jul 23 13:37:34 server hass[18523]: File "/home/ctrl/ha/lib/python3.7/site-packages/jinja2/environment.py", line 787, in handle_exception
Jul 23 13:37:34 server hass[18523]: raise rewrite_traceback_stack(source=source)
Jul 23 13:37:34 server hass[18523]: File "<template>", line 3, in top-level template code
Jul 23 13:37:34 server hass[18523]: File "/home/ctrl/ha/lib/python3.7/site-packages/jinja2/sandbox.py", line 412, in call
Jul 23 13:37:34 server hass[18523]: return __context.call(__obj, *args, **kwargs)
Jul 23 13:37:34 server hass[18523]: File "/home/ctrl/ha/lib/python3.7/site-packages/homeassistant/helpers/template.py", line 366, in __call__
Jul 23 13:37:34 server hass[18523]: state = _get_state(self._hass, entity_id)
Jul 23 13:37:34 server hass[18523]: File "/home/ctrl/ha/lib/python3.7/site-packages/homeassistant/helpers/template.py", line 480, in _get_state
Jul 23 13:37:34 server hass[18523]: state = hass.states.get(entity_id)
Jul 23 13:37:34 server hass[18523]: File "/home/ctrl/ha/lib/python3.7/site-packages/homeassistant/core.py", line 885, in get
Jul 23 13:37:34 server hass[18523]: return self._states.get(entity_id.lower())
Jul 23 13:37:34 server hass[18523]: jinja2.exceptions.UndefinedError: 'dict object' has no attribute 'entity'
Jul 23 13:37:34 server hass[18523]: During handling of the above exception, another exception occurred:
Jul 23 13:37:34 server hass[18523]: Traceback (most recent call last):
Jul 23 13:37:34 server hass[18523]: File "/home/ctrl/ha/lib/python3.7/site-packages/homeassistant/components/websocket_api/connection.py", line 95, in async_handle
Jul 23 13:37:34 server hass[18523]: handler(self.hass, self, schema(msg))
Jul 23 13:37:34 server hass[18523]: File "/home/ctrl/ha/lib/python3.7/site-packages/homeassistant/components/websocket_api/commands.py", line 265, in handle_render_template
Jul 23 13:37:34 server hass[18523]: state_listener()
Jul 23 13:37:34 server hass[18523]: File "/home/ctrl/ha/lib/python3.7/site-packages/homeassistant/components/websocket_api/commands.py", line 253, in state_listener
Jul 23 13:37:34 server hass[18523]: msg["id"], {"result": template.async_render(variables)}
Jul 23 13:37:34 server hass[18523]: File "/home/ctrl/ha/lib/python3.7/site-packages/homeassistant/helpers/template.py", line 231, in async_render
Jul 23 13:37:34 server hass[18523]: raise TemplateError(err)
Jul 23 13:37:34 server hass[18523]: homeassistant.exceptions.TemplateError: UndefinedError: 'dict object' has no attribute 'entity'
Jul 23 13:37:34 server hass[18523]: 2020-07-23 13:37:34 ERROR (MainThread) [homeassistant.components.websocket_api.http.connection.140458933657040] Error handling message: Unknown error
Jul 23 13:37:34 server hass[18523]: Traceback (most recent call last):
Jul 23 13:37:34 server hass[18523]: File "/home/ctrl/ha/lib/python3.7/site-packages/homeassistant/helpers/template.py", line 229, in async_render
Jul 23 13:37:34 server hass[18523]: return compiled.render(kwargs).strip()
Jul 23 13:37:34 server hass[18523]: File "/home/ctrl/ha/lib/python3.7/site-packages/jinja2/environment.py", line 1045, in render
Jul 23 13:37:34 server hass[18523]: self.environment.handle_exception()
Jul 23 13:37:34 server hass[18523]: File "/home/ctrl/ha/lib/python3.7/site-packages/jinja2/environment.py", line 787, in handle_exception
Jul 23 13:37:34 server hass[18523]: raise rewrite_traceback_stack(source=source)
Jul 23 13:37:34 server hass[18523]: File "<template>", line 3, in top-level template code
Jul 23 13:37:34 server hass[18523]: File "/home/ctrl/ha/lib/python3.7/site-packages/jinja2/sandbox.py", line 412, in call
Jul 23 13:37:34 server hass[18523]: return __context.call(__obj, *args, **kwargs)
Jul 23 13:37:34 server hass[18523]: File "/home/ctrl/ha/lib/python3.7/site-packages/homeassistant/helpers/template.py", line 366, in __call__
Jul 23 13:37:34 server hass[18523]: state = _get_state(self._hass, entity_id)
Jul 23 13:37:34 server hass[18523]: File "/home/ctrl/ha/lib/python3.7/site-packages/homeassistant/helpers/template.py", line 480, in _get_state
Jul 23 13:37:34 server hass[18523]: state = hass.states.get(entity_id)
Jul 23 13:37:34 server hass[18523]: File "/home/ctrl/ha/lib/python3.7/site-packages/homeassistant/core.py", line 885, in get
Jul 23 13:37:34 server hass[18523]: return self._states.get(entity_id.lower())
Jul 23 13:37:34 server hass[18523]: jinja2.exceptions.UndefinedError: 'dict object' has no attribute 'entity'
Jul 23 13:37:34 server hass[18523]: During handling of the above exception, another exception occurred:
Jul 23 13:37:34 server hass[18523]: Traceback (most recent call last):
Jul 23 13:37:34 server hass[18523]: File "/home/ctrl/ha/lib/python3.7/site-packages/homeassistant/components/websocket_api/connection.py", line 95, in async_handle
Jul 23 13:37:34 server hass[18523]: handler(self.hass, self, schema(msg))
Jul 23 13:37:34 server hass[18523]: File "/home/ctrl/ha/lib/python3.7/site-packages/homeassistant/components/websocket_api/commands.py", line 265, in handle_render_template
Jul 23 13:37:34 server hass[18523]: state_listener()
Jul 23 13:37:34 server hass[18523]: File "/home/ctrl/ha/lib/python3.7/site-packages/homeassistant/components/websocket_api/commands.py", line 253, in state_listener
Jul 23 13:37:34 server hass[18523]: msg["id"], {"result": template.async_render(variables)}
Jul 23 13:37:34 server hass[18523]: File "/home/ctrl/ha/lib/python3.7/site-packages/homeassistant/helpers/template.py", line 231, in async_render
Jul 23 13:37:34 server hass[18523]: raise TemplateError(err)
Jul 23 13:37:34 server hass[18523]: homeassistant.exceptions.TemplateError: UndefinedError: 'dict object' has no attribute 'entity'
Jul 23 13:37:35 server hass[18523]: 2020-07-23 13:37:34 ERROR (MainThread) [homeassistant.components.websocket_api.http.connection.140458933657040] Error handling message: Unknown error
Jul 23 13:37:35 server hass[18523]: Traceback (most recent call last):
Jul 23 13:37:35 server hass[18523]: File "/home/ctrl/ha/lib/python3.7/site-packages/homeassistant/helpers/template.py", line 229, in async_render
Jul 23 13:37:35 server hass[18523]: return compiled.render(kwargs).strip()
Jul 23 13:37:35 server hass[18523]: File "/home/ctrl/ha/lib/python3.7/site-packages/jinja2/environment.py", line 1045, in render
Jul 23 13:37:35 server hass[18523]: self.environment.handle_exception()
Jul 23 13:37:35 server hass[18523]: File "/home/ctrl/ha/lib/python3.7/site-packages/jinja2/environment.py", line 787, in handle_exception
Jul 23 13:37:35 server hass[18523]: raise rewrite_traceback_stack(source=source)
Jul 23 13:37:35 server hass[18523]: File "<template>", line 3, in top-level template code
Jul 23 13:37:35 server hass[18523]: File "/home/ctrl/ha/lib/python3.7/site-packages/jinja2/sandbox.py", line 412, in call
Jul 23 13:37:35 server hass[18523]: return __context.call(__obj, *args, **kwargs)
Jul 23 13:37:35 server hass[18523]: File "/home/ctrl/ha/lib/python3.7/site-packages/homeassistant/helpers/template.py", line 366, in __call__
Jul 23 13:37:35 server hass[18523]: state = _get_state(self._hass, entity_id)
Jul 23 13:37:35 server hass[18523]: File "/home/ctrl/ha/lib/python3.7/site-packages/homeassistant/helpers/template.py", line 480, in _get_state
Jul 23 13:37:35 server hass[18523]: state = hass.states.get(entity_id)
Jul 23 13:37:35 server hass[18523]: File "/home/ctrl/ha/lib/python3.7/site-packages/homeassistant/core.py", line 885, in get
Jul 23 13:37:35 server hass[18523]: return self._states.get(entity_id.lower())
Jul 23 13:37:35 server hass[18523]: jinja2.exceptions.UndefinedError: 'dict object' has no attribute 'entity'
Jul 23 13:37:35 server hass[18523]: During handling of the above exception, another exception occurred:
Jul 23 13:37:35 server hass[18523]: Traceback (most recent call last):
Jul 23 13:37:35 server hass[18523]: File "/home/ctrl/ha/lib/python3.7/site-packages/homeassistant/components/websocket_api/connection.py", line 95, in async_handle
Jul 23 13:37:35 server hass[18523]: handler(self.hass, self, schema(msg))
Jul 23 13:37:35 server hass[18523]: File "/home/ctrl/ha/lib/python3.7/site-packages/homeassistant/components/websocket_api/commands.py", line 265, in handle_render_template
Jul 23 13:37:35 server hass[18523]: state_listener()
Jul 23 13:37:35 server hass[18523]: File "/home/ctrl/ha/lib/python3.7/site-packages/homeassistant/components/websocket_api/commands.py", line 253, in state_listener
Jul 23 13:37:35 server hass[18523]: msg["id"], {"result": template.async_render(variables)}
Jul 23 13:37:35 server hass[18523]: File "/home/ctrl/ha/lib/python3.7/site-packages/homeassistant/helpers/template.py", line 231, in async_render
Jul 23 13:37:35 server hass[18523]: raise TemplateError(err)
Jul 23 13:37:35 server hass[18523]: homeassistant.exceptions.TemplateError: UndefinedError: 'dict object' has no attribute 'entity'
Jul 23 13:37:35 server hass[18523]: 2020-07-23 13:37:34 ERROR (MainThread) [homeassistant.components.websocket_api.http.connection.140458933657040] Error handling message: Unknown error
Jul 23 13:37:35 server hass[18523]: Traceback (most recent call last):
Jul 23 13:37:35 server hass[18523]: File "/home/ctrl/ha/lib/python3.7/site-packages/homeassistant/helpers/template.py", line 229, in async_render
Jul 23 13:37:35 server hass[18523]: return compiled.render(kwargs).strip()
Jul 23 13:37:35 server hass[18523]: File "/home/ctrl/ha/lib/python3.7/site-packages/jinja2/environment.py", line 1045, in render
Jul 23 13:37:35 server hass[18523]: self.environment.handle_exception()
Jul 23 13:37:35 server hass[18523]: File "/home/ctrl/ha/lib/python3.7/site-packages/jinja2/environment.py", line 787, in handle_exception
Jul 23 13:37:35 server hass[18523]: raise rewrite_traceback_stack(source=source)
Jul 23 13:37:35 server hass[18523]: File "<template>", line 3, in top-level template code
Jul 23 13:37:35 server hass[18523]: File "/home/ctrl/ha/lib/python3.7/site-packages/jinja2/sandbox.py", line 412, in call
Jul 23 13:37:35 server hass[18523]: return __context.call(__obj, *args, **kwargs)
Jul 23 13:37:35 server hass[18523]: File "/home/ctrl/ha/lib/python3.7/site-packages/homeassistant/helpers/template.py", line 366, in __call__
Jul 23 13:37:35 server hass[18523]: state = _get_state(self._hass, entity_id)
Jul 23 13:37:35 server hass[18523]: File "/home/ctrl/ha/lib/python3.7/site-packages/homeassistant/helpers/template.py", line 480, in _get_state
Jul 23 13:37:35 server hass[18523]: state = hass.states.get(entity_id)
Jul 23 13:37:35 server hass[18523]: File "/home/ctrl/ha/lib/python3.7/site-packages/homeassistant/core.py", line 885, in get
Jul 23 13:37:35 server hass[18523]: return self._states.get(entity_id.lower())
Jul 23 13:37:35 server hass[18523]: jinja2.exceptions.UndefinedError: 'dict object' has no attribute 'entity'
Jul 23 13:37:35 server hass[18523]: During handling of the above exception, another exception occurred:
Jul 23 13:37:35 server hass[18523]: Traceback (most recent call last):
Jul 23 13:37:35 server hass[18523]: File "/home/ctrl/ha/lib/python3.7/site-packages/homeassistant/components/websocket_api/connection.py", line 95, in async_handle
Jul 23 13:37:35 server hass[18523]: handler(self.hass, self, schema(msg))
Jul 23 13:37:35 server hass[18523]: File "/home/ctrl/ha/lib/python3.7/site-packages/homeassistant/components/websocket_api/commands.py", line 265, in handle_render_template
Jul 23 13:37:35 server hass[18523]: state_listener()
Jul 23 13:37:35 server hass[18523]: File "/home/ctrl/ha/lib/python3.7/site-packages/homeassistant/components/websocket_api/commands.py", line 253, in state_listener
Jul 23 13:37:35 server hass[18523]: msg["id"], {"result": template.async_render(variables)}
Jul 23 13:37:35 server hass[18523]: File "/home/ctrl/ha/lib/python3.7/site-packages/homeassistant/helpers/template.py", line 231, in async_render
Jul 23 13:37:35 server hass[18523]: raise TemplateError(err)
Jul 23 13:37:35 server hass[18523]: homeassistant.exceptions.TemplateError: UndefinedError: 'dict object' has no attribute 'entity'
Jul 23 13:37:35 server hass[18523]: 2020-07-23 13:37:35 ERROR (MainThread) [homeassistant.components.websocket_api.http.connection.140458933657040] Error handling message: Unknown error
Jul 23 13:37:35 server hass[18523]: Traceback (most recent call last):
Jul 23 13:37:35 server hass[18523]: File "/home/ctrl/ha/lib/python3.7/site-packages/homeassistant/helpers/template.py", line 229, in async_render
Jul 23 13:37:35 server hass[18523]: return compiled.render(kwargs).strip()
Jul 23 13:37:35 server hass[18523]: File "/home/ctrl/ha/lib/python3.7/site-packages/jinja2/environment.py", line 1045, in render
Jul 23 13:37:35 server hass[18523]: self.environment.handle_exception()
Jul 23 13:37:35 server hass[18523]: File "/home/ctrl/ha/lib/python3.7/site-packages/jinja2/environment.py", line 787, in handle_exception
Jul 23 13:37:35 server hass[18523]: raise rewrite_traceback_stack(source=source)
Jul 23 13:37:35 server hass[18523]: File "<template>", line 3, in top-level template code
Jul 23 13:37:35 server hass[18523]: File "/home/ctrl/ha/lib/python3.7/site-packages/jinja2/sandbox.py", line 412, in call
Jul 23 13:37:35 server hass[18523]: return __context.call(__obj, *args, **kwargs)
Jul 23 13:37:35 server hass[18523]: File "/home/ctrl/ha/lib/python3.7/site-packages/homeassistant/helpers/template.py", line 366, in __call__
Jul 23 13:37:35 server hass[18523]: state = _get_state(self._hass, entity_id)
Jul 23 13:37:35 server hass[18523]: File "/home/ctrl/ha/lib/python3.7/site-packages/homeassistant/helpers/template.py", line 480, in _get_state
Jul 23 13:37:35 server hass[18523]: state = hass.states.get(entity_id)
Jul 23 13:37:35 server hass[18523]: File "/home/ctrl/ha/lib/python3.7/site-packages/homeassistant/core.py", line 885, in get
Jul 23 13:37:35 server hass[18523]: return self._states.get(entity_id.lower())
Jul 23 13:37:35 server hass[18523]: jinja2.exceptions.UndefinedError: 'dict object' has no attribute 'entity'
Jul 23 13:37:35 server hass[18523]: During handling of the above exception, another exception occurred:
Jul 23 13:37:35 server hass[18523]: Traceback (most recent call last):
Jul 23 13:37:35 server hass[18523]: File "/home/ctrl/ha/lib/python3.7/site-packages/homeassistant/components/websocket_api/connection.py", line 95, in async_handle
Jul 23 13:37:35 server hass[18523]: handler(self.hass, self, schema(msg))
Jul 23 13:37:35 server hass[18523]: File "/home/ctrl/ha/lib/python3.7/site-packages/homeassistant/components/websocket_api/commands.py", line 265, in handle_render_template
Jul 23 13:37:35 server hass[18523]: state_listener()
Jul 23 13:37:35 server hass[18523]: File "/home/ctrl/ha/lib/python3.7/site-packages/homeassistant/components/websocket_api/commands.py", line 253, in state_listener
Jul 23 13:37:35 server hass[18523]: msg["id"], {"result": template.async_render(variables)}
Jul 23 13:37:35 server hass[18523]: File "/home/ctrl/ha/lib/python3.7/site-packages/homeassistant/helpers/template.py", line 231, in async_render
Jul 23 13:37:35 server hass[18523]: raise TemplateError(err)
Jul 23 13:37:35 server hass[18523]: homeassistant.exceptions.TemplateError: UndefinedError: 'dict object' has no attribute 'entity'
You have an incorrectly configured template somewhere.
Ahh. I was hoping that wasnāt the case. lol So the hunt beginsā¦ You have any ideas on the best way to track it down. I think ive reached the point where I have so much going on im starting to forget what is whatā¦
Lovelace is expecting an entity from one of your templates but not getting anything. So look for a template that defines an entity.
needle in a haystack, goitcha! haha
Thanks, ill begin to search. between HA and node-red, and my horrible -long-way- of writing code we are talking probably 3000 lines or more to go through. Ive changed names on entitys multiple times, which ive now stopped doing and started naming them generic names like ālight-3ā instaed of kitchen-lightā¦ etcā¦ could be anything. Ive got tons of templates.
I dived into the wonders of customizing Lovelace triggered by this awesome layout: A different take on designing a Lovelace UI
Iāve come a long way But Iām struggling now with styling a markdown card. This markdown card is within a picture-elements card. Iām still a bit confused about styling lovelace. Itās not consistent or every type of card. I also donāt understand the $ signs in the style definitions $: Couldnāt find a definition of this, searching for it is impossible
So when I define the card as follows, my styles end up at the wrong place (at least I assume), because they are ignored by the
<hui-markdown-card class="element">
<ha-card class="type-custom-hui-markdown-card">
<slot></slot>
<ha-markdown breaks="" class="no-header">
<ha-markdown-element>
<div>
<ha-icon icon="mdi:sofa"/> 24.2Āŗ
</div>
<div>
<ha-icon icon="mdi:bed"/> 24.6Āŗ
</div>
<div>
<ha-icon icon="mdi:desktop-tower-monitor"/> 23.91Āŗ
</div>
</ha-markdown-element>
<card-mod slot="none"><!---->
<style>
ha-markdown-element > font > ha-icon {vertical-align: 3%; opacity: 0.6;}
ha-markdown-element > p > span {font-family: SF Text; font-size: 5vw;
font-weight: 200; margin-left: -0.3vw; letter-spacing: -0.05vw;}
</style>
<!---->
</card-mod>
<card-mod slot="none"><!---->
<style>
</style>
<!---->
</card-mod>
</ha-markdown>
<card-mod slot="none"><!---->
<style>
.: '* {display: here}'
ha-icon {
color: red
}
ha-card {
top: 65%, left: 60.5%, width: 21%
}
ha-markdown-element {
display: grid, grid-template-columns: repeat(3, 1fr)
}
</style>
<!---->
</card-mod>
</ha-card>
Thanks in advance for helping me out.
keep getting this error in inspector after updating to HA 113 (and card tools 2ā¦?):
since it is a card mod, Id first post here, to hear from other users if this happens elsewhere too. using this simple style for ages:
type: custom:dark-sky-weather-card
style: |
ha-card {
background: url("/local/images/weather-background-{{states('sun.sun')}}.png");
background-size: 100% 400px;
}
and it shows the background just fine:
Hi
Can someone help with a card-mod config for styling the element chartHeader and/or chartTitle for the history-graph. I have spent hours but I simple donāt get it
This is the JS path:
document.querySelector("body > home-assistant").shadowRoot.querySelector("home-assistant-main").shadowRoot.querySelector("app-drawer-layout > partial-panel-resolver > ha-panel-lovelace").shadowRoot.querySelector("hui-root").shadowRoot.querySelector("#view > hui-view").shadowRoot.querySelector("#columns > div:nth-child(3) > hui-history-graph-card").shadowRoot.querySelector("ha-card > div > state-history-charts").shadowRoot.querySelector("state-history-chart-line").shadowRoot.querySelector("#chart").shadowRoot.querySelector("div.chartHeader > div.chartTitle")