chore: fix search result color (#22962)

Some parts of the search results window are hard to read. Let's fix
this.

Before: see live website
After: 

![Screenshot 2025-07-01 at 12 45
40](https://github.com/user-attachments/assets/34e8e10c-d2ab-4c8b-9d83-07299915464e)
![Screenshot 2025-07-01 at 12 45
49](https://github.com/user-attachments/assets/a851dcdb-5423-40bc-9a8b-19cd949c408c)
This commit is contained in:
Arthur
2025-07-01 13:00:56 +02:00
committed by GitHub
parent 266da0b4ec
commit 03ae6f16f8
4 changed files with 17 additions and 7 deletions

View File

@@ -95,3 +95,9 @@ input[type="search"]::-ms-clear {
.navbar-group:first-of-type {
margin-top: 0.2rem !important;
}
#search-page-results {
mark:where(.dark, .dark *) {
color: var(--color-blue-400);
}
}

View File

@@ -253,3 +253,7 @@
@utility chip {
@apply border-divider-light dark:border-divider-dark inline-flex items-center gap-1 rounded-full border bg-gray-100 px-2 text-sm text-gray-800 select-none dark:bg-gray-700 dark:text-gray-200;
}
@utility pagination-link {
@apply flex items-center justify-center rounded-sm p-2;
}