33 lines
760 B
SCSS
33 lines
760 B
SCSS
|
/* Workspace pager */
|
||
|
|
||
|
// thumbnails in overview
|
||
|
.workspace-thumbnails {
|
||
|
@extend %overview_panel;
|
||
|
visible-width: 32px; //amount visible before hover
|
||
|
spacing: $base_spacing;
|
||
|
padding: $base_padding;
|
||
|
|
||
|
border-radius: $modal_radius 0 0 $modal_radius;
|
||
|
border-right-width: 0;
|
||
|
|
||
|
&:rtl {
|
||
|
border-radius: 0 $modal_radius $modal_radius 0;
|
||
|
border-left-width: 0;
|
||
|
}
|
||
|
|
||
|
// drag and drop indicator
|
||
|
.placeholder {
|
||
|
background-image: url("resource:///org/gnome/shell/theme/dash-placeholder.svg");
|
||
|
background-size: contain;
|
||
|
height: 24px;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// selected indicator
|
||
|
.workspace-thumbnail-indicator {
|
||
|
border: 3px solid $selected_bg_color;
|
||
|
border-radius: 3px;
|
||
|
padding: 0px;
|
||
|
// background-color: transparentize($selected_bg_color, 0.9);
|
||
|
}
|