Skip to content

Commit 74606af

Browse files
authored
fix(theme): [grid,switch] update dark theme (#3242)
1 parent 466796a commit 74606af

25 files changed

+34
-40
lines changed

examples/sites/demos/pc/app/grid/custom-style/body-style-composition-api.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,6 +112,6 @@ const cellClassName = ({ rowIndex, columnIndex }) => {
112112
font-size: 16px;
113113
padding: 15px;
114114
font-weight: bolder;
115-
color: #444;
115+
color: var(--tv-color-text, #191919);
116116
}
117117
</style>

examples/sites/demos/pc/app/grid/custom-style/body-style.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,6 +121,6 @@ export default {
121121
font-size: 16px;
122122
padding: 15px;
123123
font-weight: bolder;
124-
color: #444;
124+
color: var(--tv-color-text, #191919);
125125
}
126126
</style>

examples/sites/demos/pc/app/grid/custom-style/footer-style-composition-api.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,7 @@ const footerClassName = () => {
147147
font-size: 16px;
148148
padding: 15px;
149149
font-weight: bolder;
150-
color: #444;
150+
color: var(--tv-color-text, #191919);
151151
}
152152
.footer-style :deep(.tiny-grid-footer__column.footer__cell--blue) {
153153
background-color: #2db7f5;

examples/sites/demos/pc/app/grid/custom-style/footer-style.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ export default {
156156
font-size: 16px;
157157
padding: 15px;
158158
font-weight: bolder;
159-
color: #444;
159+
color: var(--tv-color-text, #191919);
160160
}
161161
.footer-style :deep(.tiny-grid-footer__column.footer__cell--blue) {
162162
background-color: #2db7f5;

examples/sites/demos/pc/app/grid/custom-style/header-style-composition-api.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ const headerClassName = () => {
106106
font-size: 16px;
107107
padding: 15px;
108108
font-weight: bolder;
109-
color: #444;
109+
color: var(--tv-color-text, #191919);
110110
}
111111
.header-style :deep(.tiny-grid-header__row.header__row--red) {
112112
background-color: palevioletred;

examples/sites/demos/pc/app/grid/custom-style/header-style.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ export default {
114114
font-size: 16px;
115115
padding: 15px;
116116
font-weight: bolder;
117-
color: #444;
117+
color: var(--tv-color-text, #191919);
118118
}
119119
.header-style :deep(.tiny-grid-header__row.header__row--red) {
120120
background-color: palevioletred;

examples/sites/demos/pc/app/grid/custom/multiple-column-sort-composition-api.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929

3030
<script setup>
3131
import { ref } from 'vue'
32-
import { TinyGrid, TinyGridColumn, TinyPager, TinyGridToolbar } from '@opentiny/vue'
32+
import { TinyGrid, TinyGridColumn, TinyGridToolbar } from '@opentiny/vue'
3333
3434
const tableData = ref([
3535
{
@@ -107,6 +107,6 @@ const multiSortMethod = ({ $table, tableData, sortColumns }) => {
107107
font-size: 16px;
108108
padding: 15px;
109109
font-weight: bolder;
110-
color: #444;
110+
color: var(--tv-color-text, #191919);
111111
}
112112
</style>

examples/sites/demos/pc/app/grid/custom/multiple-column-sort.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,6 +118,6 @@ export default {
118118
font-size: 16px;
119119
padding: 15px;
120120
font-weight: bolder;
121-
color: #444;
121+
color: var(--tv-color-text, #191919);
122122
}
123123
</style>

examples/sites/demos/pc/app/grid/edit/editing-composition-api.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,6 @@ const tableData = ref([
9898
font-size: 16px;
9999
padding: 15px;
100100
font-weight: bolder;
101-
color: #444;
101+
color: var(--tv-color-text, #191919);
102102
}
103103
</style>

examples/sites/demos/pc/app/grid/edit/editing.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,6 @@ export default {
107107
font-size: 16px;
108108
padding: 15px;
109109
font-weight: bolder;
110-
color: #444;
110+
color: var(--tv-color-text, #191919);
111111
}
112112
</style>

0 commit comments

Comments
 (0)