Skip to content

Commit 616fb86

Browse files
authored
Merge pull request #29 from kbullet/main
Fix energy-sources-table
2 parents 00dfb9d + 537c750 commit 616fb86

File tree

3 files changed

+28
-0
lines changed

3 files changed

+28
-0
lines changed

themes/Frosted Glass Dark.yaml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,13 @@ Frosted Glass Dark:
1414
.bubble-button-card-container {
1515
background: rgba(30,30,30,0.4); # Semi-transparent dark for dark theme
1616
}
17+
/* FIX energy-sources-table */
18+
.mdc-data-table {
19+
background: none !important;
20+
}
21+
.mdc-data-table__header-cell {
22+
background: rgba(255, 255, 255, 0.1) !important;
23+
}
1724
1825
# Global CSS variables and styles injected into the :host (root) element
1926
card-mod-root: |

themes/Frosted Glass Light.yaml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,13 @@ Frosted Glass Light:
1414
.bubble-button-card-container {
1515
background: rgba(255,255,255,0.2); # Semi-transparent white for light theme
1616
}
17+
/* FIX energy-sources-table */
18+
.mdc-data-table {
19+
background: none !important;
20+
}
21+
.mdc-data-table__header-cell {
22+
background: rgba(255, 255, 255, 0.1) !important;
23+
}
1724
1825
# Global CSS variables and styles injected into the :host (root) element
1926
card-mod-root: |

themes/Frosted Glass.yaml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,13 @@ Frosted Glass:
1616
.bubble-button-card-container {
1717
background: rgba(255,255,255,0.2); # Semi-transparent white for light theme
1818
}
19+
/* FIX energy-sources-table */
20+
.mdc-data-table {
21+
background: none !important;
22+
}
23+
.mdc-data-table__header-cell {
24+
background: rgba(255, 255, 255, 0.1) !important;
25+
}
1926
2027
# Global CSS variables and styles injected into the :host (root) element
2128
card-mod-root: |
@@ -466,6 +473,13 @@ Frosted Glass:
466473
.bubble-button-card-container {
467474
background: rgba(30,30,30,0.4); # Semi-transparent dark for dark theme
468475
}
476+
/* FIX energy-sources-table */
477+
.mdc-data-table {
478+
background: none !important;
479+
}
480+
.mdc-data-table__header-cell {
481+
background: rgba(255, 255, 255, 0.1) !important;
482+
}
469483
# Global CSS variables and styles injected into the :host (root) element
470484
card-mod-root: |
471485
:host {

0 commit comments

Comments
 (0)