gnome-shell 40: Adjust workspaces thumbnails visuals
https://gitlab.gnome.org/GNOME/gnome-shell/-/commit/6e13dbac11aa6a8b43b59b1bd21db004de8ae551
By using this site, you agree to have cookies stored on your device, strictly for functional purposes, such as storing your session and preferences.
https://gitlab.gnome.org/GNOME/gnome-shell/-/commit/6e13dbac11aa6a8b43b59b1bd21db004de8ae551
roundabout,
created on Sunday, 21 March 2021, 14:25:17 (1616336717),
received on Sunday, 11 May 2025, 13:23:00 (1746969780)
Author identity: nana-4 <hnmaigo@gmail.com>
e504dd062eb7ca7c3ad6aa40bfc47a3de938cb4c
// thumbnails in overview
.workspace-thumbnails {
@extend %overview-panel;
visible-width: 32px; // amount visible before hover
spacing: 12px;
padding: 12px;
border-right-width: 0;
border-radius: $corner-radius 0 0 $corner-radius;
@if $version >= 40 {
.workspace-thumbnail {
@extend %overview-panel;
border-radius: $corner-radius;
}
} @else {
@extend %overview-panel;
border-right-width: 0;
border-radius: $corner-radius 0 0 $corner-radius;
&:rtl {
border-left-width: 0;
border-radius: 0 $corner-radius $corner-radius 0;
&:rtl {
border-left-width: 0;
border-radius: 0 $corner-radius $corner-radius 0;
}
}
// drag and drop indicator
.placeholder {
height: 24px;
background-image: url("assets/dash-placeholder.svg");
background-size: contain;
@if $version >= 40 {
width: 24px;
} @else {
height: 24px;
}
}
}
.workspace-thumbnail-indicator {
padding: 6px 10px;
border: 0 solid $on-dark;
border-left-width: 2px;
border-radius: 0;
@if $version >= 40 {
border-bottom-width: 2px;
} @else {
border-left-width: 2px;
}
}