Dark Theme: Fix search highlight text color (#1687)

This commit is contained in:
Alexander Zinchuk 2022-02-02 22:49:13 +01:00
parent 27d7f92756
commit 71ef93e993
3 changed files with 13 additions and 0 deletions

View File

@ -30,6 +30,10 @@
background: #CAE3F7;
border-radius: 0.25rem;
padding: 0 0.125rem;
.theme-dark & {
--color-text: #000;
}
}
}

View File

@ -185,9 +185,14 @@
}
.matching-text-highlight {
color: var(--color-text);
background: #CAE3F7;
border-radius: 0.25rem;
padding: 0 0.125rem;
.theme-dark & {
--color-text: #000;
}
}
.message-title {

View File

@ -301,6 +301,10 @@
background: #CAE3F7;
border-radius: 0.25rem;
padding: 0 0.125rem;
.theme-dark & {
--color-text: #000;
}
}
}