From 57e7e5a195e9188f33caa0dce172cafb44379433 Mon Sep 17 00:00:00 2001 From: vinceliuice Date: Thu, 18 Apr 2024 15:49:12 +0800 Subject: [PATCH] Fixed #1044 --- src/sass/gnome-shell/common/_panel.scss | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/src/sass/gnome-shell/common/_panel.scss b/src/sass/gnome-shell/common/_panel.scss index 1a13f394..ae0ba7ba 100644 --- a/src/sass/gnome-shell/common/_panel.scss +++ b/src/sass/gnome-shell/common/_panel.scss @@ -203,6 +203,10 @@ $panel_height: $menuitem_size; padding: 0 $base_padding + 12px !important; margin: 0 !important; } + + .messages-indicator { + icon-size: $scalable_icon_size; + } } &:hover, &:active, &:overview, &:focus, &:checked { @@ -260,6 +264,18 @@ $panel_height: $menuitem_size; @extend %normal_activites; } } + + // screen activity indicators + &.screen-recording-indicator, + &.screen-sharing-indicator { + StBoxLayout { + spacing: $scaled_padding; + } + + StIcon { + icon-size: $scalable_icon_size; + } + } } Gjs_AggregateMenu.panel-button, @@ -342,4 +358,7 @@ $panel_height: $menuitem_size; // indicator for active .screencast-indicator, .remote-access-indicator { color: $warning_color; } + + // important privacy related indicators + .privacy-indicator { color: $warning_color; } }