🌻 Lovelace UI • Minimalist

Is there anyway to remove the yellow background on the slider cards? :slight_smile:

brytere

wow thank you!

1 Like

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.

image

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 :frowning:

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.

2 Likes

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.

1 Like

Thanks got it now. Now onto building a great dashboard… Pretty excited to see what mine will look like

V1.1.0 :rainbow_flag:

This release brings some big improvements to the framework :rocket: :

  • From now on you can let the integration download and update Custom Cards, thanks to @stokkie90

image

  • Custom Actions has received additional improvements and added support for custom popups, thanks to @matrixx567
  • A new Weather Popup is introduced, thanks to @schumijo

image

Changes

:bulb: Features

:sparkles: Code enhancements

:sparkles: Custom Card enhancements

:bug: Bug Fixes

:speech_balloon: Translations

  • #890 Added german language file for “custom_card_ristou_person” @eopo

:memo: Documentation

:heart: 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

7 Likes

Thank you very much for your answer @basbrus!! Unfortunately, it seems that I can not get it work. :roll_eyes:
I’ve tried:

  1. 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"
  1. 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>`
      ]]]
  1. 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]]]"

HI,
how do i put these cards in the space below the others?



thanks

Hi @dmauduit
Only chip_temperature is compatible with custom actions and popups at the moment