fix sort arrows on dark vanilla colors (#1227)

This commit is contained in:
Kyler Li
2025-05-06 07:40:38 -07:00
committed by GitHub
parent 668b64665e
commit cae493dd2b
2 changed files with 7 additions and 2 deletions

View File

@@ -185,8 +185,10 @@ li[class='el-menu-item is-active'] {
color: #eee;
}
.el-table .descending .sort-caret.descending,
.el-table .ascending .sort-caret.ascending {
border-bottom-color: var(--dv_bright);
}
.el-table .descending .sort-caret.descending {
border-top-color: var(--dv_bright);
}

View File

@@ -272,8 +272,11 @@ a {
.el-slider__button {
border-color: var(--theme-text-muted) !important;
}
.el-table .descending .sort-caret.descending,
.el-table .ascending .sort-caret.ascending {
border-bottom-color: var(--theme-text) !important;
}
.el-table .descending .sort-caret.descending {
border-top-color: var(--theme-text) !important;
}