Fix D-InSAR export UI and task folder isolation

This commit is contained in:
2026-04-17 00:18:03 +08:00
parent bc5ed74d4d
commit 6e98bbe8b0
7 changed files with 335 additions and 97 deletions
+24 -5
View File
@@ -3709,6 +3709,12 @@ input[type="checkbox"] {
gap: 6px;
cursor: pointer;
}
.export-select-hint {
margin-bottom: 8px;
font-size: 12px;
color: var(--color-text-secondary);
line-height: 1.5;
}
.export-result-list {
list-style: none;
padding: 0;
@@ -3780,15 +3786,28 @@ input[type="checkbox"] {
padding-top: 12px;
border-top: 1px solid var(--color-border);
}
.result-export-modal .modal-footer .btn-primary {
background: var(--color-primary);
color: white;
border: none;
.result-export-modal .modal-footer button {
min-width: 108px;
padding: 6px 16px;
border-radius: 4px;
border: 1px solid var(--color-border);
background: #fff;
color: var(--color-text-primary);
cursor: pointer;
}
.result-export-modal .modal-footer .btn-primary:disabled {
.result-export-modal .modal-footer .btn-secondary:hover:not(:disabled) {
background: var(--color-panel-muted);
}
.result-export-modal .modal-footer .btn-primary {
background: var(--color-accent);
color: #fff;
border: none;
font-weight: 600;
}
.result-export-modal .modal-footer .btn-primary:hover:not(:disabled) {
background: var(--color-accent-strong);
}
.result-export-modal .modal-footer button:disabled {
opacity: 0.5;
cursor: not-allowed;
}