49 lines
829 B
Plaintext
49 lines
829 B
Plaintext
.thumb-img {
|
|
position: relative;
|
|
display: flex;
|
|
|
|
.img {
|
|
display: flex;
|
|
width: 100%;
|
|
height: 100%;
|
|
overflow: hidden;
|
|
border-radius: var(--border-radius-base);
|
|
cursor: pointer;
|
|
}
|
|
|
|
.del {
|
|
position: absolute;
|
|
top: -4px;
|
|
right: -2px;
|
|
font-size: var(--font-size-middle);
|
|
cursor: pointer;
|
|
background-color: var(--color-white-1);
|
|
display: none;
|
|
border-radius: 50%;
|
|
height: 16px;
|
|
width: 16px;
|
|
overflow: hidden;
|
|
pointer-events: all;
|
|
}
|
|
|
|
&:hover {
|
|
.ant-image .ant-image-mask {
|
|
opacity: 1;
|
|
transition: opacity var(--ant-motion-duration-slow);
|
|
}
|
|
|
|
.del {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
}
|
|
}
|
|
|
|
.thumb-list-wrap {
|
|
display: flex;
|
|
gap: 10px;
|
|
flex-wrap: wrap;
|
|
padding: 10px;
|
|
}
|