fix(Users): fix abnormal color in dialog add/edit user when dark mode enabled

build: update vite to v7.3.1 and related dependencies
This commit is contained in:
2026-03-12 22:29:33 +08:00
parent 37af87f5af
commit 3754829b42
4 changed files with 304 additions and 140 deletions

View File

@@ -151,6 +151,56 @@
cursor: not-allowed;
}
.dark .form-group label {
color: #b0b0b0;
}
.dark .form-group input,
.dark .form-group select {
background: #3d3d3d;
color: var(--text-color);
border-color: var(--border-color);
}
.dark .form-group input:disabled {
background: #2a2a2a;
color: #666;
}
.dark .cancel-btn {
background: #3d3d3d;
color: var(--text-color);
}
.dark .cancel-btn:hover {
background: #4d4d4d;
}
.dark .info-row .label,
.dark .info-label,
.dark .detail-key,
.dark .config-key {
color: #b0b0b0;
}
.dark .log-item {
background: #2a2a2a;
}
.dark .proxy-item,
.dark .config-item {
background: #2a2a2a;
}
.dark .back-btn {
background: #3d3d3d;
color: var(--text-color);
}
.dark .back-btn:hover {
background: #4d4d4d;
}
.form-actions {
display: flex;
gap: 12px;