Download-Update

This commit is contained in:
2026-09-07 08:29:52 +02:00
parent 2c2620a624
commit 59722ee255
4 changed files with 92 additions and 6 deletions

View File

@@ -312,26 +312,38 @@ button {
color: var(--text-muted);
}
.file-card-delete {
.file-card-delete,
.file-card-download {
position: absolute;
top: 8px;
right: 8px;
width: 24px;
height: 24px;
border-radius: 50%;
border: 1px solid var(--border-strong);
background: rgba(20, 23, 26, 0.85);
color: var(--text-muted);
font-size: 15px;
font-size: 13px;
line-height: 1;
display: flex;
align-items: center;
justify-content: center;
opacity: 0;
cursor: pointer;
text-decoration: none;
transition: opacity 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.file-card:hover .file-card-delete {
.file-card-delete {
right: 8px;
font-size: 15px;
}
.file-card-download {
right: 38px;
}
.file-card:hover .file-card-delete,
.file-card:hover .file-card-download {
opacity: 1;
}
@@ -340,6 +352,16 @@ button {
border-color: var(--danger);
}
.file-card-download:hover {
color: var(--accent);
border-color: var(--accent);
}
.header-actions {
display: flex;
gap: 10px;
}
.toast {
position: fixed;
bottom: 24px;