_workspace-switcher.scss
ASCII text
1/* Workspace pager */ 2 3// thumbnails in overview 4.workspace-thumbnails { 5@extend %overview-panel; 6visible-width: 32px; // amount visible before hover 7spacing: 12px; 8padding: 12px; 9 10border-right-width: 0; 11border-radius: $corner-radius 0 0 $corner-radius; 12 13&:rtl { 14border-left-width: 0; 15border-radius: 0 $corner-radius $corner-radius 0; 16} 17 18// drag and drop indicator 19.placeholder { 20height: 24px; 21background-image: url("assets/dash-placeholder.svg"); 22background-size: contain; 23} 24} 25 26// selected indicator 27.workspace-thumbnail-indicator { 28padding: 6px 10px; 29border: 0 solid $on-dark; 30border-left-width: 2px; 31border-radius: 0; 32} 33