Gnome-shell: Fix calendar and workspace-switcher issues in gnome v3.38

This commit is contained in:
EliverLara
2020-11-06 13:59:52 -06:00
parent f9fd1a80de
commit 9dd025710c
2 changed files with 34 additions and 5 deletions

View File

@@ -724,7 +724,7 @@ StScrollBar {
height: 50px;
background-color: $selected_bg_color;
color: $selected_fg_color;
//background-image: url("resource:///org/gnome/shell/theme/assets/ws-switch-arrow-up.png");
border: none;
background-size: 32px;
border-radius: 8px;
}
@@ -1041,12 +1041,29 @@ StScrollBar {
.calendar-nonwork-day {
color: $insensitive_fg_color;
}
// Today
.calendar-today {
font-weight: bold;
//color: lighten($fg_color,10%);
//background-color: darken($bg_color,5%);
border: 1px solid transparentize($borders_color,0.5);
border: 1px solid transparent;
background-color: $selected_bg_color;
color: $selected_fg_color;
&:hover,&:focus {
background-color:lighten($selected_bg_color, 3%);
color: $selected_fg_color;
}
&:active,&:selected {
background-color: $selected_bg_color;
color: $selected_fg_color;
&:hover,&:focus {
background-color:lighten($selected_bg_color, 3%);
color: $selected_fg_color;
}
}
}
.calendar-day-with-events {
color: lighten($fg_color,10%);
font-weight: bold;

View File

@@ -668,6 +668,7 @@ StScrollBar {
height: 50px;
background-color: #0072ff;
color: #f7f7f7;
border: none;
background-size: 32px;
border-radius: 8px; }
@@ -956,7 +957,18 @@ StScrollBar {
.calendar-today {
font-weight: bold;
border: 1px solid rgba(22, 24, 25, 0.5); }
border: 1px solid transparent;
background-color: #0072ff;
color: #f7f7f7; }
.calendar-today:hover, .calendar-today:focus {
background-color: #0f7aff;
color: #f7f7f7; }
.calendar-today:active, .calendar-today:selected {
background-color: #0072ff;
color: #f7f7f7; }
.calendar-today:active:hover, .calendar-today:active:focus, .calendar-today:selected:hover, .calendar-today:selected:focus {
background-color: #0f7aff;
color: #f7f7f7; }
.calendar-day-with-events {
color: #afb5be;