From a7800517200ec67dfa8e58d5540b71d2a6ff165a Mon Sep 17 00:00:00 2001 From: Robert Pintilii Date: Wed, 26 Oct 2022 09:09:58 +0300 Subject: [PATCH] fix(input) Fix background color (#12452) Use theme background on autofill Firefox --- react/features/base/ui/components/web/Input.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/react/features/base/ui/components/web/Input.tsx b/react/features/base/ui/components/web/Input.tsx index f4a843155..503744ef3 100644 --- a/react/features/base/ui/components/web/Input.tsx +++ b/react/features/base/ui/components/web/Input.tsx @@ -49,6 +49,7 @@ const useStyles = makeStyles()((theme: Theme) => { input: { backgroundColor: theme.palette.ui03, + background: theme.palette.ui03, color: theme.palette.text01, ...withPixelLineHeight(theme.typography.bodyShortRegular), padding: '10px 16px',