mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2026-03-02 06:54:44 +00:00
130 lines
2.5 KiB
SCSS
130 lines
2.5 KiB
SCSS
// mixin
|
|
.lowcode-setter-mixin > * {
|
|
vertical-align: middle;
|
|
}
|
|
.lowcode-setter-mixin {
|
|
width: 86%;
|
|
}
|
|
.lowcode-setter-mixin .next-input {
|
|
width: 100%;
|
|
}
|
|
.lowcode-setter-mixin .next-select-trigger {
|
|
width: 100%;
|
|
}
|
|
// json-setter
|
|
// :global {
|
|
.nrs-monaco-form {
|
|
.next-form-item:last-child {
|
|
margin: 0 !important;
|
|
}
|
|
}
|
|
.monaco-editor-wrap {
|
|
.luna-monaco-button .next-icon-first {
|
|
height: 26px;
|
|
}
|
|
.monaco_fullscreen_icon {
|
|
position: absolute;
|
|
line-height: 1;
|
|
z-index: 7;
|
|
color: #ddd;
|
|
&:hover {
|
|
color: #fff;
|
|
}
|
|
}
|
|
.btns-eare {
|
|
text-align: left;
|
|
line-height: initial;
|
|
margin-top: 5px;
|
|
// button{
|
|
// margin-right: 10px;
|
|
// }
|
|
}
|
|
&.monaco-nofullscreen {
|
|
position: relative !important;
|
|
.monaco_fullscreen_icon {
|
|
position: absolute;
|
|
top: 5px;
|
|
right: 5px;
|
|
line-height: 1;
|
|
z-index: 7;
|
|
i:before {
|
|
font-size: 16px;
|
|
}
|
|
}
|
|
}
|
|
&.monaco-fullscreen {
|
|
position: fixed !important;
|
|
height: 100% !important;
|
|
width: 100% !important;
|
|
border: 0;
|
|
margin: 0;
|
|
top: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
right: 0;
|
|
z-index: 1001;
|
|
overflow: hidden;
|
|
.monaco_fullscreen_icon {
|
|
top: 10px;
|
|
right: 10px;
|
|
i:before {
|
|
font-size: 24px;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
.luna-monaco-button button {
|
|
width: 100%;
|
|
}
|
|
.luna-monaco-button-dialog {
|
|
.next-dialog-body {
|
|
padding: 0;
|
|
.next-form-item {
|
|
height: 100%;
|
|
margin-bottom: 0;
|
|
.next-form-item-control,
|
|
.next-form-item-control > div {
|
|
height: 100% !important;
|
|
}
|
|
.next-form-item-help {
|
|
position: absolute;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
// }
|
|
// color-setter
|
|
.lowcode-color-box {
|
|
margin-right: -5px;
|
|
padding: 3px 0 3px 3px;
|
|
width: 26px;
|
|
height: 26px;
|
|
display: inline-block;
|
|
div {
|
|
width: 20px;
|
|
height: 20px;
|
|
border: 1px solid #ddd;
|
|
}
|
|
}
|
|
.next-balloon-normal.lowcode-color-content {
|
|
padding: 0;
|
|
background: #ffffff;
|
|
border-radius: 0;
|
|
border: 1px solid #e5e5e5;
|
|
box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.1);
|
|
&:after {
|
|
display: none;
|
|
}
|
|
.sketch-picker {
|
|
border-radius: 0 !important;
|
|
border: none !important;
|
|
box-shadow: none !important;
|
|
.flexbox-fix {
|
|
input {
|
|
width: 100% !important;
|
|
min-width: 30px;
|
|
text-align: center;
|
|
}
|
|
}
|
|
}
|
|
} |