Tweaks & fixes

This commit is contained in:
2026-03-29 09:56:40 -04:00
parent 6a2d0cffd6
commit c21d8b1097
11 changed files with 310 additions and 81 deletions

View File

@ -44,6 +44,36 @@
cursor: pointer;
}
.yaotp-switcher-create-group {
display: flex;
align-items: center;
gap: 4px;
flex-shrink: 0;
}
.yaotp-switcher-name-input {
font-size: var(--font-ui-small);
padding: 3px 6px;
border: 1px solid var(--background-modifier-border);
border-radius: 4px;
background: var(--background-primary);
color: var(--text-normal);
width: 160px;
}
.yaotp-switcher-name-input:focus {
outline: none;
border-color: var(--interactive-accent);
}
.yaotp-switcher-confirm-btn,
.yaotp-switcher-cancel-btn {
flex-shrink: 0;
font-size: var(--font-ui-small);
padding: 3px 8px;
cursor: pointer;
}
/* ── Task List ──────────────────────────────────────────────────────────── */
.yaotp-list-container {
@ -225,6 +255,12 @@
gap: 8px;
}
.yaotp-editor-delete-btn {
margin-right: auto;
color: var(--text-error);
}
/* Settings error state */
.yaotp-setting-error {
border-color: var(--color-red) !important;