Anchors should be used in yaml mode only.
When used in UI editor then these anchors like "ref_my_anchor_for_sensor" MAY BE saved as "ref_0" - but also may be just replaced by code (depends, I havenāt investigated this issue).
You may just define a card-mod style for ALL entities in the Entity card (see the 1st post ā accumulative post ā post for Entities card). Note that since Entity card may contain different types of rows (text0entity-row, sensor-entity-row, ā¦) you have to specify a code for each type.
Huh, I didnāt know thereās a real difference between editing the yaml file directly, and doing it through the ācode editorā.
I think youāre referring to the first code block in that post here, where style: is at the very front of the line (not indented). This indeed would have been great, but only for static styling, at least thatās what it looked like to me. I couldnāt get anything regarding to config.entity working when using that method.
We can (apparently). I never used themes, so I never noticed this option. This is the winner for me, for now at least.
Basically just follow these steps: Card mod Themes Ā· thomasloven/lovelace-card-mod Wiki Ā· GitHub
Make sure to create the theme folder, create the theme yaml file, add the frontend bit in configuration.yaml, restart HA, reload themes, and of course set the theme to the entities list.
Itās not perfect, since you need to call the reload themes service every time you update a theme (which is VERY easy to forget, especially if you havenāt done it for a while), but itās the best option Iāve seen so far.
Not sure if this is possible, but seeing how some users seem to be magicians, I hope someone knows how to achieve this. Basically I want an iframe (webcard) to adjust to the screen size automatically. I use this card on different devices. The content in the iframe is already responsive, so I hope the iframe can be as well. This is the code I currently use. I used mod-card because (if I remember correctly when creating this) it didnāt work as standard card-mod style.
The main challenge with iframe is that you need to use an aspect ratio, which forces it to a certain shape. So I hope I can alter this card using card-mod to make it responsive and always fill the entire screen.
But perhaps I need Config Template Card for this and use a template to determine the ratio depending on the viewport of the screenā¦?
The content inside the iframe is scaled fine, thatās not the issue. Itās the card element of the iframe. I need the card to take the size of the entire screen automatically. The content in the card already fitās itself fine to the card size.
So If I open the webcard on a screen with less height, itās should still be fullscreen and I donāt need to scroll the page. Also when the screen has more height, it needs to fill the entire screen and not leave empty spaces below it. I tried with height: 100vh but that didnāt work.
Whatās funny is that it does work as intended when I open the url as itās own custom panel (in sidebar). It adapts to the screensize. Ofcourse I can forward to that as well, but then I have no UI there and no way to go back with a simple button (like I have now in my own dashboard).
I donāt want to see more/less lines on the page, thatās the challenge. I want the webcard to fill the entire screen, on different devices. I want the webcard to always fill the entire screen. Also as you can see, if I make the window smaller, I have to scroll within Lovelace, the webcard is larger than the screensize, it doesnāt adapt. This means that the webcard is not scaling with the screen, itās fixed due to the aspect ratio. So I need the webcard to be responsive, like the content in the iframe.
Currently I have this inside my dashboard (i.e. UI). So I can open my LMS webpage as part of my dashboard. Basically I want the webcard to act like this: Imgur: The magic of the Internet As you can see, it always fitās the entire screen.
But I think this is impossible due to how the webcard renders itself and needs an aspect ratio.
Any particular reason why HA doesnāt recognize ācustom:multiple-entity-rowā and similar?
Card-mod installed via HACS and updated.
Also, got a problem while rotating icon - it looks like center of the icon has been moved. Especially with increased size.
Iām trying to disable the ādimmedā effect on some on my light icons, so that even when the brightness is at 1%, the icon is still fully lit. Iāve tried to modify the code in post #1363 but Iām having trouble getting it all to work.
Iāve figured out I need to override ha-state-icon, as shown here:
Please note that the light entity I want to change is nested about 4-5 levels inside other (custom) cards.
Iām having a hard time understanding CSS selectors so I try to modify posted code here, which usually works, but this time Iām stuck. Hope someone can help or point me in the right direction.
Do You mean that itās hardcoded in - custom:multiple-entity-row?
Do You know how to color multiple-entity-row icons? (like window icon in my screenshot above)
I canāt find good CSS anchor.
type: conditional
conditions:
- entity: binary_sensor.christmas_time
state: 'on'
# {{now().month and now().day in range(22,31)}}
card:
type: markdown
card_mod:
style: |
ha-card {
background: url('/local/wallpapers/fireworks.jpg');
background-size: 100% 400px;
color: var(--background-color-on);
font-size: 25px;
font-weight: bold;
text-align: center;
animation: blink 2s ease infinite;
}
content: >
**New years events:**
{% set new = states('sensor.new_years_day_countdown') %}
{% set old = states('sensor.since_new_years_day_counting') %}
New year in:
{{new}}
Since new year:
{{old}}
I must be missing something. If at all possible, I want only the top countdown to new year to flash (in a secondary stage, only doing so the last 5 minutes of the yearā¦)
please have a look if you can help me make it flash?
Anyway I would like to ask You about one thing. I want to animate icon in entity-multiple-row but I canāt get it via CSS. Is it possible to animate window icon while open?
You should write a code accordingly to a real DOM structure. Open Code Inspector and build a path to the required element. Do not try to use a code without understanding.
Surely you may use ready examples (1st post, see a link at the bottom), but these examples give you a direction and may not cover all your cases.
Using multple-entity-row, I have one card which removes padding between the entities, which works great. I have another multiple-entity-card which uses a style to align the left icon more to the left, which also works great. However, I canāt seem to combine them.