Cài đặt quota cho các thành viên

This commit is contained in:
2026-06-09 12:29:38 +07:00
parent 9f9c38e6e7
commit 0eaaf074ba
6 changed files with 346 additions and 16 deletions
+63
View File
@@ -422,6 +422,69 @@ html, body {
color: #ccc;
}
/* Storage Progress Bar */
.storage-info {
margin-top: 25px;
padding: 15px;
background: rgba(255, 255, 255, 0.05);
border-radius: 10px;
border: 1px solid rgba(255, 255, 255, 0.1);
}
.storage-info label {
display: block;
margin-bottom: 10px;
font-size: 14px;
color: #aaa;
}
.progress-container {
height: 8px;
background: #444;
border-radius: 4px;
overflow: hidden;
margin-bottom: 8px;
}
.progress-bar {
height: 100%;
background: #28a745;
width: 0%;
transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
#storage-text {
font-size: 12px;
color: #888;
display: block;
text-align: right;
}
.top-files-section {
margin-top: 15px;
padding-top: 15px;
border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.top-files-section h4 {
font-size: 13px;
color: #ffd700;
margin-bottom: 10px;
text-transform: uppercase;
letter-spacing: 0.5px;
}
.top-file-item {
display: flex;
justify-content: space-between;
align-items: center;
padding: 6px 0;
font-size: 12px;
border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}
.top-file-name {
color: #eee;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
max-width: 180px;
}
.top-file-size { color: #888; font-family: monospace; }
/* Dashboard List Styles */
.dashboard-list {
display: flex;