Skip to content

Commit 75b8b4a

Browse files
authored
fix: use proper css variables for table colors (#7049)
* fix: use proper css variables for table colors * update ui-libs
1 parent c9cb259 commit 75b8b4a

File tree

3 files changed

+8
-7
lines changed

3 files changed

+8
-7
lines changed

ui/package-lock.json

+4-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

ui/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
},
2020
"dependencies": {
2121
"@js-joda/core": "^5.6.3",
22-
"@kestra-io/ui-libs": "^0.0.119",
22+
"@kestra-io/ui-libs": "^0.0.122",
2323
"@vue-flow/background": "^1.3.2",
2424
"@vue-flow/controls": "^1.1.2",
2525
"@vue-flow/core": "^1.42.1",

ui/src/styles/layout/element-plus-overload.scss

+3-2
Original file line numberDiff line numberDiff line change
@@ -370,9 +370,10 @@ form.ks-horizontal {
370370
--el-table-border: 1px solid var(--ks-border-primary);
371371

372372
--el-table-header-text-color: var(--ks-content-primary);
373-
--el-table-row-hover-bg-color: var(--bs-gray-200);
374373
--el-table-header-bg-color: var(--ks-background-table-header);
375-
--el-table-tr-bg-color: var(--ks-background-card);
374+
--el-table-row-hover-bg-color: var(--ks-background-table-row-hover);
375+
--el-table-header-bg-color: var(--ks-background-table-header);
376+
--el-table-tr-bg-color: var(--ks-background-table-row);
376377

377378
outline: 1px solid var(--ks-border-primary);
378379
border-radius: var(--bs-border-radius-lg);

0 commit comments

Comments
 (0)