1.2.0版本
This commit is contained in:
@@ -1,10 +1,21 @@
|
||||
.design-page {
|
||||
padding: 0 24px 24px;
|
||||
min-height: 100vh;
|
||||
}
|
||||
|
||||
.manage-btn {
|
||||
font-size: 28px;
|
||||
color: var(--accent-blue);
|
||||
font-weight: 500;
|
||||
}
|
||||
|
||||
/* 状态 Tab */
|
||||
.status-tabs {
|
||||
margin: 20px 0;
|
||||
background: var(--bg-card);
|
||||
border: var(--line-card);
|
||||
border-radius: 16px;
|
||||
padding: 8px 0;
|
||||
}
|
||||
|
||||
.tabs-scroll {
|
||||
@@ -39,6 +50,50 @@
|
||||
border-radius: 2px;
|
||||
}
|
||||
|
||||
/* 批量管理工具栏 */
|
||||
.batch-bar {
|
||||
padding: 20px 24px;
|
||||
margin-bottom: 16px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.batch-select-all {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 16px;
|
||||
}
|
||||
|
||||
.batch-checkbox {
|
||||
width: 36px;
|
||||
height: 36px;
|
||||
border-radius: 50%;
|
||||
border: 3px dashed var(--text-secondary);
|
||||
flex-shrink: 0;
|
||||
transition: all 0.2s;
|
||||
}
|
||||
|
||||
.batch-checkbox.checked {
|
||||
border-color: var(--accent-pink);
|
||||
background: var(--accent-pink);
|
||||
}
|
||||
|
||||
.batch-text {
|
||||
font-size: 26px;
|
||||
color: var(--text-primary);
|
||||
}
|
||||
|
||||
.batch-delete {
|
||||
font-size: 26px;
|
||||
color: var(--text-secondary);
|
||||
padding: 10px 24px;
|
||||
}
|
||||
|
||||
.batch-delete.active {
|
||||
color: #ff4757;
|
||||
font-weight: 600;
|
||||
}
|
||||
|
||||
/* 设计卡片列表 */
|
||||
.design-list {
|
||||
padding-bottom: 24px;
|
||||
@@ -47,6 +102,12 @@
|
||||
.design-card {
|
||||
margin-bottom: 20px;
|
||||
padding: 28px;
|
||||
transition: all 0.2s ease;
|
||||
}
|
||||
|
||||
.design-card.selected {
|
||||
border-color: var(--accent-pink);
|
||||
background: rgba(255, 154, 158, 0.06);
|
||||
}
|
||||
|
||||
.design-body {
|
||||
|
||||
Reference in New Issue
Block a user