grid-component-editor
Version:
延长loading超时时间;转义伪类中文,防止乱码
75 lines (61 loc) • 1.23 kB
text/less
.height100 {
height: 100%;
}
.GE {
&-input {
width: 100%;
padding: (@primaryPadding/3) (@primaryPadding/2);
margin: (@primaryMargin/4) 0;
border: .51px solid @bdColor[input];
border-radius: (@primaryRadius);
background-color: inherit;
color: inherit;
outline: none;
.transition(box-shadow);
&[type=number]::-webkit-outer-spin-button {
-webkit-appearance: none;
margin: -(@primaryMargin);
}
&::placeholder {
color: inherit;
}
&:focus {
box-shadow: 0 0 4px 1px @bdColor[input];
}
}
&-disabled {
opacity: .5;
cursor: not-allowed;
}
}
.scroll {
// overflow-y: auto;
overflow-y: overlay;
}
.scroll::-webkit-scrollbar {
width: 6px;
height: $width;
// background: @bgColor[primary];
}
.scroll::-webkit-scrollbar-thumb {
background: @bdColor[input];
border-radius: (@primaryRadius);
}
.primary-color {
color: @color[primary];
}
.absolute-center {
.absolute-center();
}
.flex-between {
.flex-between();
}
.relative {
position: relative;
}
.border-box {
box-sizing: border-box;
}
.hover-primary {
color: @color[primary];
}