Skip to content
Snippets Groups Projects
Unverified Commit c158eed9 authored by Roeland Jago Douma's avatar Roeland Jago Douma Committed by GitHub
Browse files

Merge pull request #19676 from nextcloud/bugfix/noid/hover-color-of-search-results

Theme search results
parents 437bd209 1f50e5ff
No related branches found
No related tags found
No related merge requests found
...@@ -38,7 +38,7 @@ ...@@ -38,7 +38,7 @@
} }
tr { tr {
&.result { &.result {
border-bottom: 1px solid $color-border; border-bottom: 1px solid var(--color-border);
* { * {
cursor: pointer; cursor: pointer;
} }
...@@ -48,7 +48,7 @@ ...@@ -48,7 +48,7 @@
} }
&:hover, &:hover,
&.current { &.current {
background-color: nc-darken($color-main-background, 3%); background-color: var(--color-primary-light);
} }
td { td {
padding: 5px 9px; padding: 5px 9px;
...@@ -79,13 +79,13 @@ ...@@ -79,13 +79,13 @@
} }
.text { .text {
white-space: normal; white-space: normal;
color: #545454; color: var(--color-primary-text);
} }
.path { .path {
opacity: 0.5; opacity: 0.5;
} }
.text em { .text em {
color: #545454; color: var(--color-primary-text);
font-weight: bold; font-weight: bold;
opacity: 1; opacity: 1;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment