Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bug in Home Assistant 2022.11 #36

Open
mattdevo1 opened this issue Nov 25, 2022 · 5 comments
Open

Bug in Home Assistant 2022.11 #36

mattdevo1 opened this issue Nov 25, 2022 · 5 comments

Comments

@mattdevo1
Copy link

mattdevo1 commented Nov 25, 2022

It looks like the default dashboard theme in Home Assistant was changed slightly in in the 2022.11 update, which is causing the Big Number Card to render incorrectly (there is a thin colored bar at the very edge of the card when the value is less than 100%, see screenshot below).

Screen Shot 2022-11-25 at 8 01 38 AM

This happens regardless of the scale, whether you start the bar from the left or bottom, etc. I can't seem to find a configuration option to fix it.

@DOMNAD
Copy link

DOMNAD commented Feb 14, 2023

It looks like the default dashboard theme in Home Assistant was changed slightly in in the 2022.11 update, which is causing the Big Number Card to render incorrectly (there is a thin colored bar at the very edge of the card when the value is less than 100%, see screenshot below).

Screen Shot 2022-11-25 at 8 01 38 AM

This happens regardless of the scale, whether you start the bar from the left or bottom, etc. I can't seem to find a configuration option to fix it.

Same here 😞

image

@igorsantos07
Copy link

igorsantos07 commented Feb 24, 2023

I guess the project got abandoned :(

Since I'm only using it in a specific dashboard, I changed the whole dashboard to an old theme which doesn't include the latest lovelace layout changes.

image

@Zeronozero
Copy link

Is this project really dead ? someone who can debug this problem ? thanks

@Zeronozero
Copy link

Zeronozero commented Jul 9, 2024

I found a solution. Add this in your theme

My Theme:
    # colonnes
    ha-view-sections-column-gap: 8px #optional, this is for the column space in the new experimental section
    ha-card-border-width: 0px
    modes:
        light:
            ha-card-box-shadow: '0px 0px 0px 1px rgba(0, 0, 0, 0.12)'
        dark:
            ha-card-box-shadow: '0px 0px 0px 1px rgba(255, 255, 255, 0.12)'

@mattdevo1
Copy link
Author

mattdevo1 commented Jul 9, 2024

I found a solution. Add this in your theme

My Theme:
    # colonnes
    ha-view-sections-column-gap: 8px #optional, this is for the column space in the new experimental section
    ha-card-border-width: 0px
    modes:
        light:
            ha-card-box-shadow: '0px 0px 0px 1px rgba(0, 0, 0, 0.12)'
        dark:
            ha-card-box-shadow: '0px 0px 0px 1px rgba(255, 255, 255, 0.12)'

Ah man, thank you for figuring that out!

You can also implement this with card mod, here's what I did:

card_mod: style: | ha-card { border-width: 0px }

Although I guess that removes the border, which means this card looks different to the other default cards...Hrmm, not a great fix to be honest.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants