feat(KB-160): implement expandable textarea in QuickEntryBox

- Add expandable textarea with auto-resize functionality to QuickEntryBox
- Update QuickEntryBox tests for new expandable behavior
- Refactor PlanningModeModal tests for improved consistency
- Remove obsolete changeset for planning-mode-streaming fix
- Add CSS transitions for smooth textarea expansion
This commit is contained in:
gsxdsm
2026-03-30 09:06:57 -07:00
parent f37b5d3fde
commit b34f180d97
3 changed files with 272 additions and 64 deletions

View File

@@ -7515,9 +7515,23 @@ html .column.drag-over * {
border-bottom: 1px solid var(--border);
color: var(--text);
font-size: 13px;
line-height: 1.4;
font-family: inherit;
outline: none;
transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
resize: none;
min-height: 36px;
max-height: 200px;
transition: border-color var(--transition-fast), box-shadow var(--transition-fast), min-height 0.2s ease;
}
.quick-entry-input--expanded {
min-height: 80px;
}
@media (max-width: 768px) {
.quick-entry-input--expanded {
min-height: 60px;
}
}
.quick-entry-input:focus {