From bb096724b24ee6e31fdd5b21555fd216450cc362 Mon Sep 17 00:00:00 2001 From: rr-bw <102181210+rr-bw@users.noreply.github.com> Date: Tue, 12 Dec 2023 10:59:03 -0800 Subject: [PATCH] update account switcher styling for all themes (#7182) --- .../account-switcher.component.html | 6 +++--- .../account-switching/account.component.html | 19 ++++++++++------- apps/browser/src/popup/scss/box.scss | 21 +++++++++++++++++++ 3 files changed, 35 insertions(+), 11 deletions(-) diff --git a/apps/browser/src/auth/popup/account-switching/account-switcher.component.html b/apps/browser/src/auth/popup/account-switching/account-switcher.component.html index f742187014..364ee07fba 100644 --- a/apps/browser/src/auth/popup/account-switching/account-switcher.component.html +++ b/apps/browser/src/auth/popup/account-switching/account-switcher.component.html @@ -40,7 +40,7 @@
diff --git a/apps/browser/src/popup/scss/box.scss b/apps/browser/src/popup/scss/box.scss index c026c78088..d98c29176d 100644 --- a/apps/browser/src/popup/scss/box.scss +++ b/apps/browser/src/popup/scss/box.scss @@ -767,3 +767,24 @@ form { } } } + +.account-switcher-row { + @include themify($themes) { + color: themed("textColor"); + background-color: themed("boxBackgroundColor"); + } + + &:hover, + &:focus, + &.active { + @include themify($themes) { + background-color: themed("listItemBackgroundHoverColor"); + } + } + + &-details { + @include themify($themes) { + color: themed("mutedColor"); + } + } +}