From d07508b9a42b7153ca19333f35a350aa60c94ac2 Mon Sep 17 00:00:00 2001 From: Mark Percival Date: Mon, 20 May 2024 17:55:16 -0400 Subject: [PATCH] Fix: Application Search text color should be light in dark mode (#9788) Fixes #8707 --- web/src/user/LibraryPage/ApplicationSearch.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/web/src/user/LibraryPage/ApplicationSearch.ts b/web/src/user/LibraryPage/ApplicationSearch.ts index 5d13930dfd..7e6f40f53a 100644 --- a/web/src/user/LibraryPage/ApplicationSearch.ts +++ b/web/src/user/LibraryPage/ApplicationSearch.ts @@ -35,6 +35,9 @@ export class LibraryPageApplicationList extends AKElement { input:focus { outline: 0; } + :host([theme="dark"]) input { + color: var(--ak-dark-foreground) !important; + } `, ]; }