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