mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2026-01-01 00:38:11 +00:00
53 lines
817 B
SCSS
53 lines
817 B
SCSS
.lowcode-panel {
|
|
user-select: none;
|
|
overflow: hidden;
|
|
position: relative;
|
|
background: $card-background;
|
|
transition: width 0.3s ease;
|
|
transform: translate3d(0, 0, 0);
|
|
height: 100%;
|
|
&.visible {
|
|
border-right: 1px solid $color-line1-1;
|
|
}
|
|
.drag-area {
|
|
display: none;
|
|
}
|
|
&.floatable {
|
|
position: absolute;
|
|
top: 0;
|
|
bottom: 0;
|
|
z-index: 999;
|
|
}
|
|
&.draggable {
|
|
.drag-area {
|
|
display: block;
|
|
width: 10px;
|
|
position: absolute;
|
|
top: 0;
|
|
bottom: 0;
|
|
cursor: col-resize;
|
|
z-index: 9999;
|
|
}
|
|
&.left {
|
|
.drag-area {
|
|
right: 0;
|
|
}
|
|
}
|
|
&.right {
|
|
.drag-area {
|
|
left: 0;
|
|
}
|
|
}
|
|
}
|
|
&.left {
|
|
&.floatable {
|
|
left: 50px;
|
|
}
|
|
}
|
|
&.right {
|
|
&.floatable {
|
|
right: 48px;
|
|
}
|
|
}
|
|
}
|