fix: use grey-100 instead of light so that it is properly set in dark mode
This commit is contained in:
parent
9716517ffa
commit
d1f22c5b43
3 changed files with 5 additions and 5 deletions
|
@ -294,7 +294,7 @@ export default defineComponent({
|
||||||
}
|
}
|
||||||
|
|
||||||
&:hover {
|
&:hover {
|
||||||
background: var(--light);
|
background: var(--grey-100);
|
||||||
}
|
}
|
||||||
|
|
||||||
.text {
|
.text {
|
||||||
|
|
|
@ -106,7 +106,7 @@ function toggleFavoriteList(list: ListModel) {
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
|
|
||||||
&.has-light-text .title {
|
&.has-light-text .title {
|
||||||
color: var(--light);
|
color: var(--grey-100);
|
||||||
}
|
}
|
||||||
|
|
||||||
&.has-background, .list-background {
|
&.has-background, .list-background {
|
||||||
|
|
|
@ -520,14 +520,14 @@ $gantt-vertical-border-color: var(--grey-100);
|
||||||
}
|
}
|
||||||
|
|
||||||
&.has-light-text {
|
&.has-light-text {
|
||||||
color: var(--light);
|
color: var(--grey-100);
|
||||||
|
|
||||||
&.done span:after {
|
&.done span:after {
|
||||||
border-top: 1px solid var(--light);
|
border-top: 1px solid var(--grey-100);
|
||||||
}
|
}
|
||||||
|
|
||||||
.edit-toggle {
|
.edit-toggle {
|
||||||
color: var(--light);
|
color: var(--grey-100);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue