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:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user