by roundabout, Saturday, 3 April 2021, 00:09:03 (1617408543), pushed by roundabout, Sunday, 11 May 2025, 13:23:03 (1746969783)
Author identity: nana-4 <hnmaigo@gmail.com>
043402effbbf04be27a053411652229126fc6467
src/gnome-shell/sass/components/base/_scrollbar.scss
@@ -42,21 +42,21 @@ StScrollBar {
}
}
%scrollbar-on-dark {
@mixin color($color) {
StBin#trough {
background-color: theme-color.disabled-stroke(theme-color.$on-dark);
background-color: theme-color.disabled-stroke($color);
}
StButton#vhandle,
StButton#hhandle {
background-color: theme-color.scrollbar-thumb(theme-color.$on-dark);
background-color: theme-color.scrollbar-thumb($color);
&:hover {
background-color: theme-color.scrollbar-thumb(theme-color.$on-dark, "hover");
background-color: theme-color.scrollbar-thumb($color, "hover");
}
&:active {
background-color: theme-color.scrollbar-thumb(theme-color.$on-dark, "pressed");
background-color: theme-color.scrollbar-thumb($color, "pressed");
}
}
}
src/gnome-shell/sass/components/gdm/_screen-shield.scss
@@ -78,7 +78,7 @@
#unlockDialogNotifications {
StScrollBar {
@extend %scrollbar-on-dark;
@include scrollbar.color(theme-color.$on-dark);
}
}
} @else {
@@ -158,7 +158,7 @@
#screenShieldNotifications {
StScrollBar {
@extend %scrollbar-on-dark;
@include scrollbar.color(theme-color.$on-dark);
}
}
}
src/gnome-shell/sass/components/overview/_overview.scss
@@ -18,7 +18,7 @@
color: theme-color.$on-system;
StScrollBar {
@extend %scrollbar-on-dark;
@include scrollbar.color(theme-color.$on-system);
}
}
} @else {
@@ -28,7 +28,7 @@
color: theme-color.$on-dark;
StScrollBar {
@extend %scrollbar-on-dark;
@include scrollbar.color(theme-color.$on-dark);
}
}