amis/packages/amis-ui/scss/components/_condition-builder.scss

281 lines
5.1 KiB
SCSS
Raw Normal View History

2020-08-14 00:13:40 +08:00
.#{$ns}CBGroup {
font-size: var(--fontSizeSm);
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;
margin-top: px2rem(8px);
2020-08-17 23:21:10 +08:00
.#{$ns}Button {
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;
}
}
.#{$ns}CBGroup-toolbarConditionAdd {
2020-08-17 23:21:10 +08:00
display: flex;
align-items: center;
.#{$ns}ButtonGroup {
& > .cxd-Button:first-child {
margin-right: px2rem(24px);
}
}
2020-08-18 23:16:55 +08:00
.#{$ns}CBDelete {
margin-left: var(--gap-xs);
2020-08-18 23:16:55 +08:00
}
2020-08-17 23:21:10 +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 {
transition: transform var(--animation-duration) ease-out;
margin: 5px;
2020-08-14 17:45:59 +08:00
display: flex;
color: var(--Form-select-caret-iconColor);
2020-08-14 17:45:59 +08:00
&:hover {
color: var(--Form-select-caret-onHover-iconColor);
2020-08-14 17:45:59 +08:00
}
> svg {
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 {
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;
&.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;
}
.#{$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);
}
&-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;
transition: all var(--animation-duration) ease-out;
&-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
&-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;
}
& > &-body > &-body-group > &-dragbar,
& > &-body > &-body-item > &-dragbar {
opacity: 0;
2020-08-14 17:45:59 +08:00
}
&:hover > &-body > &-body-item > &-dragbar {
2020-08-14 17:45:59 +08:00
opacity: 1;
}
&-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 {
color: var(--danger);
2020-08-17 00:04:58 +08:00
}
&-args {
display: inline-block;
> span {
display: inline-block;
padding: 0 5px;
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);
}
.#{$ns}CBFormula {
position: relative;
display: inline-block;
vertical-align: middle;
margin: px2rem(3px);
&-label {
background: var(--ResultBox-value-bg);
color: var(--text--muted-color);
display: block;
font-size: var(--fontSizeSm);
align-self: center;
margin: -5px 5px -5px -8px;
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
}