light theme fixes

This commit is contained in:
Alejandro Gomez
2023-01-21 22:34:52 +01:00
parent abeb2f5a6c
commit bdf446ef3f
4 changed files with 21 additions and 18 deletions

View File

@ -146,20 +146,23 @@
color: var(--highlight);
}
@media (prefers-color-scheme: light) {
.indented .active {
background-color: var(--gray-secondary);
}
.note.active>.header .reply {
color: var(--font-secondary-color);
}
.light .indented .active {
background-color: var(--gray-secondary);
}
.note.active>.header>.info {
color: var(--font-secondary-color);
}
.light .note.active>.header .reply {
color: var(--font-secondary-color);
}
.note.active>.footer>.reaction-pill {
color: var(--font-secondary-color);
}
}
.light .note.active>.header>.info {
color: var(--font-secondary-color);
}
.light .note.active>.footer>.reaction-pill {
color: var(--note-bg);
}
.light .note.active>.footer>.reaction-pill.reacted {
color: var(--highlight);
}