amis/scss/components/form/_image.scss

256 lines
4.8 KiB
SCSS

.#{$ns}ImageControl {
position: relative;
&-dropzone {
outline: none;
}
&-addBtn {
margin: 0;
width: px2rem(120px);
height: px2rem(120px);
display: inline-flex;
justify-content: center;
align-items: center;
border: $borderWidth solid $borderColor;
cursor: pointer;
margin-right: $gap-base;
@include button-variant(
$ImageControl-addBtn-bg,
$ImageControl-addBtn-border,
$ImageControl-addBtn-color,
$ImageControl-addBtn-onHover-bg,
$ImageControl-addBtn-onHover-border,
$ImageControl-addBtn-onHover-color,
$ImageControl-addBtn-onActive-bg,
$ImageControl-addBtn-onActive-border,
$ImageControl-addBtn-onActive-color
);
> svg {
width: px2rem(50px);
height: px2rem(50px);
top: 0;
}
&.is-disabled {
pointer-events: none;
border: px2rem(1px) solid $ImageControl-addBtn-onDisabled-border;
background: $ImageControl-addBtn-onDisabled-bg;
color: $ImageControl-addBtn-onDisabled-color;
}
}
&-pasteTip {
pointer-events: none;
left: 0;
top: 50%;
transform: translateY(-50%);
position: absolute;
font-size: $Tooltip--attr-fontSize;
line-height: $Tooltip--attr-lineHeigt;
text-align: left;
white-space: nowrap;
background: $Tooltip--attr-bg;
border: $Tooltip--attr-borderWidth solid $Tooltip--attr-borderColor;
border-radius: $Tooltip--attr-borderRadius;
box-shadow: $Tooltip--attr-boxShadow;
left: 100%;
color: $Tooltip--attr-color;
padding: $Tooltip--attr-paddingY $Tooltip--attr-paddingX;
margin: 30px 0 0 $Tooltip--attr-gap;
}
&-dropzone:focus &-addBtn {
border-color: $ImageControl-addBtn-onHover-border;
background: $ImageControl-addBtn-onHover-bg;
color: $ImageControl-addBtn-onHover-color;
}
&-item {
border: $borderWidth solid $borderColor;
vertical-align: top;
padding: $gap-xs;
display: inline-block;
margin-right: $gap-base;
margin-bottom: $gap-base;
position: relative;
width: px2rem(120px);
}
&-image {
width: 100%;
height: 100%;
padding: 0;
border: none;
display: block;
}
&-itemOverlay {
background: rgba(0, 0, 0, 0.6);
position: absolute;
width: px2rem(108px);
height: px2rem(108px);
display: none;
top: px2rem(5px);
left: px2rem(5px);
justify-content: center;
align-items: center;
align-content: center;
flex-wrap: wrap;
color: #fff;
> div {
width: 100%;
text-align: center;
margin-bottom: 5px;
}
> a {
cursor: pointer;
color: #fff;
display: inline-block;
padding: 0 5px;
line-height: 1;
font-size: px2rem(16px);
}
}
&-item:hover &-itemOverlay {
display: flex;
}
&-itemClear {
position: absolute;
cursor: pointer;
color: #999;
top: 5px;
right: 5px;
line-height: 1;
> svg {
top: 0;
width: 10px;
height: 10px;
}
}
&-itemInfo {
display: inline-flex;
width: 110px;
height: 110px;
justify-content: center;
align-items: center;
align-content: center;
flex-wrap: wrap;
> p {
width: 100%;
text-align: center;
font-size: 12px;
margin-bottom: 5px;
}
}
&-progress {
width: 70px;
height: 5px;
background: #ebebeb;
}
&-progressValue {
height: 5px;
display: block;
background: $info;
min-width: 10%;
transition: ease-out width 0.3s;
}
&-item.is-invalid &-itemClear {
display: none;
}
&-item.is-invalid:hover &-itemClear {
display: block;
}
&-retryBtn {
margin: 0;
width: px2rem(108px);
height: px2rem(108px);
display: inline-flex;
cursor: pointer;
justify-content: center;
align-items: center;
align-content: center;
flex-wrap: wrap;
color: #666;
&:hover {
color: #333;
text-decoration: none;
}
> p {
width: 100%;
text-align: center;
color: $danger;
margin: 10px 0 0;
}
}
&-errorMsg {
color: $danger;
margin: 5px 0 0;
}
&-uploadBtn {
margin-top: 5px;
}
&-cropperWrapper {
position: relative;
img {
max-width: 100%;
max-height: 400px;
}
}
&-croperToolbar {
display: inline-flex;
width: 50px;
position: absolute;
right: 0;
bottom: 0;
flex-direction: column;
align-items: flex-end;
> a {
color: #fff;
padding: 2px 5px;
cursor: pointer;
font-size: 20px;
}
}
&-acceptTip {
height: 120px;
color: #999;
border: 2px dashed $borderColor;
// &.is-accept {
border-color: $info;
background: #f3f9fe;
// }
border-radius: $borderRadius;
line-height: 120px;
text-align: center;
}
}