Skip to content

Commit

Permalink
fix: make table links primary instead of purple (#7106)
Browse files Browse the repository at this point in the history
  • Loading branch information
elevatebart authored Jan 31, 2025
1 parent 83c7b2e commit 4f9b7f7
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 18 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -211,14 +211,6 @@ code {
.nextscheduled {
--el-table-tr-bg-color: var(--ks-background-body) !important;
background: var(--ks-background-body);
// FIXME: choose variables
& a {
color: #8e71f7;
html.dark & {
color: #e0e0fc;
}
}
}
.next-toggle {
Expand Down
10 changes: 0 additions & 10 deletions ui/src/components/layout/DataTable.vue
Original file line number Diff line number Diff line change
Expand Up @@ -56,13 +56,3 @@
},
};
</script>

<style scoped lang="scss">
:deep(.el-table) {
td {
.el-tag {
margin-right: .3rem;
}
}
}
</style>
13 changes: 13 additions & 0 deletions ui/src/styles/layout/element-plus-overload.scss
Original file line number Diff line number Diff line change
Expand Up @@ -470,6 +470,19 @@ form.ks-horizontal {
opacity: 0.5;
}
}

td {
.el-tag {
margin-right: .3rem;
}

a {
color: var(--ks-content-primary);
&:hover{
text-decoration: underline;
}
}
}
}

// tabs
Expand Down

0 comments on commit 4f9b7f7

Please sign in to comment.