I did solve that for now using normal buttons:
type: custom:stack-in-card
cards:
- type: custom:mushroom-entity-card
entity: input_button.pc_switch_office_pc1
fill_container: false
name: Office
layout: horizontal
icon: mdi:account-group
card_mod:
style: |
ha-card {
border: 0px !important;
}
- type: horizontal-stack
cards:
- show_name: false
show_icon: true
type: button
tap_action:
action: toggle
entity: switch.wol_workstation
icon_height: 40px
icon: mdi:microsoft-windows
card_mod:
style: |
ha-card {
border: 0px !important;
background: #262626 !important;
border-radius: 10px !important;
}
- show_name: false
show_icon: true
type: button
tap_action:
action: toggle
entity: switch.wol_workstation
icon_height: 40px
icon: mdi:apple
card_mod:
style: |
ha-card {
border: 0px !important;
background: #262626 !important;
border-radius: 10px !important;
}
- show_name: false
show_icon: true
type: button
tap_action:
action: toggle
entity: switch.wol_workstation
icon_height: 40px
icon: mdi:set-top-box
card_mod:
style: |
ha-card {
border: 0px !important;
background: #262626 !important;
border-radius: 10px!important;
}
card_mod:
style: |
ha-card {
padding-left: 10px;
padding-right: 10px;
padding-bottom: 10px;
}
2 Likes
Faecon
(Jo)
July 16, 2024, 9:45am
832
I have a template card with an icon and text
I want the text centered, but when I add the icon, it just moves a little to the right. so it is not in the middle… How do I change that ?
card_mod:
style:
mushroom-state-info$: |
.container {
text-align: center;
}
.: |
ha-card {
--card-primary-font-size: 18px;
box-shadow: 0px 2px 5px 0px rgba(0,0,0,0.3) !important;
background-color: rgba({{ states("input_text.kleur_iconen")}},0.2) !important;
width: 300px;
margin-left: 40px;
}
Frosty
July 16, 2024, 1:51pm
833
simple solution would be to add a margin to the size of you icon, so you cancel out the icon.
mushroom-state-info$: |
.container{
text-align: center;
margin-left: -40px;
that’s if your icon is 40px in size
1 Like
sanket
July 17, 2024, 10:36am
834
Mushroom Light Card, how can I display both color temperature and brightness slider in one mashroom card.
In default setting, I see only one slider, to see another slider I have to tap on icon to change the slider
You could do something like this?
type: custom:stack-in-card
cards:
- type: custom:mushroom-light-card
entity: light.office_main_light
use_light_color: true
show_brightness_control: true
card_mod:
style: |
ha-card {
padding-bottom: 0px !important;
}
- type: custom:mushroom-light-card
entity: light.office_main_light
use_light_color: true
show_color_temp_control: true
card_mod:
style: |
mushroom-state-item {
display: none !important;
}
ha-card {
padding-top: 0px !important;
}
1 Like
Here is a version for light cards
it takes into account whether or not a light has a brightness attribute, whether the light is on or not, and whether it has RGB values or not.
card_mod:
style:
mushroom-shape-icon$: |
.shape {
{% if states(config.entity) == 'on' and state_attr(config.entity, 'brightness') != none %}
{% if state_attr(config.entity,'rgb_color') != none %}
background: linear-gradient(0deg, rgba{{(state_attr(config.entity,'rgb_color')[0] * 0.85, state_attr(config.entity,'rgb_color')[1] * 0.85, state_attr(config.entity,'rgb_color')[2] * 0.85) + (0.3,)}} calc( {{state_attr(config.entity,'brightness') | float / 2.55}}%), rgba{{(state_attr(config.entity,'rgb_color')[0] * 0.85, state_attr(config.entity,'rgb_color')[1] * 0.85, state_attr(config.entity,'rgb_color')[2] * 0.85) + (0.12,)}} 0.1%) !important;
{% else %}
background: linear-gradient(0deg, rgba(255, 152, 0, 0.3) {{state_attr(config.entity,'brightness') | float / 2.55}}%, rgba(255, 152, 0, 0.12) 0.1%) !important;
{% endif %}
{% endif %}
}
4 Likes
Faecon
(Jo)
July 19, 2024, 5:35am
837
I have a mushroom template card. On mobile when i press it I get a dark square around it. How can I avoid this ?
You can do something like this with chips:
type: custom:mushroom-chips-card
chips:
- type: template
icon: mdi:fan-clock
card_mod:
style: |
ha-card {
justify-content: center;
height: 40px !important;
border: 0 !important;
box-shadow: none !important;
border-radius: 10px !important;
}
.content {
flex-direction: column !important;
}
- type: template
icon: mdi:fan-clock
card_mod:
style: |
ha-card {
justify-content: center;
height: 40px !important;
border: 0 !important;
box-shadow: none !important;
border-radius: 10px !important;
}
.content {
flex-direction: column !important;
}
- type: template
icon: mdi:fan-clock
card_mod:
style: |
ha-card {
justify-content: center;
height: 40px !important;
border: 0 !important;
box-shadow: none !important;
border-radius: 10px !important;
}
.content {
flex-direction: column !important;
}
card_mod:
style: |
mushroom-template-chip {
width: 100%;
}
div.chip-container {
justify-content: space-evenly;
flex-wrap: nowrap;
}
ha-card {
margin: 0px 8px 12px;
--chip-spacing: 8px !important;
}
3 Likes
colinnz
(Colin)
July 21, 2024, 7:56am
839
This is absolutely priceless. Helped me immensely and saved me a ton of time. Thank you so much for the time and effort you put into this.
1 Like
Hello,
I would like to ask if there is a way to display additional information on this card?
I would like to display an air conditioning switch-off timer in the empty part on the left.
What are the options?
Entity: timer.climate_off_timer
- type: horizontal-stack
cards:
- type: custom:mushroom-template-card
card_mod:
style:
mushroom-shape-icon$: |
.shape {
{% if not is_state('climate.nappali_klima', 'off') %}
position: relative;
}
.shape:after {
content: ' ';
position: absolute;
width: inherit;
height: inherit;
border-radius: 500px;
border: 2px solid #ADFF2F;
border-left-color: transparent;
animation: spin 1s linear infinite;
{% endif %}
}
.: |
:host {
{% set sensor_dws_state =
(is_state('binary_sensor.dws_nappali_bal_contact', 'on') or is_state('binary_sensor.dws_nappali_jobb_contact', 'on')) %}
{% set sensor_zone_state =
(is_state('binary_sensor.zone_nappali_bal_abl_open', 'on') or is_state('binary_sensor.zone_nappali_jobb_abl_open', 'on')) %}
{% if sensor_dws_state and sensor_zone_state %}
--ha-card-box-shadow: 0 0 10px red;
{% elif not sensor_dws_state and not sensor_zone_state %}
--ha-card-box-shadow: none;
{% elif sensor_dws_state and not sensor_zone_state %}
--ha-card-box-shadow: 0 0 10px orange;
{% else %}
--ha-card-box-shadow: 0 0 10px grey;
{% endif %}
}
ha-card {
{% if is_state('binary_sensor.zone_nappali_pir_open', 'on') %}
--card-primary-color: red;
{% else %}
--card-primary-color: inherit;
{% endif %}
height:70px !important;
}
secondary: >-
{{states('sensor.nappali_e6b0_temperature') | float(default=0) |
round(1)}} °C
{{states('sensor.nappali_e6b0_humidity') | float(default=0) |
round(1)}} %
icon: mdi:sofa
entity: light.led_driver_nappali_padlo
tap_action:
action: navigate
navigation_path: /dashboard-kezelfelulet/nappali
hold_action:
action: toggle
icon_color: |-
{% if is_state('light.led_driver_nappali_padlo','on') %}
orange
{% endif %}
multiline_secondary: true
badge_color: >-
{% set cover_position = state_attr('cover.redony_nappali',
'current_position') %}
{% if cover_position is defined %}
{% if cover_position == 0 %}
red
{% elif cover_position == 100 %}
green
{% else %}
yellow
{% endif %}
{% else %}
grey
{% endif %}
badge_icon: >-
{% set cover_position = state_attr('cover.redony_nappali',
'current_position') %}
{% if cover_position is defined %}
{% if cover_position == 0 %}
mdi:window-shutter
{% elif cover_position == 100 %}
mdi:window-shutter-open
{% else %}
mdi:window-shutter
{% endif %}
{% else %}
mdi:window-shutter-cog
{% endif %}
primary: Nappali
Frosty
July 22, 2024, 6:11pm
841
Thomas-Webster:
timer.climate_off_timer
you can play around with a few options like this
type: horizontal-stack
cards:
- type: custom:mushroom-template-card
card_mod:
style:
mushroom-state-info$: |
.secondary:after {
content: '{{states('timer.climate_off_timer')}}';
display: flex;
}
mushroom-shape-icon$: |
.shape {
{% if not is_state('climate.nappali_klima', 'off') %}
position: relative;
}
.shape:after {
content: ' ';
position: absolute;
width: inherit;
height: inherit;
border-radius: 500px;
border: 2px solid #ADFF2F;
border-left-color: transparent;
animation: spin 1s linear infinite;
{% endif %}
}
.: |
:host {
{% set sensor_dws_state =
(is_state('binary_sensor.dws_nappali_bal_contact', 'on') or is_state('binary_sensor.dws_nappali_jobb_contact', 'on')) %}
{% set sensor_zone_state =
(is_state('binary_sensor.zone_nappali_bal_abl_open', 'on') or is_state('binary_sensor.zone_nappali_jobb_abl_open', 'on')) %}
{% if sensor_dws_state and sensor_zone_state %}
--ha-card-box-shadow: 0 0 10px red;
{% elif not sensor_dws_state and not sensor_zone_state %}
--ha-card-box-shadow: none;
{% elif sensor_dws_state and not sensor_zone_state %}
--ha-card-box-shadow: 0 0 10px orange;
{% else %}
--ha-card-box-shadow: 0 0 10px grey;
{% endif %}
}
ha-card {
{% if is_state('binary_sensor.zone_nappali_pir_open', 'on') %}
--card-primary-color: red;
{% else %}
--card-primary-color: inherit;
{% endif %}
height:70px !important;
}
secondary: >-
{{states('sensor.nappali_e6b0_temperature') | float(default=0) |
round(1)}} °C
{{states('sensor.nappali_e6b0_humidity') | float(default=0) | round(1)}} %
icon: mdi:sofa
entity: light.led_driver_nappali_padlo
tap_action:
action: navigate
navigation_path: /dashboard-kezelfelulet/nappali
hold_action:
action: toggle
icon_color: |-
{% if is_state('light.led_driver_nappali_padlo','on') %}
orange
{% endif %}
multiline_secondary: true
badge_color: >-
{% set cover_position = state_attr('cover.redony_nappali',
'current_position') %}
{% if cover_position is defined %}
{% if cover_position == 0 %}
red
{% elif cover_position == 100 %}
green
{% else %}
yellow
{% endif %}
{% else %}
grey
{% endif %}
badge_icon: >-
{% set cover_position = state_attr('cover.redony_nappali',
'current_position') %}
{% if cover_position is defined %}
{% if cover_position == 0 %}
mdi:window-shutter
{% elif cover_position == 100 %}
mdi:window-shutter-open
{% else %}
mdi:window-shutter
{% endif %}
{% else %}
mdi:window-shutter-cog
{% endif %}
primary: Nappali
Faecon
(Jo)
July 25, 2024, 3:44pm
843
- type: custom:mushroom-chips-card
chips:
- type: entity
entity: input_number.aline_airco
icon: " "
How do I center the state of the input_number ?
I want an icon color to change when the status is greater or less than another value. Any idea how I can do this? I tried a few things…
{{ ''green'' if states(entity) | < states('sensor.dynamische_stroomprijzen_average_electricity_price_today') else ''red'' }}
Slightly hacky way to do it. Im sure there is a better way.
type: custom:mushroom-chips-card
chips:
- type: entity
entity: input_number.bedroom_fan_speed
icon: none
card_mod:
style: |
.content {
position: relative;
flex-direction: column !important;
bottom: 20%;
}
1 Like
card_mod:
style: |
ha-state-icon {
{% if states(config.entity) | float < states('sensor.dynamische_stroomprijzen_average_electricity_price_today') | float %}
color: green;
{% else %}
color: red;
{% endif %}
}
Or
card_mod:
style: |
ha-state-icon {
color: {{ 'green' if states(config.entity) | float < states('sensor.dynamische_stroomprijzen_average_electricity_price_today') | float else 'red'}};
}
Always check that your template actually works in the template editor (of course replacing the config.entity
or entity
shorthand with an actual entity)
You cant use the entity
shorthand in card mod. You have to use config.entity
1 Like
Hello,
need a little push to the right direction…
If I have a font-size bigger than 21px the font will be cut off…
How can I fix that?
type: custom:mushroom-entity-card
entity: sensor.time
primary_info: none
card_mod:
style:
mushroom-state-info$: |
.container {
--card-secondary-font-size: 30px;
align-items: center;
}
layout_options:
grid_columns: 2
grid_rows: 1
Awesome! Didn’t noticed that.
Thank you so much.
Denas0
(Denas0)
July 26, 2024, 9:34pm
850
Hello, is it posible to invert just the slider part ?
Keep in mind that neither of these will fix the fact that the controls will not invert. These are made with javascript so cant be modified with card mod. So in either case when you try to move the slider right it will move left with the below applied.
card_mod:
style:
mushroom-cover-position-control$:
mushroom-slider$: |
.slider {
rotate: 180deg;
}
mushroom-cover-tilt-position-control$:
mushroom-slider$: |
.slider {
rotate: 180deg;
}
Or:
card_mod:
style: |
mushroom-cover-position-control {
transform: scalex(-1) !important;
}
mushroom-cover-tilt-position-control {
transform: scalex(-1) !important
}