more commits..

This commit is contained in:
pika 2025-03-23 03:53:45 +01:00
parent 6dda02141e
commit 7823be6481
20 changed files with 1835 additions and 631 deletions

View file

@ -741,4 +741,55 @@ main {
.new-item {
animation: new-item-appear 0.3s forwards;
}
/* Custom animations and transitions */
.folder-enter-active {
animation: folder-enter 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.0);
}
@keyframes folder-enter {
from {
opacity: 0;
transform: translateY(15px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
/* Folder/file hover animation */
.folder-item,
.file-item {
transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.folder-item:hover,
.file-item:hover {
transform: translateY(-3px);
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
/* Upload dropzone styles */
.dropzone {
border: 2px dashed var(--border-color);
padding: 30px;
text-align: center;
background-color: rgba(0, 0, 0, 0.05);
transition: all 0.3s ease;
cursor: pointer;
}
.dropzone.highlight {
border-color: var(--primary-color);
background-color: rgba(74, 107, 255, 0.1);
}
.upload-icon {
font-size: 48px;
color: var(--primary-color);
margin-bottom: 15px;
opacity: 0.8;
}