Files
Oxicloud/static/css/views/trash.css
T

59 lines
1.1 KiB
CSS
Raw Normal View History

.trash-item {
2026-04-07 22:48:59 +02:00
position: relative;
}
.trash-actions {
2026-04-07 22:48:59 +02:00
position: absolute;
top: 10px;
right: 10px;
display: none;
gap: 8px;
}
.files-grid-view .file-card.trash-item:hover .trash-actions,
.files-list-view .file-item.trash-item:hover .actions-cell {
2026-04-07 22:48:59 +02:00
display: flex;
}
.trash-actions button,
.actions-cell button {
background: var(--color-trash-surface);
border: 1px solid var(--color-trash-border);
2026-04-07 22:48:59 +02:00
border-radius: 4px;
padding: 4px 8px;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center;
width: 30px;
height: 30px;
transition: all 0.2s;
}
.trash-actions button:hover,
.actions-cell button:hover {
background: var(--color-trash-empty-bg);
}
.btn-restore {
color: var(--color-trash-restore);
}
.btn-delete {
color: var(--color-trash-delete);
}
/* .file-item.trash-item > .path-cell → resourceList.css */
.actions-cell {
2026-04-07 22:48:59 +02:00
display: flex;
gap: 8px;
justify-content: flex-start;
align-items: center;
}
.btn-danger {
background-color: var(--color-trash-delete);
color: var(--color-danger-text);
}