mirror of
https://github.com/Nezz/homeassistant-visionos-theme.git
synced 2026-05-09 08:25:57 +02:00
[GH-ISSUE #30] Allow no border stack-in-card #28
Labels
No labels
bug
bug
bug
duplicate
duplicate
pull-request
third party
third party
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/homeassistant-visionos-theme#28
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @nubbymong on GitHub (Nov 4, 2025).
Original GitHub issue: https://github.com/Nezz/homeassistant-visionos-theme/issues/30
Is it possible to update the theme to allow for no borders on internal elements in stack-in-card. Please see the difference between the default theme and liquid glass in attached images (same happens for visionOS). Absolutely love these themes by the way thank you so much.
@ProjectInkfish commented on GitHub (Dec 1, 2025):
I have gone down the rabbit hole with this issue and there is no way to fix it by adding further card-mod CSS. +1 for fixing this as the theme level please!
@Nezz commented on GitHub (Dec 1, 2025):
The only way themes can fix how cards work is by applying card-mod, but if there is no way to fix it then sadly we are out of luck. This is a case where a card is nested inside another card, so any theme that uses transparency will look wrong.
@LevyKo commented on GitHub (Jan 7, 2026):
I had a similar problem with a stacked Mini Graph Card. The following code worked for me:
# Mini Graph Card :host(custom-mini-graph-card) ha-card { --ha-card-background: rgba(0, 0, 0, 0); --ha-card-backdrop-filter: none !important; --ha-card-box-shadow: none !important; --ha-card-border-radius: 0px !important; } ha-card.type-custom-mini-graph-card { --ha-card-background: rgba(0, 0, 0, 0); --ha-card-backdrop-filter: none !important; --ha-card-box-shadow: none !important; --ha-card-border-radius: 0px !important; }It's added at the end of the theme file (yaml).