_workspace-thumbnails.scss
ASCII text
1/* Workspace pager */ 2 3@use "../../../../theme"; 4@use "../../gnome-shell"; 5@use "overview"; 6 7// thumbnails in overview 8.workspace-thumbnails { 9@if gnome-shell.$version >= 40 { 10padding: 0; 11spacing: 12px; 12 13.workspace-thumbnail { 14@include overview.panel; 15border-radius: theme.$corner-radius; 16} 17} @else { 18@include overview.panel; 19visible-width: 32px; // amount visible before hover 20padding: 12px; 21spacing: 12px; 22border-right-width: 0; 23border-radius: theme.$corner-radius 0 0 theme.$corner-radius; 24 25&:rtl { 26border-left-width: 0; 27border-radius: 0 theme.$corner-radius theme.$corner-radius 0; 28} 29} 30 31// drag and drop indicator 32.placeholder { 33background-image: url("assets/dash-placeholder.svg"); 34background-size: contain; 35 36@if gnome-shell.$version >= 40 { 37width: 24px; 38} @else { 39height: 24px; 40} 41} 42} 43 44// selected indicator 45.workspace-thumbnail-indicator { 46border: 0 solid overview.$on-color; 47border-radius: 0; 48 49@if gnome-shell.$version >= 40 { 50padding: 6px; 51border-bottom-width: 2px; 52} @else { 53padding: 6px 10px; 54border-left-width: 2px; 55} 56} 57