From ba5b24c69bb803605007d58d2e249dc5033d7bf3 Mon Sep 17 00:00:00 2001 From: EliverLara Date: Mon, 25 Apr 2022 12:59:22 -0500 Subject: [PATCH] Gnome-shell: Fix issue with page indicator, fixes #204 --- gnome-shell/_common.scss | 6 +++--- gnome-shell/gnome-shell.css | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/gnome-shell/_common.scss b/gnome-shell/_common.scss index 21457898..19b33e62 100644 --- a/gnome-shell/_common.scss +++ b/gnome-shell/_common.scss @@ -1599,14 +1599,14 @@ StScrollBar { } .page-indicator { - padding: 15px 20px; - + padding: 6px 12px; + .page-indicator-icon { width: 12px; height: 12px; border-radius: 12px; background-image: none; - background-color: rgba(255, 255, 255, 0.3); + background-color: lighten($base_color, 30%); } &:hover .page-indicator-icon { diff --git a/gnome-shell/gnome-shell.css b/gnome-shell/gnome-shell.css index 3b638eea..78f900ab 100644 --- a/gnome-shell/gnome-shell.css +++ b/gnome-shell/gnome-shell.css @@ -1423,13 +1423,13 @@ StScrollBar { spacing-columns: 5px; } .page-indicator { - padding: 15px 20px; } + padding: 6px 12px; } .page-indicator .page-indicator-icon { width: 12px; height: 12px; border-radius: 12px; background-image: none; - background-color: rgba(255, 255, 255, 0.3); } + background-color: #6f7d98; } .page-indicator:hover .page-indicator-icon { background-image: none; background-color: rgba(255, 255, 255, 0.5); }