11# Frosted Glass Theme
2- # ver. 1.1.8 (2025-07-21 )
2+ # ver. 1.1.9 (2025-07-25 )
33
44Frosted Glass :
55 modes :
66 light :
77 card-mod-theme : " Frosted Glass Light"
8- map-card-internal-zoomer-background : ' transparent' # // Used to work during testing, then it broke, keeping it here for now
98
109 # =========================
1110 # HEADER (Top Bar)
@@ -78,6 +77,51 @@ Frosted Glass:
7877 backdrop-filter: blur(8px) saturate(1.2) !important;
7978 -webkit-backdrop-filter: blur(8px) saturate(1.2) !important;
8079 }
80+ /* Markdown card with text_only → no background or blur */ # 1.1.9 Change - text only markdown and mushroom title card no background // Beginning
81+ :host(.text-only) ha-card,
82+ :host(.text-only) ha-card::before {
83+ background: none !important;
84+ backdrop-filter: none !important;
85+ -webkit-backdrop-filter: none !important;
86+ box-shadow: none !important;
87+ }
88+ /* Mushroom title card (no background or blur) */
89+ :host(mushroom-title-card) ha-card {
90+ background: none !important;
91+ backdrop-filter: none !important;
92+ -webkit-backdrop-filter: none !important;
93+ }
94+ :host(mushroom-title-card) ha-card::before {
95+ content: none !important;
96+ }
97+ # === Prevent frosted glass from applying to bubble cards === # 1.1.9 Change - Bubble cards are no longer applied
98+ ha-card.type-custom-bubble-card {
99+ background: none !important;
100+ backdrop-filter: none !important;
101+ -webkit-backdrop-filter: none !important;
102+ box-shadow: none !important;
103+ border-radius: 0px !important;
104+ }
105+
106+ ha-card.type-custom-bubble-card::before {
107+ content: none !important;
108+ background: none !important;
109+ backdrop-filter: none !important;
110+ -webkit-backdrop-filter: none !important;
111+ }
112+ /* === Prevent frosted glass from applying to mushroom-chips-card outer container === */ # 1.1.9 Change - Outer mushroom chips no longer applied
113+ :host(mushroom-chips-card) ha-card {
114+ background: none !important;
115+ backdrop-filter: none !important;
116+ -webkit-backdrop-filter: none !important;
117+ box-shadow: none !important;
118+ }
119+ :host(mushroom-chips-card) ha-card::before {
120+ content: none !important;
121+ background: none !important;
122+ backdrop-filter: none !important;
123+ -webkit-backdrop-filter: none !important;
124+ }
81125
82126 # =========================
83127 # CARD-MOD-ROOT GLOBAL CSS
@@ -88,7 +132,7 @@ Frosted Glass:
88132 --ha-card-box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
89133 --ha-card-border-width: 0.5px;
90134 --ha-card-border-color: rgba(255, 255, 255, 0.3);
91-
135+ --ha-card-backdrop-filter: blur(8px) saturate(1.2); # 1.1.9 change - added blur & saturation for badges
92136 /* Tokens (used throughout cards/UI) */
93137 --token-rgb-primary: 106, 116, 211;
94138 --token-rgb-black: 0, 0, 0;
@@ -389,7 +433,6 @@ Frosted Glass:
389433 mush-rgb-grey : ' 103, 104, 119'
390434
391435 # Misc sizes
392- header-height : ' 60px'
393436 paper-slider-height : ' 5px'
394437 border-radius : ' 18px'
395438
@@ -468,6 +511,51 @@ Frosted Glass:
468511 backdrop-filter: blur(10px) saturate(1.2) !important;
469512 -webkit-backdrop-filter: blur(10px) saturate(1.2) !important;
470513 }
514+ /* Markdown card with text_only → no background or blur */ # 1.1.9 Change - text only markdown and mushroom title card no background // Beginning
515+ :host(.text-only) ha-card,
516+ :host(.text-only) ha-card::before {
517+ background: none !important;
518+ backdrop-filter: none !important;
519+ -webkit-backdrop-filter: none !important;
520+ box-shadow: none !important;
521+ }
522+ /* Mushroom title card (no background or blur) */
523+ :host(mushroom-title-card) ha-card {
524+ background: none !important;
525+ backdrop-filter: none !important;
526+ -webkit-backdrop-filter: none !important;
527+ }
528+ :host(mushroom-title-card) ha-card::before {
529+ content: none !important;
530+ }
531+ # === Prevent frosted glass from applying to bubble cards === # 1.1.9 Change - Bubble cards are no longer applied
532+ ha-card.type-custom-bubble-card {
533+ background: none !important;
534+ backdrop-filter: none !important;
535+ -webkit-backdrop-filter: none !important;
536+ box-shadow: none !important;
537+ border-radius: 0px !important;
538+ }
539+
540+ ha-card.type-custom-bubble-card::before {
541+ content: none !important;
542+ background: none !important;
543+ backdrop-filter: none !important;
544+ -webkit-backdrop-filter: none !important;
545+ }
546+ /* === Prevent frosted glass from applying to mushroom-chips-card outer container === */ # 1.1.9 Change - Outer mushroom chips no longer applied
547+ :host(mushroom-chips-card) ha-card {
548+ background: none !important;
549+ backdrop-filter: none !important;
550+ -webkit-backdrop-filter: none !important;
551+ box-shadow: none !important;
552+ }
553+ :host(mushroom-chips-card) ha-card::before {
554+ content: none !important;
555+ background: none !important;
556+ backdrop-filter: none !important;
557+ -webkit-backdrop-filter: none !important;
558+ }
471559
472560 # =========================
473561 # CARD-MOD-ROOT GLOBAL CSS
@@ -478,6 +566,7 @@ Frosted Glass:
478566 --ha-card-box-shadow: 0 12px 20px rgba(0, 0, 0, 0.28);
479567 --ha-card-border-width: 0.5px;
480568 --ha-card-border-color: rgba(60, 60, 60, 0.5);
569+ --ha-card-backdrop-filter: blur(8px) saturate(1.2); # 1.1.9 change - added blur & saturation for badges
481570
482571 /* Tokens - match structure to Light theme for consistency */
483572 --token-rgb-primary: 106, 116, 211;
0 commit comments