fix: el-tag styles for dark theme

This commit is contained in:
pa
2025-08-16 20:38:13 +09:00
committed by Natsumi
parent 2483f80483
commit c72688d722
5 changed files with 52 additions and 6 deletions

View File

@@ -341,9 +341,34 @@ div.x-friend-list
background-color: hsl($--theme-hue, $--theme-saturation, 24%);
}
.el-tag {
background-color: $--theme-bg-5;
border-color: $--theme-border-2;
color: $--theme-primary;
}
.el-tag.el-tag--success {
background-color: $--theme-bg-5;
border-color: $--theme-border-2;
color: $--theme-success;
}
.el-tag.el-tag--info {
background-color: $--theme-border-2;
border-color: hsl($--theme-hue, $--theme-saturation, 14%);
background-color: $--theme-bg-5;
border-color: $--theme-border-2;
color: $--theme-info;
}
.el-tag.el-tag--warning {
background-color: $--theme-bg-5;
border-color: $--theme-border-2;
color: $--theme-warning;
}
.el-tag.el-tag--danger {
background-color: $--theme-bg-5;
border-color: $--theme-border-2;
color: $--theme-danger;
}
.el-table__expanded-cell:hover {