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