mirror of
https://github.com/nasa/openmct.git
synced 2025-01-29 07:34:05 +00:00
36 lines
635 B
SCSS
36 lines
635 B
SCSS
|
.c-elements-pool {
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
overflow: hidden;
|
||
|
flex: 1 1 auto !important;
|
||
|
|
||
|
> * + * {
|
||
|
margin-top: $interiorMargin;
|
||
|
}
|
||
|
|
||
|
&__search {
|
||
|
flex: 0 0 auto;
|
||
|
}
|
||
|
|
||
|
&__elements {
|
||
|
flex: 1 1 auto;
|
||
|
overflow: auto;
|
||
|
&.is-dragging {
|
||
|
li { opacity: 0.2; }
|
||
|
}
|
||
|
}
|
||
|
|
||
|
&__grippy {
|
||
|
$d: 8px;
|
||
|
@include grippy($c: $colorItemTreeVC, $dir: 'y');
|
||
|
flex: 0 0 auto;
|
||
|
margin-right: $interiorMarginSm;
|
||
|
transform: translateY(-2px);
|
||
|
width: $d; height: $d;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
.js-last-place {
|
||
|
height: 10px;
|
||
|
}
|