fix(FN-1329): make description text input highlight theme-aware

- Add theme-aware selection and focus highlight styles for description textarea
- Ensure text input focus state respects dark/light theme colors
This commit is contained in:
gsxdsm
2026-04-09 14:58:09 -07:00
parent 3b1756375b
commit b13ad40361

View File

@@ -5214,6 +5214,11 @@ body {
overflow: hidden;
line-height: 1.4;
}
.inline-create-input:focus {
border-bottom: 1px solid var(--todo);
box-shadow: 0 1px 0 0 var(--todo);
}
.inline-create-input::placeholder {
color: var(--text-dim);
}
@@ -16293,6 +16298,10 @@ body[data-color-theme="terminal"][data-theme="light"]::before {
margin-bottom: var(--space-sm);
}
.quick-entry-box:focus-within {
border-color: var(--todo);
}
.quick-entry-input {
width: 100%;
padding: 6px 8px;