2020-08-14 00:13:40 +08:00
|
|
|
.#{$ns}CBGroup {
|
2020-12-21 10:08:40 +08:00
|
|
|
font-size: var(--fontSizeSm);
|
2022-04-07 14:54:33 +08:00
|
|
|
position: relative;
|
|
|
|
border: 1px solid #e8e9eb;
|
|
|
|
border-radius: 4px;
|
|
|
|
border-left: px2rem(3px) solid #e6f0ff;
|
|
|
|
padding: px2rem(30px) px2rem(27px) px2rem(17px);
|
|
|
|
margin-top: px2rem(30px);
|
|
|
|
&-toolbarCondition {
|
|
|
|
text-align: center;
|
|
|
|
margin-top: px2rem(-44px);
|
|
|
|
margin-bottom: px2rem(16px);
|
|
|
|
.#{$ns}Select {
|
|
|
|
font-size: 12px;
|
|
|
|
height: px2rem(28px);
|
|
|
|
width: px2rem(62px);
|
|
|
|
background: #d4e5ff;
|
|
|
|
border: none;
|
|
|
|
color: #0832a6;
|
|
|
|
font-weight: 500;
|
|
|
|
padding: 0;
|
|
|
|
padding-left: px2rem(8px);
|
|
|
|
min-height: px2rem(28px);
|
|
|
|
&:hover {
|
|
|
|
background: #d4e5ff;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-08-17 00:04:58 +08:00
|
|
|
|
2020-08-13 20:05:28 +08:00
|
|
|
&-toolbar {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
2022-04-07 14:54:33 +08:00
|
|
|
margin-top: px2rem(8px);
|
2020-08-17 23:21:10 +08:00
|
|
|
.#{$ns}Button {
|
2021-01-04 16:45:43 +08:00
|
|
|
transition: padding var(--animation-duration);
|
2020-11-08 12:01:51 +08:00
|
|
|
min-width: unset;
|
2020-08-17 23:21:10 +08:00
|
|
|
|
|
|
|
svg {
|
|
|
|
width: 10px;
|
|
|
|
height: 10px;
|
|
|
|
top: 0;
|
|
|
|
margin-right: 5px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-02-04 21:19:49 +08:00
|
|
|
.#{$ns}CBGroup-toolbarConditionAdd {
|
2020-08-17 23:21:10 +08:00
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
2022-04-07 14:54:33 +08:00
|
|
|
.#{$ns}ButtonGroup {
|
|
|
|
& > .cxd-Button:first-child {
|
|
|
|
margin-right: px2rem(24px);
|
|
|
|
}
|
|
|
|
}
|
2020-08-18 23:16:55 +08:00
|
|
|
|
|
|
|
.#{$ns}CBDelete {
|
2020-12-21 10:08:40 +08:00
|
|
|
margin-left: var(--gap-xs);
|
2020-08-18 23:16:55 +08:00
|
|
|
}
|
2020-08-17 23:21:10 +08:00
|
|
|
}
|
2022-04-07 14:54:33 +08:00
|
|
|
}
|
|
|
|
.#{$ns}ResultBox {
|
|
|
|
padding-right: px2rem(3px);
|
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 {
|
2021-01-04 16:45:43 +08:00
|
|
|
transition: transform var(--animation-duration) ease-out;
|
2020-11-02 19:17:56 +08:00
|
|
|
margin: 5px;
|
2020-08-14 17:45:59 +08:00
|
|
|
display: flex;
|
2020-12-21 10:08:40 +08:00
|
|
|
color: var(--Form-select-caret-iconColor);
|
2020-08-14 17:45:59 +08:00
|
|
|
&:hover {
|
2020-12-21 10:08:40 +08:00
|
|
|
color: var(--Form-select-caret-onHover-iconColor);
|
2020-08-14 17:45:59 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
> svg {
|
2020-11-02 19:17:56 +08:00
|
|
|
width: px2rem(10px);
|
|
|
|
height: px2rem(10px);
|
2020-08-14 17:45:59 +08:00
|
|
|
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 {
|
2020-12-21 10:08:40 +08:00
|
|
|
color: var(--text--muted-color);
|
2020-08-18 20:26:04 +08:00
|
|
|
position: relative;
|
|
|
|
padding: 10px;
|
|
|
|
background: rgba(0, 0, 0, 0.03);
|
|
|
|
border-radius: 5px;
|
2022-01-13 11:28:30 +08:00
|
|
|
&.simple {
|
|
|
|
margin-left: 0;
|
|
|
|
}
|
2020-08-18 20:26:04 +08:00
|
|
|
}
|
2020-08-14 17:45:59 +08:00
|
|
|
}
|
|
|
|
|
2020-08-17 20:32:07 +08:00
|
|
|
.#{$ns}CBDelete {
|
|
|
|
cursor: pointer;
|
|
|
|
margin-left: auto;
|
2022-04-07 14:54:33 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.#{$ns}CBGroupOrItem-body-group--hover {
|
|
|
|
& > .#{$ns}CBGroupOrItem-dragbar {
|
|
|
|
opacity: 1 !important;
|
|
|
|
}
|
|
|
|
& > .#{$ns}CBGroup {
|
|
|
|
border-left-color: #2468f1;
|
|
|
|
}
|
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
|
|
|
|
2020-08-17 23:21:10 +08:00
|
|
|
& + & {
|
|
|
|
margin-top: px2rem(10px);
|
|
|
|
}
|
2022-04-07 14:54:33 +08:00
|
|
|
&-dragbar {
|
|
|
|
cursor: move;
|
|
|
|
width: 20px;
|
|
|
|
margin-left: -5px;
|
|
|
|
opacity: 0.6;
|
|
|
|
text-align: center;
|
|
|
|
transition: opacity var(--animation-duration) ease-out;
|
|
|
|
@include icon-color();
|
|
|
|
}
|
2020-08-17 23:21:10 +08:00
|
|
|
|
2020-08-17 20:32:07 +08:00
|
|
|
&-body {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
align-items: center;
|
|
|
|
position: relative;
|
2021-01-04 16:45:43 +08:00
|
|
|
transition: all var(--animation-duration) ease-out;
|
2022-04-07 14:54:33 +08:00
|
|
|
&-group {
|
|
|
|
width: 100%;
|
|
|
|
flex-direction: row;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
margin-top: px2rem(16px);
|
|
|
|
> .#{$ns}CBGroupOrItem-dragbar {
|
|
|
|
left: px2rem(-16px);
|
|
|
|
position: absolute;
|
|
|
|
}
|
|
|
|
> .#{$ns}CBGroup {
|
|
|
|
margin: 0px;
|
|
|
|
}
|
2020-08-19 14:25:35 +08:00
|
|
|
}
|
2020-08-17 20:32:07 +08:00
|
|
|
|
2022-04-07 14:54:33 +08:00
|
|
|
&-item {
|
|
|
|
background-color: #f7f7f9;
|
|
|
|
width: 100%;
|
|
|
|
padding: px2rem(12px);
|
|
|
|
padding-left: px2rem(28px);
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
align-items: center;
|
|
|
|
> .#{$ns}CBGroupOrItem-dragbar {
|
|
|
|
left: px2rem(10px);
|
|
|
|
position: absolute;
|
|
|
|
}
|
|
|
|
}
|
2020-08-17 23:21:10 +08:00
|
|
|
}
|
|
|
|
|
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
|
|
|
|
2020-08-17 20:32:07 +08:00
|
|
|
.#{$ns}CBGroup {
|
|
|
|
flex-grow: 1;
|
|
|
|
}
|
|
|
|
|
2022-04-07 14:54:33 +08:00
|
|
|
& > &-body > &-body-group > &-dragbar,
|
|
|
|
& > &-body > &-body-item > &-dragbar {
|
|
|
|
opacity: 0;
|
2020-08-14 17:45:59 +08:00
|
|
|
}
|
|
|
|
|
2022-04-07 14:54:33 +08:00
|
|
|
&:hover > &-body > &-body-item > &-dragbar {
|
2020-08-14 17:45:59 +08:00
|
|
|
opacity: 1;
|
|
|
|
}
|
|
|
|
|
2022-01-13 19:32:50 +08:00
|
|
|
&-simple {
|
|
|
|
margin-bottom: var(--gap-sm);
|
|
|
|
}
|
2020-08-14 17:45:59 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
.#{$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 {
|
2020-12-21 10:08:40 +08:00
|
|
|
color: var(--danger);
|
2020-08-17 00:04:58 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
&-args {
|
|
|
|
display: inline-block;
|
|
|
|
> span {
|
|
|
|
display: inline-block;
|
|
|
|
padding: 0 5px;
|
2020-12-21 10:08:40 +08:00
|
|
|
color: var(--info);
|
2020-08-17 00:04:58 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
> 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);
|
|
|
|
}
|
|
|
|
|
2020-11-02 19:17:56 +08:00
|
|
|
.#{$ns}CBFormula {
|
|
|
|
position: relative;
|
|
|
|
display: inline-block;
|
|
|
|
vertical-align: middle;
|
|
|
|
margin: px2rem(3px);
|
|
|
|
|
|
|
|
&-label {
|
2020-12-21 10:08:40 +08:00
|
|
|
background: var(--ResultBox-value-bg);
|
|
|
|
color: var(--text--muted-color);
|
2020-11-02 19:17:56 +08:00
|
|
|
display: block;
|
2020-12-21 10:08:40 +08:00
|
|
|
font-size: var(--fontSizeSm);
|
2020-11-02 19:17:56 +08:00
|
|
|
align-self: center;
|
2020-11-02 20:09:17 +08:00
|
|
|
margin: -5px 5px -5px -8px;
|
2020-11-02 19:17:56 +08:00
|
|
|
padding: 5px;
|
|
|
|
border-radius: 5px;
|
|
|
|
user-select: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-08-18 20:26:04 +08:00
|
|
|
.#{$ns}CBSeprator {
|
|
|
|
width: 20px;
|
|
|
|
text-align: center;
|
|
|
|
display: inline-block;
|
|
|
|
user-select: none;
|
2020-08-17 20:32:07 +08:00
|
|
|
}
|