feat(KB-256): reposition QuickEntryBox above table headers in ListView

- Move QuickEntryBox from below headers to above the table in ListView
- Update CSS to support new positioning with sticky header layout
- Adjust ListView component structure for better visual hierarchy
- Update ListView tests to reflect new component ordering
This commit is contained in:
gsxdsm
2026-03-30 23:18:59 -07:00
parent f1997c0176
commit 1d1b2fa05f
4 changed files with 40 additions and 15 deletions

View File

@@ -3527,6 +3527,19 @@ body {
margin: 0 auto;
}
/* New class for QuickEntryBox positioned above the table in list view */
.list-quick-entry-above-table {
width: 100%;
padding: var(--space-md) var(--space-xl);
background: var(--surface);
border-bottom: 1px solid var(--border);
}
.list-quick-entry-above-table .quick-entry-box {
max-width: 800px;
margin: 0 auto;
}
.list-column-dropdown {
position: absolute;
top: 100%;