Skip to content

Commit ecae271

Browse files
Updated templates
1 parent fb34ca6 commit ecae271

File tree

2 files changed

+21
-10
lines changed

2 files changed

+21
-10
lines changed

src/playground/configs/templates/ClientTable.vue

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -512,4 +512,18 @@ function fetchClientData(drilldown = null) {
512512
// color: #080808 !important;
513513
// }
514514
// }
515+
516+
// ? Sometimes you might want to adjust the drilldown background color //
517+
// .v-drilldown-table {
518+
// &--level-2 {
519+
// &,
520+
// td {
521+
// background-color: #404040 !important;
522+
// }
523+
524+
// th {
525+
// background-color: #353535 !important;
526+
// }
527+
// }
528+
// }
515529
</style>

src/playground/configs/templates/tableDefaults.ts

Lines changed: 7 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,22 +2,19 @@ export default {
22
// color: 'primary', // ? Doesn't seem to work - Vuetify prop
33
// colors: null,
44
colors: {
5-
default: {
6-
base: 'primary',
7-
bg: 'primary',
8-
border: 'primary',
9-
text: 'on-primary',
10-
},
115
footer: {
12-
bg: '--v-theme-surface',
13-
text: '--v-theme-on-surface',
6+
background: '--v-theme-surface',
7+
color: '--v-theme-on-surface',
148
},
159
header: {
16-
bg: 'primary',
17-
text: 'on-primary',
10+
background: 'primary',
11+
color: 'on-primary',
1812
},
1913
percentageChange: 15,
2014
percentageDirection: 'desc',
15+
table: {
16+
bottomBorder: 'primary',
17+
},
2118
},
2219
// customFilter: undefined, // ? Needs Testing - Vuetify prop
2320
// customKeyFilter: undefined, // ? Needs Testing - Vuetify prop

0 commit comments

Comments
 (0)