Feat: FileManager (#98) (#703)

* feat: add file manager module

- Complete file manager implementation with UI/UX
- Add drive management functionality
- Add file upload/download with progress tracking
- Add stamp integration and handling
- Add bulk operations and context menus

Co-authored-by: Roland Seres <roland.seres90@gmail.com>
Co-authored-by: nidishk <nidishkrishnan45@gmail.com>
This commit is contained in:
Bálint Ujvári
2025-11-12 11:26:00 +01:00
committed by GitHub
parent 1249c0df71
commit 5bfe2a0331
107 changed files with 21529 additions and 5578 deletions
@@ -0,0 +1,71 @@
.fm-drive-item-info {
display: flex;
gap: 4px;
flex-direction: column;
color: rgb(31, 41, 55);
font-weight: 500;
transition: background-color 0.3s;
.fm-drive-item-icon {
display: flex;
align-items: center;
color: rgb(237, 129, 49);
font-weight: 700;
}
}
.fm-drive-item-header {
display: flex;
font-weight: 700;
gap: 8px;
align-items: center;
}
.fm-drive-item-content {
display: flex;
flex-direction: column;
gap: 4px;
font-size: 11px;
}
.fm-drive-item-container {
display: flex;
position: relative;
justify-content: space-between;
padding: 16px;
padding-left: 40px;
&:hover {
background-color: rgb(209, 209, 209);
cursor: pointer;
}
&.fm-drive-item-container-selected {
background-color: rgb(209, 209, 209);
}
}
.fm-drive-item-capacity {
display: flex;
align-items: center;
gap: 8px;
}
.fm-drive-item-actions {
display: flex;
flex-direction: column;
justify-content: space-between;
align-items: end;
margin-bottom: 2px;
}
.fm-pointer {
cursor: pointer;
}
.fm-drive-item-context-menu {
position: fixed;
z-index: 1000;
}
.fm-disabled { opacity: 0.5; pointer-events: none; }