light theme fixes

This commit is contained in:
Alejandro Gomez 2023-01-21 22:34:52 +01:00
parent abeb2f5a6c
commit bdf446ef3f
No known key found for this signature in database
GPG Key ID: 4DF39E566658C817
4 changed files with 21 additions and 18 deletions

View File

@ -1,5 +1,5 @@
.follows-you {
color: var(--font-tertiary-color);
color: var(--font-color);
font-size: var(--font-size-tiny);
margin-left: .2em;
font-weight: normal

View File

@ -1,5 +1,5 @@
.lnurl-tip {
background-color: var(--gray-tertiary);
background-color: var(--note-bg);
padding: 10px;
border-radius: 10px;
width: 500px;

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);
}

View File

@ -1,11 +1,11 @@
.pill {
color: var(--font-color);
font-size: var(--font-size-small);
display: inline-block;
background-color: var(--gray-tertiary);
background-color: var(--gray-secondary);
padding: 2px 10px;
border-radius: 10px;
user-select: none;
color: var(--font-color);
margin: 2px 5px;
}