@cmstops/pro-compo
Version:
[物料平台文档中心](https://arco.design/docs/material/guide)
92 lines (91 loc) • 2.03 kB
CSS
.thumb-upload-loading {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
width: 100%;
height: 100%;
background-color: rgba(0, 0, 0, 0.5);
}
.thumb-upload-loading .arco-progress-circle-text {
color: #fff;
}
.thumb-upload-loading .thumb-upload-text {
color: #fff;
}
.thumb-upload-loading .thumb-upload-text-success {
color: rgb(var(--success-2));
}
.thumb-upload-loading .thumb-upload-text-error {
color: rgb(var(--danger-6));
}
.thumb-select-wrapper {
position: relative;
display: flex;
align-items: center;
justify-content: center;
width: 100%;
height: 100%;
overflow: hidden;
border-radius: 2px;
cursor: pointer;
}
.thumb-select-wrapper .thumb-image img {
width: 100%;
height: 100%;
user-select: none;
-webkit-user-drag: none;
}
.thumb-select-wrapper .thumb-handler-list {
position: absolute;
bottom: 0;
display: flex;
gap: 10px;
align-items: center;
justify-content: center;
width: 100%;
height: 40px;
opacity: 0;
transition: all 0.3s ease-in-out;
}
.thumb-select-wrapper .thumb-handler-list.thumb-handler-always {
opacity: 1 ;
}
.thumb-select-wrapper .thumb-handler-list .handler-item {
padding: 0 8px;
color: #fff;
font-size: 12px;
line-height: 26px;
background-color: #000000b3;
border-radius: 2px;
cursor: pointer;
}
.thumb-select-wrapper .thumb-handler-list .handler-item:hover {
color: rgba(255, 255, 255, 0.7);
}
.thumb-select-wrapper:hover .thumb-handler-list {
opacity: 1;
}
.thumb-select-wrapper:hover .thumb-select-tag {
opacity: 0;
}
.thumb-select-wrapper.thumb-no-mask {
background-color: #f2f3f5;
border: 1px dashed #e5e6eb ;
}
.thumb-select-wrapper .thumb-select-tag {
position: absolute;
right: 5px;
bottom: 5px;
display: flex;
gap: 2px;
align-items: center;
padding: 2px 5px;
color: #fff;
font-size: 12px;
line-height: 14px;
background-color: rgba(0, 0, 0, 0.5);
border-radius: 16px;
opacity: 1;
transition: all 0.3s ease-in-out;
}