优化硬盘识别

This commit is contained in:
CN-JS-HuiBai
2026-04-05 17:23:22 +08:00
parent dc1a8a1a44
commit 5238167212
5 changed files with 128 additions and 16 deletions

View File

@@ -1259,6 +1259,62 @@ input:checked+.slider:before {
color: var(--text-primary);
}
.detail-partitions-container {
padding: 20px;
border-top: 1px solid var(--border-color);
}
.detail-section-title {
font-size: 0.8rem;
font-weight: 700;
color: var(--text-muted);
text-transform: uppercase;
letter-spacing: 0.05em;
margin-bottom: 12px;
}
.detail-partitions-list {
display: flex;
flex-direction: column;
gap: 12px;
}
.partition-row {
display: flex;
flex-direction: column;
gap: 6px;
}
.partition-info {
display: flex;
justify-content: space-between;
align-items: center;
font-size: 0.82rem;
}
.partition-mount {
font-family: var(--font-mono);
color: var(--text-primary);
}
.partition-usage-text {
color: var(--text-secondary);
}
.partition-progress {
width: 100%;
height: 6px;
background: rgba(255, 255, 255, 0.05);
border-radius: 3px;
overflow: hidden;
}
.partition-bar {
height: 100%;
background: var(--accent-amber);
border-radius: 3px;
}
.chevron-icon {
width: 20px;
height: 20px;