From dfb9e1998debd82a3b73010c7fe76e0ceac493bf Mon Sep 17 00:00:00 2001 From: EliverLara Date: Mon, 27 Apr 2020 12:16:06 -0500 Subject: [PATCH] Gnome-shell: Remove default border on panel elements on v3.36 --- gnome-shell/_common.scss | 10 ++++++++++ gnome-shell/gnome-shell.css | 4 ++++ 2 files changed, 14 insertions(+) diff --git a/gnome-shell/_common.scss b/gnome-shell/_common.scss index ad87f93..343708a 100644 --- a/gnome-shell/_common.scss +++ b/gnome-shell/_common.scss @@ -846,6 +846,16 @@ StScrollBar { color: lighten($fg_color, 10%); &:focus, &:hover, &:active { color: lighten($fg_color, 10%); } } + + // Remove default bottom border + &.clock-display { + &:active, &:overview, &:focus, &:checked { + box-shadow: none; + .clock { + box-shadow: none; + } + } + } } .panel-status-indicators-box, diff --git a/gnome-shell/gnome-shell.css b/gnome-shell/gnome-shell.css index 232a992..1d64170 100644 --- a/gnome-shell/gnome-shell.css +++ b/gnome-shell/gnome-shell.css @@ -776,6 +776,10 @@ StScrollBar { .lock-screen #panel .panel-button:hover, .lock-screen #panel .panel-button:active { color: #909193; } + #panel .panel-button.clock-display:active, #panel .panel-button.clock-display:overview, #panel .panel-button.clock-display:focus, #panel .panel-button.clock-display:checked { + box-shadow: none; } + #panel .panel-button.clock-display:active .clock, #panel .panel-button.clock-display:overview .clock, #panel .panel-button.clock-display:focus .clock, #panel .panel-button.clock-display:checked .clock { + box-shadow: none; } #panel .panel-status-indicators-box, #panel .panel-status-menu-box { spacing: 2px; }