_workspace-switcher.scss
ASCII text
1/* Workspace Switcher */ 2 3@use "../../../../theme"; 4@use "../../../../theme-color"; 5@use "osd"; 6 7.workspace-switcher-group { 8padding: 8px; 9} 10 11.workspace-switcher-container { 12@include osd.panel; 13} 14 15.workspace-switcher { 16background: transparent; 17border: 0; 18border-radius: 0; 19padding: 0; 20spacing: 8px; 21} 22 23.ws-switcher-box { 24height: 48px; 25border: 0; 26border-radius: theme.$corner-radius; 27background-color: theme-color.disabled-stroke(theme-color.$on-surface); 28background-size: 0; 29} 30 31// active workspace in the switcher 32.ws-switcher-active-up, 33.ws-switcher-active-down, 34.ws-switcher-active-left, 35.ws-switcher-active-right { 36height: 48px; 37border: 0; 38border-radius: theme.$corner-radius; 39background-color: theme-color.$primary; 40background-size: 0; 41color: inherit; 42} 43