From da9dca6dd601fdfe3550ff128cbbdaa8def0c67b Mon Sep 17 00:00:00 2001 From: "Patrick H. Lauke" Date: Tue, 16 Aug 2022 19:51:45 +0100 Subject: [PATCH] Don't suppress outline for input[type="file"] controls (#3210) Closes https://github.com/bitwarden/clients/issues/3209 --- apps/browser/src/popup/scss/box.scss | 2 +- apps/desktop/src/scss/box.scss | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/browser/src/popup/scss/box.scss b/apps/browser/src/popup/scss/box.scss index 9629ddae6f8..7139f4514dc 100644 --- a/apps/browser/src/popup/scss/box.scss +++ b/apps/browser/src/popup/scss/box.scss @@ -441,7 +441,7 @@ } } - &:focus { + &:not([type="file"]):focus { outline: none; } } diff --git a/apps/desktop/src/scss/box.scss b/apps/desktop/src/scss/box.scss index aa11b408a42..b3bd4004e24 100644 --- a/apps/desktop/src/scss/box.scss +++ b/apps/desktop/src/scss/box.scss @@ -343,7 +343,7 @@ } } - &:focus { + &:not([type="file"]):focus { outline: none; } }