fix(file-summary): 调整工作流批次轮播展示
This commit is contained in:
@@ -941,6 +941,69 @@ input:focus {
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
.workflow-batch-carousel {
|
||||
gap: 10px;
|
||||
}
|
||||
|
||||
.workflow-batch-carousel .workflow-card {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.workflow-batch-carousel .workflow-card.active {
|
||||
display: grid;
|
||||
}
|
||||
|
||||
.workflow-batch-controls {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
gap: 8px;
|
||||
min-height: 30px;
|
||||
}
|
||||
|
||||
.workflow-batch-btn {
|
||||
display: inline-grid;
|
||||
place-items: center;
|
||||
width: 28px;
|
||||
height: 28px;
|
||||
border: 1px solid var(--line);
|
||||
border-radius: 999px;
|
||||
background: #ffffff;
|
||||
color: var(--text);
|
||||
cursor: pointer;
|
||||
font-size: 18px;
|
||||
line-height: 1;
|
||||
}
|
||||
|
||||
.workflow-batch-btn:hover {
|
||||
border-color: var(--accent);
|
||||
color: var(--accent);
|
||||
}
|
||||
|
||||
.workflow-batch-dots {
|
||||
display: flex;
|
||||
flex: 1;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
gap: 6px;
|
||||
min-width: 0;
|
||||
}
|
||||
|
||||
.workflow-batch-dot {
|
||||
width: 7px;
|
||||
height: 7px;
|
||||
padding: 0;
|
||||
border: 0;
|
||||
border-radius: 999px;
|
||||
background: #cbd5e1;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.workflow-batch-dot.active {
|
||||
width: 18px;
|
||||
background: var(--accent);
|
||||
}
|
||||
|
||||
.node-status {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
|
||||
Reference in New Issue
Block a user