A lot of things
This commit is contained in:
@@ -349,6 +349,50 @@
|
||||
flex-direction: column;
|
||||
gap: 5px;
|
||||
}
|
||||
.gallery-item {
|
||||
position: relative;
|
||||
cursor: grab;
|
||||
transition: opacity 0.2s, transform 0.15s;
|
||||
user-select: none;
|
||||
}
|
||||
|
||||
.gallery-item:active { cursor: grabbing; }
|
||||
|
||||
.gallery-item--dragging {
|
||||
opacity: 0.4;
|
||||
transform: scale(0.97);
|
||||
}
|
||||
|
||||
.gallery-drag-handle {
|
||||
position: absolute;
|
||||
top: 4px;
|
||||
left: 4px;
|
||||
z-index: 10;
|
||||
background-color: rgba(0,0,0,0.6);
|
||||
color: #fff;
|
||||
padding: 3px 4px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
cursor: grab;
|
||||
opacity: 0;
|
||||
transition: opacity 0.15s;
|
||||
}
|
||||
|
||||
.gallery-item:hover .gallery-drag-handle { opacity: 1; }
|
||||
|
||||
.gallery-order-badge {
|
||||
position: absolute;
|
||||
bottom: 4px;
|
||||
left: 4px;
|
||||
z-index: 10;
|
||||
background-color: rgba(0,0,0,0.7);
|
||||
color: #fff;
|
||||
font-size: 0.7rem;
|
||||
font-weight: 700;
|
||||
padding: 2px 6px;
|
||||
min-width: 20px;
|
||||
text-align: center;
|
||||
}
|
||||
.authors-list {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(4, 1fr);
|
||||
|
||||
Reference in New Issue
Block a user