Add admin DICOM export controls

This commit is contained in:
Codex
2026-05-27 14:27:47 +08:00
parent fa38abf213
commit 555a04f337
4 changed files with 285 additions and 11 deletions

View File

@@ -262,7 +262,7 @@ button:disabled {
.series-pane {
padding: 14px;
display: grid;
grid-template-rows: auto auto auto auto 1fr;
grid-template-rows: auto auto auto auto auto 1fr;
gap: 12px;
}
@@ -366,6 +366,40 @@ button:disabled {
background: rgba(25, 212, 194, 0.08);
}
.export-toolbar {
display: grid;
grid-template-columns: 1fr 1fr auto;
align-items: center;
gap: 6px;
}
.export-toolbar button {
height: 30px;
border: 1px solid var(--stroke);
border-radius: 7px;
background: #0b0f16;
color: var(--muted);
font-size: 12px;
}
.export-toolbar button.active,
.export-toolbar button:not(:disabled):hover {
border-color: rgba(52, 116, 246, 0.7);
color: #dbe8ff;
background: rgba(52, 116, 246, 0.16);
}
.export-toolbar button:disabled {
cursor: not-allowed;
}
.export-toolbar span {
min-width: 36px;
color: var(--muted);
font-size: 12px;
text-align: right;
}
.study-list,
.series-grid {
min-height: 0;
@@ -376,13 +410,14 @@ button:disabled {
.study-card {
position: relative;
width: 100%;
padding: 12px 112px 12px 12px;
padding: 12px 112px 42px 12px;
margin-bottom: 10px;
border: 1px solid transparent;
border-radius: 8px;
background: #0b0f16;
color: var(--text);
text-align: left;
cursor: pointer;
}
.study-card-status-stack {
@@ -468,6 +503,47 @@ button:disabled {
line-height: 1.35;
}
.study-export-btn,
.study-batch-check {
position: absolute;
bottom: 10px;
height: 24px;
display: inline-grid;
place-items: center;
border: 1px solid var(--stroke);
border-radius: 999px;
background: rgba(21, 28, 39, 0.92);
color: #dbe8ff;
font-size: 11px;
font-style: normal;
font-weight: 800;
}
.study-export-btn {
right: 10px;
min-width: 50px;
}
.study-export-btn:hover {
border-color: rgba(25, 212, 194, 0.68);
color: #baf8ee;
background: rgba(25, 212, 194, 0.1);
}
.study-batch-check {
left: 12px;
grid-auto-flow: column;
gap: 5px;
padding: 0 8px;
color: var(--muted);
}
.study-batch-check input {
width: 13px;
height: 13px;
accent-color: var(--cyan);
}
.series-grid {
display: grid;
grid-template-columns: 1fr;