style: Fix colored indicators lacking style in the overview

Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/2823>
This commit is contained in:
Sam Hewitt 2023-07-31 11:01:40 -02:30 committed by Marge Bot
parent b6259428f5
commit 56a4d2d80c

View File

@ -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);
}
}
}