style: 优化按钮禁用态与主题入口并将设置移至侧栏底部

This commit is contained in:
GouJ
2026-09-01 21:58:32 +08:00
parent 03bf87ca9a
commit a24326b85d
11 changed files with 278 additions and 71 deletions
+10 -2
View File
@@ -152,11 +152,19 @@
border-color 0.15s;
}
.button-primary {
background: var(--app-accent);
background: var(--app-button-primary);
color: var(--app-on-accent);
}
.button-primary:hover:not(:disabled) {
background: var(--app-accent-hover);
background: var(--app-button-hover);
}
.button-primary:active:not(:disabled) {
background: var(--app-button-pressed);
}
.button:disabled {
background: var(--app-disabled-bg);
color: var(--app-disabled-text);
opacity: 1;
}
.button-secondary {
background: var(--app-control);