feat: 完善文档和界面,增加盒子类型支持及批量新增功能
This commit is contained in:
@@ -76,6 +76,35 @@ body {
|
||||
gap: 14px;
|
||||
}
|
||||
|
||||
.group-panel {
|
||||
margin-bottom: 16px;
|
||||
}
|
||||
|
||||
.group-title-row {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
align-items: baseline;
|
||||
justify-content: space-between;
|
||||
gap: 8px;
|
||||
margin-bottom: 12px;
|
||||
}
|
||||
|
||||
.group-title-row h3 {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
.group-desc {
|
||||
color: var(--muted);
|
||||
font-size: 14px;
|
||||
}
|
||||
|
||||
.new-box-form {
|
||||
display: grid;
|
||||
grid-template-columns: 1.2fr 1fr auto;
|
||||
gap: 8px;
|
||||
margin-bottom: 12px;
|
||||
}
|
||||
|
||||
.box-card,
|
||||
.panel {
|
||||
background: var(--card);
|
||||
@@ -89,12 +118,24 @@ body {
|
||||
margin: 0 0 6px;
|
||||
}
|
||||
|
||||
.grid-28 {
|
||||
.box-card h4 {
|
||||
margin: 0 0 6px;
|
||||
}
|
||||
|
||||
.slot-grid {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(7, minmax(90px, 1fr));
|
||||
gap: 10px;
|
||||
}
|
||||
|
||||
.slot-grid-14 {
|
||||
grid-template-columns: repeat(7, minmax(90px, 1fr));
|
||||
}
|
||||
|
||||
.slot-grid-bag {
|
||||
grid-template-columns: repeat(2, minmax(120px, 1fr));
|
||||
}
|
||||
|
||||
.slot {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
@@ -156,6 +197,14 @@ textarea {
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
.notice {
|
||||
background: #ecfeff;
|
||||
border: 1px solid #a5f3fc;
|
||||
color: #155e75;
|
||||
border-radius: 10px;
|
||||
padding: 10px;
|
||||
}
|
||||
|
||||
.search-row {
|
||||
display: flex;
|
||||
gap: 8px;
|
||||
@@ -187,16 +236,28 @@ td {
|
||||
margin: 10px 0 0;
|
||||
}
|
||||
|
||||
.batch-input {
|
||||
width: 100%;
|
||||
margin-top: 8px;
|
||||
margin-bottom: 8px;
|
||||
}
|
||||
|
||||
@media (max-width: 760px) {
|
||||
.hero {
|
||||
flex-direction: column;
|
||||
align-items: flex-start;
|
||||
}
|
||||
|
||||
.grid-28 {
|
||||
.slot-grid,
|
||||
.slot-grid-14,
|
||||
.slot-grid-bag {
|
||||
grid-template-columns: repeat(4, minmax(70px, 1fr));
|
||||
}
|
||||
|
||||
.new-box-form {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
|
||||
.form-grid {
|
||||
grid-template-columns: 1fr;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user