_dash.scss
ASCII text
1/* Dash */ 2 3$dash-spacing: 6px; 4 5#dash { 6@extend %overview-panel; 7font-size: 1em; 8padding: ($dash-spacing / 2) 0; 9border-left-width: 0; 10border-radius: 0 $corner-radius $corner-radius 0; 11 12&:rtl { 13border-right-width: 0; 14border-radius: $corner-radius 0 0 $corner-radius; 15} 16 17.placeholder { 18height: 24px; 19background-image: url("assets/dash-placeholder.svg"); 20background-size: contain; 21} 22 23.empty-dash-drop-target { 24width: 24px; 25height: 24px; 26} 27} 28 29// Dash Items 30.dash-item-container > StWidget { 31padding: ($dash-spacing / 2) $dash-spacing; 32} 33 34// OSD Tooltip 35.dash-label { 36// min-height: 32px - 6px * 2; 37padding: 7px 8px; 38border: 0; 39border-radius: $corner-radius; 40box-shadow: $shadow-2; 41background-color: $surface-z8; 42color: $on-surface; 43text-align: center; 44-x-offset: 8px; // distance from the dash edge 45} 46 47// Show apps button 48.show-apps { 49@extend %overview-icon; 50color: hint($on-dark); 51 52&:checked { 53color: $on-dark; 54} 55} 56