From 53b0e793a5ef1e79c3974ac4f7ecabbd26186166 Mon Sep 17 00:00:00 2001 From: "robert.mader@collabora.com" Date: Sat, 29 Jul 2023 16:58:39 +0300 Subject: [PATCH] panel: Use privacy_indicator_color For privacy indicators and screen sharing. For the later also remove the transparentize so it becomes more similar to the screen recording indicator. Part-of: --- data/theme/gnome-shell-sass/widgets/_panel.scss | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/data/theme/gnome-shell-sass/widgets/_panel.scss b/data/theme/gnome-shell-sass/widgets/_panel.scss index bffa40330..b8b2a9e3a 100644 --- a/data/theme/gnome-shell-sass/widgets/_panel.scss +++ b/data/theme/gnome-shell-sass/widgets/_panel.scss @@ -1,6 +1,8 @@ /* Top Bar */ // a.k.a. the panel +$privacy_indicator_color: $orange_3; + $panel_bg_color: if($variant == 'light', $light_3, $dark_5); $panel_fg_color: if($variant == 'light', $fg_color, darken($fg_color, 5%)); $panel_border_color: if($variant == 'light', darken($panel_bg_color, 2%), $panel_bg_color); @@ -74,7 +76,7 @@ $panel_transition_duration: 250ms; // same as the overview transition duration } &.screen-sharing-indicator { - @include panel_button($warning_color, transparentize(black, 0.2), $flat: false); + @include panel_button($privacy_indicator_color, $flat: false); } // clock @@ -101,7 +103,7 @@ $panel_transition_duration: 250ms; // same as the overview transition duration } // important privacy related indicators - .privacy-indicator { color: $warning_color; } + .privacy-indicator { color: $privacy_indicator_color; } } // App Menu