8 lines
299 B
CSS
8 lines
299 B
CSS
/* 暗黑模式通过 CSS 自定义变量,官方链接:https://element-plus.org/zh-CN/guide/dark-mode.html#%E9%80%9A%E8%BF%87-css */
|
||
html.dark {
|
||
.el-table {
|
||
/* 自定义表格选中高亮时当前行的背景颜色 */
|
||
--el-table-current-row-bg-color: var(--el-fill-color-light);
|
||
}
|
||
}
|