Try adding ! before include.
It could be a couple of things, but this missing animation, have you tried another system or different browser?
Iāve seen this happen before and sometimes the browser turns off the hardware acceleration.
Or when OS settings are set to disable animations, some browsers are sensitive to that as well.
Or maybe wrong CSS properties?
It is not working for me either. It works fine on my wifeās Android phone though.
That did the trick. Thanks
Itās the same issue for me. but just with me, with my wife the Zone is identified correctly.
Iām curious if you have the solution
I havenāt figured out why it happensā¦havenāt looked into the advice given by @basbrus (thank you for taking the time), but a āwork aroundā is to use the custom person chip. This is giving me the "home"status with no issues.
Has anyone created a scheduling card for Minimalist where you can change the schedule from the UI?
Something like: Scheduler card/custom component - #1700 by deanfourie
Thanks
Hello Everyone,
Love this UI having trouble with something that seems it should be trivial. Iām trying to adjust the font size of the card_light button card however the custom-button card styles font-size method isnāt working
- type: "custom:button-card"
template: card_light
entity: group.living_room_lamps
styles:
name:
- font-size: 8px
label:
- font-size: 8px
variables:
ulm_card_light_name: Living Room Lamps
ulm_card_light_enable_color: true
ulm_card_light_icon: mdi:lightbulb
Hi,
Since latest update of minimalist (v1.1.5-hotfix). state in person card is displayed as undefined instead of home or away. The state of the person however is correct, either home or away. Was anything changed in the template?
Any ideas?
Hey all, this is a bit of a weird one, where are the templates for button cards defined? Iām trying to use the esh_room with āviolet_onā for the colour however button card canāt find the template. the files exists in the directory but I canāt seem to figure out where the available list of templates is defined. anyone had this issue?
excellent work!
Need some help getting the chip back card to work with adaptive UI. Is there someone with an example?
Is there any way to do mouse overs / hovers for chip cards ?
Mine is in /opt/homeassistant/config/custom_components/ui_lovelace_minimalist/__ui_minimalist__/ulm_templates/card_templates/colors
Iām having problems with the weather icon on Welcome Scenes Card.
Clicking on the weather icon pops up the following:
The relevant code is:
ulm_weather: "weather.vancouver"
I wonder if this is something to specific to the Environment Canada weather provider.
Iām kinda stalled with this one. Can someone suggest any further troubleshooting steps?
update:
Iāve figured it out and submit a bug report! itāll be fixed next release
Hi Guys,
Iām loving this theme & the flexibility it gives me. Only one thing is bugging me since Iāve started using it the last few weeks regarding the person-card (default minimalist one, not custom)
When me or my wife are at home, it shows me the label āundefinedā (It shows the correct blue house icon, so it knows we are home.), same if we are away to a location unknow to HA.
But when we are at work (these zones are created in HA) it shows the correct zone nameā¦
Shouldenāt it say āhomeā (or zone name) when at home & away when somewhere else?
I just canāt figure out whats going wrongā¦ Can you point me in the right direction?
This is my code:
- type: horizontal-stack
cards:
- type: "custom:button-card"
template: card_person
variables:
ulm_card_person_entity: person.simon
ulm_card_person_use_entity_picture: true
ulm_card_person_battery: sensor.simons_iphone_battery_level
ulm_card_person_eta: sensor.waze_simon_to_home
- type: "custom:button-card"
template: card_person
variables:
ulm_card_person_entity: person.carolien
ulm_card_person_use_entity_picture: true
ulm_card_person_battery: sensor.iphone_7_battery_level
ulm_card_person_eta: sensor.waze_carolien_to_home
Thanks all!!
Hi @MonYvel
Please check the posts above you
There is already posted multiple times about the same problem and the solution is also mentioned a couple of times.
Itās also displayed correctly as required on the wiki
Basically, youāre missing the entity outside the variables.
It should be like:
- type: horizontal-stack
cards:
- type: "custom:button-card"
template: card_person
entity: person.simon
variables:
ulm_card_person_entity: person.simon
ulm_card_person_use_entity_picture: true
ulm_card_person_battery: sensor.simons_iphone_battery_level
ulm_card_person_eta: sensor.waze_simon_to_home
- type: "custom:button-card"
template: card_person
entity: person.carolien
variables:
ulm_card_person_entity: person.carolien
ulm_card_person_use_entity_picture: true
ulm_card_person_battery: sensor.iphone_7_battery_level
ulm_card_person_eta: sensor.waze_carolien_to_home