支持自动化条件导出;优化引导页面提示;支持快速添加账号

This commit is contained in:
cc
2026-04-12 23:37:26 +08:00
parent 69a598f196
commit 86daa8ef06
19 changed files with 3765 additions and 688 deletions

View File

@@ -304,6 +304,19 @@
}
}
.nav-hint {
margin-top: 4px;
display: inline-flex;
align-items: center;
width: fit-content;
padding: 1px 6px;
border-radius: 999px;
font-size: 11px;
font-weight: 600;
color: #0f766e;
background: rgba(20, 184, 166, 0.16);
}
.sidebar-footer {
display: flex;
@@ -362,6 +375,16 @@
font-size: 15px;
margin: 0;
}
.header-mode-tip {
margin: 10px 0 0;
padding: 6px 10px;
border-radius: 10px;
font-size: 12px;
color: var(--text-secondary);
background: var(--bg-tertiary);
border: 1px dashed var(--border-color);
}
}
.step-icon-wrapper {
@@ -556,6 +579,41 @@
gap: 16px;
}
.auto-image-key-preview {
display: flex;
flex-direction: column;
gap: 8px;
padding: 12px;
border: 1px solid var(--border-color);
border-radius: 12px;
background: var(--bg-tertiary);
}
.auto-image-key-row {
display: flex;
align-items: center;
justify-content: space-between;
gap: 12px;
code {
padding: 4px 8px;
border-radius: 8px;
background: var(--bg-primary);
border: 1px solid var(--border-color);
font-size: 12px;
color: var(--text-primary);
max-width: 70%;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
}
.auto-image-key-label {
font-size: 13px;
color: var(--text-secondary);
}
.mt-4 {
margin-top: 16px;
}