fix: minor UI adjustments

This commit is contained in:
Xiaohan-Tian
2026-05-14 22:35:04 -07:00
parent f9a3edb832
commit 892e154a0f
7 changed files with 368 additions and 31 deletions
+19 -6
View File
@@ -296,24 +296,37 @@
/* Generate / Separate button */
.kgone-btn-generate {
background-color: #4a5fa0;
border: none;
border-radius: 4px;
color: #e0e0e0;
font-size: 12px;
font-weight: 600;
padding: 8px 12px;
cursor: pointer;
width: 100%;
margin-top: 6px;
}
.kgone-btn-generate-accent {
background-color: #4a5fa0;
border: none;
color: #e0e0e0;
cursor: pointer;
transition: background-color 0.15s;
}
.kgone-btn-generate:hover:not(:disabled) {
.kgone-btn-generate-accent:hover:not(:disabled) {
background-color: #5a70b8;
}
.kgone-btn-generate:disabled {
.kgone-btn-generate-accent:disabled {
background-color: #3a3a3a;
color: #666;
cursor: not-allowed;
}
.kgone-btn-generate.dialog-btn {
min-height: 32px;
}
.kgone-btn-generate.dialog-btn:disabled {
background-color: #3a3a3a;
color: #666;
cursor: not-allowed;