修复验收图片多选暂存

This commit is contained in:
yml2213
2026-08-15 14:49:48 +08:00
parent 190445319b
commit d433518038
5 changed files with 305 additions and 126 deletions
+86
View File
@@ -1540,6 +1540,92 @@ select {
margin-bottom: 12px;
}
.acceptance-draft-badge-wrap {
display: flex;
flex-direction: column;
align-items: flex-start;
gap: 6px;
}
.acceptance-draft-badge-wrap .ant-tag {
margin-inline-end: 0;
display: inline-flex;
align-items: center;
gap: 4px;
}
.worker-note-cell {
display: flex;
align-items: center;
gap: 6px;
min-width: 0;
}
.worker-note-badge {
display: inline-flex;
align-items: center;
gap: 6px;
max-width: 100%;
padding: 3px 8px;
background: #f6f8fa;
border: 1px solid #d0d7de;
border-radius: 6px;
cursor: pointer;
transition: all 0.2s ease;
font-size: 12px;
color: #24292f;
}
.worker-note-badge:hover {
background: #e6f4ff;
border-color: #91caff;
color: #0958d9;
}
.worker-note-text {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
max-width: 110px;
}
.worker-note-edit-icon {
font-size: 12px;
color: #8c8c8c;
transition: color 0.2s;
}
.worker-note-badge:hover .worker-note-edit-icon {
color: #0958d9;
}
.worker-note-add-btn {
border-style: dashed;
color: #595959;
font-size: 12px;
}
.worker-note-preset-tags {
display: flex;
flex-wrap: wrap;
gap: 8px;
}
.worker-note-preset-tag {
cursor: pointer;
user-select: none;
padding: 2px 10px;
border-radius: 4px;
transition: all 0.2s ease;
}
.worker-note-preset-tag:hover {
border-color: #1677ff;
color: #1677ff;
background: #e6f4ff;
}
.metric-grid {
display: grid;
gap: 12px;