Is there anyway to remove the yellow background on the slider cards?
wow thank you!
Iâm having trouble hiding the view tabs along the top. Changing my theme from minimalist-desktop to minimalist-mobile doesnât seem to be hiding it the way I think itâs supposed to. As far as I can tell, the themes are configured correctly as Iâm able to change the theme in my profile.
Any suggestions?
Hi, if anyone can help, Iâm having trouble using âtap_actionâ, after the updates stopped working.
- type: 'custom:button-card'
template: card_power_outlet
entity: switch.sonoff_100142a43e
variables:
ulm_card_power_outlet_consumption_sensor: sensor.sonoff_100142a43e_power
ulm_card_power_outlet_name: Garagem ⢠Minerador
ulm_card_power_outlet_icon: mdi:expansion-card
tap_action:
action: navigate
navigation_path: 'garagem'
Mate! Thats really good!
Ive been looking for a better look to the main tablet UI.
Are you sharing the code?
Hi!!
Anyone knows how to bring to front this custom icon I have created to show if an input_boolean is âonâ over a card_light. Now is partially hidden by the main icon.
This is the code of the button:
- type: 'custom:button-card'
template:
- light_circadian_icon
- card_light
entity: light.multi_1b
variables:
ulm_card_light_name: Techo
ulm_card_light_enable_slider: true
ulm_card_light_enable_color: true
ulm_card_light_enable_popup: true
And this is the template âlight_circadian_iconâ I have created to show the button:
light_circadian_icon:
styles:
custom_fields:
circadian_icon:
- border-radius: "50%"
- z-index: "999 !important"
- position: "absolute"
- left: "38px"
- top: "4px"
- height: "16px"
- width: "16px"
- border: "2px solid var(--card-background-color)"
- font-size: "12px"
- line-height: "14px"
- background-color: >
[[[
if ( states[variables.ulm_circadian_ib].state == 'on' && states[variables.ulm_circadian_light].state != 'unavailable' ) {
return "rgba(var(--color-yellow),1)";
} else {
return "rgba(var(--color-grey),1)";
}
]]]
custom_fields:
circadian_icon: >
[[[
return `<ha-icon icon="mdi:sun-clock-outline" style="width: 12px; height: 12px; color: var(--primary-background-color);"></ha-icon>`
]]]
I am modifying the values of z-index but I canât get it work.
Thank you!!
I have the same issue
Yep will share shortly, although I have already changed it quite a bit to be honest to make better use of scrolling and space. Will upload code and screenshots by end of week hopefully.
Thanks! Very much looking forward to using some of your amazing stuff!
The official cards had the same problem a time ago. I solved it by adjusting the overflow of the icon-grid-area
. I achieved it by adding this code to that particular area:
styles:
card:
- overflow: "visible"
I hope this also works for you!
Iâm trying to get minimalist going in response to the video from Everything Smart Home This Smart Home Dashboard Isn't Easy But It's Worth It... - YouTube
At 5:34 he installs my card
which I canât find in HACS so I get the following error on the UI
Custom element doesn't exist: my-slider.
type: custom:my-slider entity: light.shellydimmer~
Has the name of this card changed?
Hey @Brazier85
Is it possible to round the values at this point, too. I just integrated my Eve Room via the new Bluetooth extension. But Eve send the value 28.5023498535156.
Would be great If anyone can help.
Thanks
Dominik
First you need to add this custom repository:
After that, you will be able to install the modul.
Thanks got it now. Now onto building a great dashboard⌠Pretty excited to see what mine will look like
V1.1.0
This release brings some big improvements to the framework :
- From now on you can let the integration download and update
Custom Cards
, thanks to @stokkie90
-
Custom Actions
has received additional improvements and added support for custom popups, thanks to @matrixx567 - A new
Weather Popup
is introduced, thanks to @schumijo
Changes
- #902 Revert âFix typo in Device Tracker Custom-card docâ @basbruss
- #907 Added cards for adaptive board @stokkie90
- #906 Add Codespell to pre-commit hook @stokkie90
- #891 feat(card-person): use variable icon @bokub
- #912 Fix unnecessary usage of custom action templates @matrixx567
- #913 Allow none entities for custom actions. @matrixx567
- #910 Add documentation of custom_popups for PR#878 @matrixx567
- #915 Custom Card âRoomâ support for new popups @mpeterson
- #922 Update Polish translation @desty2k
- #908 Release V1.1.0 @basbruss
Features
- #888 Initial version to support selecting community cards @stokkie90
- #894 Add weather popup @schumijo
- #919 Use entity variable for custom popups. @matrixx567
Code enhancements
- #878 Custom popups for cards that uses custom actions. @matrixx567
- #898 Update card_media_player.yaml @mdb17
- #914 [card_media_player] added standby logic @mdb17
Custom Card enhancements
- #879 Fix text overflowing issue in custom card âroomâ @mpeterson
-
#881 Custom Card âroomâ better text overflow and use of
ulm_actions_card
@mpeterson - #916 Improve zones @rob1998
Bug Fixes
- #892 Hide exclamation to solve #880 @schumijo
- #918 Fix name attribute in custom NAS card @IanDBird
- #923 Small Fix before release @schumijo
Translations
Documentation
- #887 Fix typo in Device Tracker Custom-card doc @bokub
- #909 [Action] Update custom_cards docs @github-actions
- #903 Community Card Selection Docs @stokkie90
- #921 [Action] Update custom_cards docs @github-actions
Thank you so much for helping out to keep this UI awesome
@IanDBird, @basbruss, @bokub, @desty2k, @eopo, @github-actions, @matrixx567, @mdb17, @mpeterson, @rob1998, @schumijo, @stokkie90, Ian Bird and rick.stokkingreef
Thank you very much for your answer @basbrus!! Unfortunately, it seems that I can not get it work.
Iâve tried:
- Applying the style in the main card:
- type: 'custom:button-card'
template:
- light_circadian_icon
- card_light
entity: light.multi_1b
variables:
ulm_card_light_name: Techo
ulm_card_light_enable_slider: true
ulm_card_light_enable_color: true
ulm_card_light_enable_popup: true
styles:
card:
- overflow: "visible"
- Applying the style in the custom template âlight_circadian_iconâ:
scene_circadian_icon:
styles:
card:
- overflow: "visible"
custom_fields:
notification:
- border-radius: "50%"
- z-index: 999 !important
- position: "absolute"
- left: "52%"
- top: "4px"
- height: "16px"
- width: "16px"
- border: "2px solid var(--card-background-color)"
- font-size: "12px"
- line-height: "14px"
- background-color: >
[[[
if ( variables.ulm_circadian_ib == true ) {
return "rgba(var(--color-yellow),1)";
} else {
return "rgba(var(--color-grey),1)";
}
]]]
custom_fields:
notification: >
[[[
return `<ha-icon icon="mdi:sun-clock-outline" style="width: 12px; height: 12px; color: var(--primary-background-color)"></ha-icon>`
]]]
- Applying this css property to other areas like icon, img-cell:
scene_circadian_icon:
styles:
icon:
- overflow: "visible"
img-cell:
- overflow: "visible"
custom_fields:
notification:
- border-radius: "50%"
- z-index: 999 !important
- position: "absolute"
- left: "52%"
- top: "4px"
- height: "16px"
- width: "16px"
- border: "2px solid var(--card-background-color)"
- font-size: "12px"
- line-height: "14px"
- background-color: >
[[[
if ( variables.ulm_circadian_ib == true ) {
return "rgba(var(--color-yellow),1)";
} else {
return "rgba(var(--color-grey),1)";
}
]]]
custom_fields:
notification: >
[[[
return `<ha-icon icon="mdi:sun-clock-outline" style="width: 12px; height: 12px; color: var(--primary-background-color)"></ha-icon>`
]]]
The result is always the same, the small icon doesnât bring to front.
Maybe Iâve misunderstood your advice?
Thank you again!
Looking forward to try that weather popup!
What is that adaptive dashboard that has been added? Can we just remove it if we already have a dashboard?
How would you add the weather popup to a chip?
I tried the following but it doesnât work:
type: "custom:button-card"
template: "chip_weather_date"
variables:
ulm_weather: "[[[ return variables.ulm_weather]]]"
ulm_custom_popup:
template: "popup_weather_forecast"
popup_variables:
ulm_popup_weather_entity: "[[[ return variables.ulm_weather]]]"