amis2/scss/components/_condition-builder.scss

268 lines
4.3 KiB
SCSS
Raw Normal View History

2020-08-14 00:13:40 +08:00
.#{$ns}CBGroup {
2020-08-17 00:04:58 +08:00
font-size: $fontSizeSm;
2020-08-13 20:05:28 +08:00
&-toolbar {
display: flex;
flex-direction: row;
justify-content: space-between;
2020-08-17 23:21:10 +08:00
padding-bottom: 10px;
.#{$ns}Button {
transition: padding 0.2s;
svg {
width: 10px;
height: 10px;
top: 0;
margin-right: 5px;
}
}
&:not(:hover) .#{$ns}CBGroup-toolbarLeft .#{$ns}Button:not(.is-active) {
width: 0;
padding: 0;
overflow: hidden;
opacity: 0;
margin: 0;
border: 0;
}
.#{$ns}CBGroup-toolbarRight {
transition: opacity 0.2s;
display: flex;
align-items: center;
}
&:not(:hover) .#{$ns}CBGroup-toolbarRight {
opacity: 0;
}
2020-08-13 20:05:28 +08:00
}
2020-08-14 17:45:59 +08:00
2020-08-17 00:04:58 +08:00
&-field,
&-operator {
2020-08-14 17:45:59 +08:00
position: relative;
display: inline-block;
2020-08-18 20:26:04 +08:00
margin: px2rem(3px);
vertical-align: middle;
2020-08-14 17:45:59 +08:00
}
2020-08-17 00:04:58 +08:00
&-fieldCaret,
&-operatorCaret {
2020-08-14 17:45:59 +08:00
transition: transform 0.3s ease-out;
2020-08-18 20:26:04 +08:00
margin: 3px;
2020-08-14 17:45:59 +08:00
display: flex;
color: $icon-color;
&:hover {
color: $icon-onHover-color;
}
> svg {
width: px2rem(12px);
height: px2rem(12px);
top: 0;
}
}
2020-08-17 00:04:58 +08:00
&-fieldInput.is-active &-fieldCaret,
&-operatorInput.is-active &-operatorCaret {
2020-08-14 17:45:59 +08:00
transform: rotate(180deg);
}
2020-08-18 20:26:04 +08:00
&-placeholder {
color: $text--muted-color;
position: relative;
margin-left: 30px;
padding: 10px;
background: rgba(0, 0, 0, 0.03);
border-radius: 5px;
&:before {
position: absolute;
content: '';
top: -10px;
left: -30px;
width: 20px;
border-left: solid 1px $borderColor;
bottom: 0;
}
&:after {
position: absolute;
content: '';
top: 50%;
width: 20px;
left: -30px;
border-top: solid 1px $borderColor;
}
&:last-child {
&:before {
border-bottom-left-radius: 5px;
border-bottom: solid 1px $borderColor;
bottom: 50%;
}
&:after {
display: none;
}
}
}
2020-08-14 17:45:59 +08:00
}
2020-08-17 20:32:07 +08:00
.#{$ns}CBDelete {
@include icon-color();
cursor: pointer;
margin-left: auto;
2020-08-17 23:21:10 +08:00
transition: opacity 0.2s;
2020-08-17 20:32:07 +08:00
}
.#{$ns}CBGroupOrItem {
2020-08-14 17:45:59 +08:00
position: relative;
2020-08-17 20:32:07 +08:00
margin-left: px2rem(30px);
2020-08-17 23:21:10 +08:00
& + & {
margin-top: px2rem(10px);
}
2020-08-17 20:32:07 +08:00
&-body {
display: flex;
2020-08-18 20:26:04 +08:00
padding: 2px 7px;
2020-08-17 20:32:07 +08:00
border-radius: 5px;
flex-direction: row;
align-items: center;
position: relative;
background: rgba(0, 0, 0, 0.03);
transition: all 0.3s ease-out;
}
2020-08-17 23:21:10 +08:00
&-body:not(:hover) .#{$ns}CBDelete {
opacity: 0;
}
2020-08-17 20:32:07 +08:00
&.is-dragging {
display: none;
}
&.is-ghost > &-body:before {
position: absolute;
z-index: 2;
content: '';
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba($info, 0.2);
}
2020-08-14 17:45:59 +08:00
&-dragbar {
cursor: move;
width: 20px;
margin-left: -5px;
opacity: 0;
text-align: center;
transition: opacity 0.3s ease-out;
@include icon-color();
}
2020-08-17 20:32:07 +08:00
.#{$ns}CBGroup {
flex-grow: 1;
}
2020-08-14 17:45:59 +08:00
&:hover {
background-color: rgba(0, 0, 0, 0.05);
}
2020-08-17 20:32:07 +08:00
&:hover > &-body > &-dragbar {
2020-08-14 17:45:59 +08:00
opacity: 1;
}
&:before {
position: absolute;
content: '';
top: -10px;
left: -30px;
width: 20px;
border-left: solid 1px $borderColor;
bottom: 0;
}
&:after {
position: absolute;
content: '';
top: 50%;
width: 20px;
left: -30px;
border-top: solid 1px $borderColor;
}
&:last-child {
&:before {
border-bottom-left-radius: 5px;
border-bottom: solid 1px $borderColor;
bottom: 50%;
}
&:after {
display: none;
}
}
}
.#{$ns}CBInputSwitch {
position: relative;
display: inline-block;
2020-08-18 20:26:04 +08:00
vertical-align: middle;
// margin: px2rem(3px);
2020-08-14 17:45:59 +08:00
cursor: pointer;
> a {
@include icon-color();
}
svg {
width: px2rem(10px);
height: px2rem(10px);
}
2020-08-13 20:05:28 +08:00
}
2020-08-17 00:04:58 +08:00
.#{$ns}CBFunc {
display: inline-block;
2020-08-18 20:26:04 +08:00
vertical-align: middle;
margin: px2rem(3px);
2020-08-17 00:04:58 +08:00
&-select {
display: inline-block;
position: relative;
}
&-error {
color: $danger;
}
&-args {
display: inline-block;
> span {
display: inline-block;
padding: 0 5px;
color: $info;
}
> div {
display: inline-block;
}
}
}
2020-08-17 20:32:07 +08:00
.#{$ns}CBValue {
position: relative;
display: inline-block;
2020-08-18 20:26:04 +08:00
vertical-align: middle;
margin: px2rem(3px);
}
.#{$ns}CBSeprator {
width: 20px;
text-align: center;
display: inline-block;
user-select: none;
2020-08-17 20:32:07 +08:00
}