From 56a4d2d80c157df5a2fed1e5adb41291bd757d5d Mon Sep 17 00:00:00 2001 From: Sam Hewitt Date: Mon, 31 Jul 2023 11:01:40 -0230 Subject: [PATCH] style: Fix colored indicators lacking style in the overview Part-of: --- data/theme/gnome-shell-sass/widgets/_panel.scss | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/data/theme/gnome-shell-sass/widgets/_panel.scss b/data/theme/gnome-shell-sass/widgets/_panel.scss index d58bc6582..d36e3dc3c 100644 --- a/data/theme/gnome-shell-sass/widgets/_panel.scss +++ b/data/theme/gnome-shell-sass/widgets/_panel.scss @@ -94,6 +94,15 @@ $panel_transition_duration: 250ms; // same as the overview transition duration &.clock-display { @include panel_button($panel_system_fg_color, $fg:$panel_system_fg_color, $highlighted_child: true, $child_class:".clock"); } + + // unfortunate duplication so these indicators have styles + &.screen-recording-indicator { + @include panel_button($screenshot_ui_button_red, $flat: false); + } + + &.screen-sharing-indicator { + @include panel_button($warning_color, transparentize(black, 0.2), $flat: false); + } } }