feat(FN-1596): increase width of quick-add task text entry box

- Add CSS rule to override padding-right for QuickEntryBox textarea
- The .description-with-refine textarea rule was adding 70px padding that wasn't needed in QuickEntryBox (refine button is in controls panel)
- Add regression tests for textarea width contract
- Add mockDesktopViewport helper for viewport-specific tests
- Keep max-width: 800px constraint in list view (design decision)
This commit is contained in:
gsxdsm
2026-04-12 17:31:51 -07:00
parent 1c577176ea
commit 1203fe4d24
2 changed files with 47 additions and 0 deletions

View File

@@ -14032,6 +14032,12 @@ html .column.drag-over * {
width: 100%;
}
/* Override padding from .description-with-refine textarea to fill available width */
/* The refine button is in the controls panel, not overlaid on textarea */
.quick-entry-textarea-wrap textarea {
padding-right: 8px;
}
/* Quick Entry Box expand button - bottom-right of textarea */
.quick-entry-expand-btn {
position: absolute;