Gnome-shell 45: Fix issue with calnedar items

This commit is contained in:
EliverLara
2023-11-10 15:49:45 -06:00
parent da0e2689ae
commit c4ffc6d300
2 changed files with 7 additions and 7 deletions
+2 -2
View File
@@ -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;
+5 -5
View File
@@ -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%; }