mirror of
https://github.com/jeffvli/feishin.git
synced 2026-05-07 20:40:15 +02:00
support navidrome playlist image upload
This commit is contained in:
@@ -112,6 +112,7 @@
|
||||
}
|
||||
|
||||
.image-section {
|
||||
position: relative;
|
||||
z-index: 15;
|
||||
display: flex;
|
||||
grid-area: image;
|
||||
@@ -124,6 +125,21 @@
|
||||
}
|
||||
}
|
||||
|
||||
.image-overlay {
|
||||
position: absolute;
|
||||
right: var(--theme-spacing-xs);
|
||||
bottom: var(--theme-spacing-xs);
|
||||
z-index: 2;
|
||||
pointer-events: none;
|
||||
opacity: 0;
|
||||
transition: opacity 120ms ease;
|
||||
}
|
||||
|
||||
.image-section:hover .image-overlay {
|
||||
pointer-events: auto;
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
.metadata-section {
|
||||
z-index: 15;
|
||||
display: flex;
|
||||
|
||||
Reference in New Issue
Block a user