From c4ffc6d3001acedc1d5aa8deed654060befdfea3 Mon Sep 17 00:00:00 2001 From: EliverLara Date: Fri, 10 Nov 2023 15:47:23 -0600 Subject: [PATCH] Gnome-shell 45: Fix issue with calnedar items --- gnome-shell/_common.scss | 4 ++-- gnome-shell/gnome-shell.css | 10 +++++----- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/gnome-shell/_common.scss b/gnome-shell/_common.scss index 3617c21..b6612e7 100644 --- a/gnome-shell/_common.scss +++ b/gnome-shell/_common.scss @@ -1032,7 +1032,7 @@ $slider_size: 19px; color:darken($fg_color, 7%); } - .calendar-day-base { + .calendar-day-base, .calendar-day { font-size: 80%; text-align: center; width: 2.4em; height: 2.4em; @@ -1050,7 +1050,7 @@ $slider_size: 19px; color: lighten($selected_fg_color,5%); background-color: $selected_bg_color; border-color: transparent; //avoid jumparound due to today - box-shadow: none; + box-shadow: inset 0 0 0 2px transparentize($selected_bg_color, 0.4) !important; } &.calendar-day-heading { //day of week heading color: $fg_color; diff --git a/gnome-shell/gnome-shell.css b/gnome-shell/gnome-shell.css index 786260c..331ca5e 100644 --- a/gnome-shell/gnome-shell.css +++ b/gnome-shell/gnome-shell.css @@ -881,7 +881,7 @@ StScrollBar { .calendar-change-month-forward StIcon { color: #c1cbdc; } -.calendar-day-base { +.calendar-day-base, .calendar-day { font-size: 80%; text-align: center; width: 2.4em; @@ -891,15 +891,15 @@ StScrollBar { border-radius: 99px; color: #d8dee9; background-gradient-direction: none; } - .calendar-day-base:hover, .calendar-day-base:focus { + .calendar-day-base:hover, .calendar-day-base:focus, .calendar-day:hover, .calendar-day:focus { background-color: #3d4555; box-shadow: none; } - .calendar-day-base:active, .calendar-day-base:selected { + .calendar-day-base:active, .calendar-day-base:selected, .calendar-day:active, .calendar-day:selected { color: white; background-color: #81a1c1; border-color: transparent; - box-shadow: none; } - .calendar-day-base.calendar-day-heading { + box-shadow: inset 0 0 0 2px rgba(143, 188, 187, 0.3) !important; } + .calendar-day-base.calendar-day-heading, .calendar-day.calendar-day-heading { color: #d8dee9; margin-top: 1em; font-size: 70%; }