From de2f7f90cd1bcb23160cdb5f3565272af5f5e86b Mon Sep 17 00:00:00 2001 From: Bill Thornton Date: Thu, 9 Sep 2021 22:38:54 -0400 Subject: [PATCH 1/2] Fix media indicator color --- src/themes/appletv/theme.css | 1 + src/themes/blueradiance/theme.css | 1 + src/themes/dark/theme.css | 1 + src/themes/light/theme.css | 1 + src/themes/purplehaze/theme.css | 1 + src/themes/wmc/theme.css | 1 + 6 files changed, 6 insertions(+) diff --git a/src/themes/appletv/theme.css b/src/themes/appletv/theme.css index b322f697c..849ef0b93 100644 --- a/src/themes/appletv/theme.css +++ b/src/themes/appletv/theme.css @@ -347,6 +347,7 @@ html { .countIndicator, .fullSyncIndicator, +.mediaSourceIndicator, .playedIndicator { background: #00a4dc; } diff --git a/src/themes/blueradiance/theme.css b/src/themes/blueradiance/theme.css index 9cd209b45..f27abfc11 100644 --- a/src/themes/blueradiance/theme.css +++ b/src/themes/blueradiance/theme.css @@ -335,6 +335,7 @@ html { .countIndicator, .fullSyncIndicator, +.mediaSourceIndicator, .playedIndicator { background: #00a4dc; } diff --git a/src/themes/dark/theme.css b/src/themes/dark/theme.css index 5a4fc9ce3..f599ade05 100644 --- a/src/themes/dark/theme.css +++ b/src/themes/dark/theme.css @@ -312,6 +312,7 @@ html { .countIndicator, .fullSyncIndicator, +.mediaSourceIndicator, .playedIndicator { background: #00a4dc; } diff --git a/src/themes/light/theme.css b/src/themes/light/theme.css index ebb65dfd0..24e40431c 100644 --- a/src/themes/light/theme.css +++ b/src/themes/light/theme.css @@ -332,6 +332,7 @@ html { .countIndicator, .fullSyncIndicator, +.mediaSourceIndicator, .playedIndicator { background: #00a4dc; } diff --git a/src/themes/purplehaze/theme.css b/src/themes/purplehaze/theme.css index 8ca8b1677..132418712 100644 --- a/src/themes/purplehaze/theme.css +++ b/src/themes/purplehaze/theme.css @@ -425,6 +425,7 @@ a[data-role=button] { .countIndicator, .fullSyncIndicator, +.mediaSourceIndicator, .playedIndicator { background: rgb(12, 232, 214); } diff --git a/src/themes/wmc/theme.css b/src/themes/wmc/theme.css index 067d2887a..92175f309 100644 --- a/src/themes/wmc/theme.css +++ b/src/themes/wmc/theme.css @@ -315,6 +315,7 @@ html { .countIndicator, .fullSyncIndicator, +.mediaSourceIndicator, .playedIndicator { background: #00a4dc; } From 82c038f952cd0f323e8e13c1d65f652912f4c4e7 Mon Sep 17 00:00:00 2001 From: Bill Thornton Date: Mon, 13 Sep 2021 10:44:50 -0400 Subject: [PATCH 2/2] Fix additional inconsistent styles on source indicator --- src/components/cardbuilder/card.scss | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/src/components/cardbuilder/card.scss b/src/components/cardbuilder/card.scss index 610645816..1fe8cd1c4 100644 --- a/src/components/cardbuilder/card.scss +++ b/src/components/cardbuilder/card.scss @@ -150,11 +150,14 @@ button::-moz-focus-inner { left: 0.3em; text-align: center; vertical-align: middle; - width: 1.6em; - height: 1.6em; + font-size: 88%; + font-weight: 500; + width: 2em; + height: 2em; border-radius: 50%; color: #fff; background: rgb(51, 136, 204); + box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2); } .cardImageContainer {