From a37f91277c75d4c54a03a830eed18396385420b8 Mon Sep 17 00:00:00 2001 From: Victoria League Date: Thu, 1 Aug 2024 10:29:55 -0400 Subject: [PATCH] [CL-377] Fix extension style conflict for input background (#10351) --- apps/browser/src/popup/scss/base.scss | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/apps/browser/src/popup/scss/base.scss b/apps/browser/src/popup/scss/base.scss index 80c75360872..eb467d7d3a9 100644 --- a/apps/browser/src/popup/scss/base.scss +++ b/apps/browser/src/popup/scss/base.scss @@ -83,9 +83,9 @@ a:not(popup-page a, popup-tab-navigation a) { } } -input, -select, -textarea { +input:not(bit-form-field input), +select:not(bit-form-field select), +textarea:not(bit-form-field textarea) { @include themify($themes) { color: themed("textColor"); background-color: themed("inputBackgroundColor"); @@ -286,7 +286,7 @@ header:not(bit-callout header, bit-dialog header, popup-page header) { } } - input { + input:not(bit-form-field input) { width: 100%; margin: 0; border: none;