Download-Update
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user