From 89acc7a342cfdf10bff41e0836b06f43ed4492e2 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 795cc0b..a73048a 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 c93dd64..761de6c 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: #afb5be; } + #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; }