gnome-shell: Rename overview/_workspace-{switcher,thumbnails}.scss
I don't remember why I thought overview/_workspace-switcher.scss is a better name... but it was wrong.
I don't remember why I thought overview/_workspace-switcher.scss is a better name... but it was wrong.
by roundabout, Monday, 22 March 2021, 12:33:02 (1616416382), pushed by roundabout, Sunday, 11 May 2025, 13:23:01 (1746969781)
Author identity: nana-4 <hnmaigo@gmail.com>
6902e7b13abe0ffe96f2ca037cad65371f4ba3fc
'sass/components/overview/_search-entry.scss',
'sass/components/overview/_search-results.scss',
'sass/components/overview/_window-picker.scss',
'sass/components/overview/_workspace-switcher.scss',
'sass/components/overview/_workspace-thumbnails.scss',
'sass/components/panel/_panel.scss',
'sass/components/panel/_ripple-box.scss',
'sass/_components.scss',
@import 'components/overview/search-results';
@import 'components/overview/app-grid';
@import 'components/overview/dash';
@import 'components/overview/workspace-switcher';
@import 'components/overview/workspace-thumbnails';
// A11y / misc
@import 'components/misc/misc';
@import 'components/misc/a11y';
/* Workspace pager */
// thumbnails in overview
.workspace-thumbnails {
@if $version >= 40 {
padding: 0;
spacing: 12px;
.workspace-thumbnail {
@extend %overview-panel;
border-radius: $corner-radius;
}
} @else {
@extend %overview-panel;
visible-width: 32px; // amount visible before hover
padding: 12px;
spacing: 12px;
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;
}
}
// drag and drop indicator
.placeholder {
background-image: url("assets/dash-placeholder.svg");
background-size: contain;
@if $version >= 40 {
width: 24px;
} @else {
height: 24px;
}
}
}
// selected indicator
.workspace-thumbnail-indicator {
border: 0 solid $on-dark;
border-radius: 0;
@if $version >= 40 {
padding: 6px;
border-bottom-width: 2px;
} @else {
padding: 6px 10px;
border-left-width: 2px;
}
}
/* Workspace pager */
// thumbnails in overview
.workspace-thumbnails {
@if $version >= 40 {
padding: 0;
spacing: 12px;
.workspace-thumbnail {
@extend %overview-panel;
border-radius: $corner-radius;
}
} @else {
@extend %overview-panel;
visible-width: 32px; // amount visible before hover
padding: 12px;
spacing: 12px;
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;
}
}
// drag and drop indicator
.placeholder {
background-image: url("assets/dash-placeholder.svg");
background-size: contain;
@if $version >= 40 {
width: 24px;
} @else {
height: 24px;
}
}
}
// selected indicator
.workspace-thumbnail-indicator {
border: 0 solid $on-dark;
border-radius: 0;
@if $version >= 40 {
padding: 6px;
border-bottom-width: 2px;
} @else {
padding: 6px 10px;
border-left-width: 2px;
}
}