mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2025-12-12 19:25:48 +00:00
29 lines
432 B
Plaintext
29 lines
432 B
Plaintext
.lc-insertion {
|
|
position: absolute;
|
|
top: -2px;
|
|
left: 0;
|
|
z-index: 12;
|
|
pointer-events: none !important;
|
|
background-color: var(--color-brand-light);
|
|
height: 4px;
|
|
|
|
&.cover {
|
|
top: 0;
|
|
height: auto;
|
|
width: auto;
|
|
border: none;
|
|
opacity: 0.3;
|
|
}
|
|
|
|
&.vertical {
|
|
top: 0;
|
|
left: -2px;
|
|
width: 4px;
|
|
height: auto;
|
|
}
|
|
|
|
&.invalid {
|
|
background-color: var(--color-function-error, red);
|
|
}
|
|
}
|