From 9751afaaec3876f26b5afa52f7501b9fca9466c6 Mon Sep 17 00:00:00 2001 From: Xaviju Date: Fri, 24 Jan 2025 13:42:20 +0100 Subject: [PATCH] :bug: Fix styles by webkit on autocomplete --- frontend/src/app/main/ui/ds/controls/input.scss | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/frontend/src/app/main/ui/ds/controls/input.scss b/frontend/src/app/main/ui/ds/controls/input.scss index 825b47d6e..dc8ac091c 100644 --- a/frontend/src/app/main/ui/ds/controls/input.scss +++ b/frontend/src/app/main/ui/ds/controls/input.scss @@ -65,6 +65,12 @@ &::placeholder { --input-fg-color: var(--color-foreground-secondary); } + + &:is(:autofill, :autofill:hover, :autofill:focus, :autofill:active) { + -webkit-text-fill-color: var(--input-fg-color); + -webkit-background-clip: text; + caret-color: var(--input-bg-color); + } } .icon {