Is there a reason why the page width isn’t displaying full screen? The preview in the Doctype settings looks much better in comparison.
Full Width in Doctype Preview:
Doctype View:
avc
May 14, 2025, 11:41am
2
Hi @Zachary_Liebregts :
This screenshots are not coming from v15, belongs to develop (v16) branch.
The UI change is intended, due to new design pattern adopted by Frappe.
IMHO, this is not good UX, lot of wasted space.
Related Github issue:
opened 11:29AM - 25 Sep 24 UTC
closed 09:57AM - 06 Dec 24 UTC
v16
Maintaining a thread of completed and planned UI updates for Version 16
[WIP]…
### Desk cleanup
- [x] Basic module picker using single doctype: https://github.com/frappe/frappe/pull/27299
- [x] Cleanup list and form sidebars with more consistent spacing and move them to the right: https://github.com/frappe/frappe/pull/27377
- [ ] Update the "About" modal inside desk (better UI)
### Sidebar / Workspaces
- [x] Espresso style persistent and collapsible Workspace sidebar: https://github.com/frappe/frappe/pull/27499
- [x] Filter workspaces by app in the sidebar + app selector: https://github.com/frappe/frappe/pull/27621
- [x] Allow links in desk sidebar (other than workspaces), by extending `Workspace` DocType: https://github.com/frappe/frappe/pull/27908
- [ ] Better mobile experience for desk sidebar (overlay and tap to collapse)
- [x] Move private workspaces to its own sidebar space (virtual app called "Private"?) https://github.com/frappe/frappe/pull/27945
- [x] Disallow forking / duplicating public workspaces, make your own workspace
### Portal Views
- [x] Cleanup portal pages `/me`, `/error`, `/404` etc: https://github.com/frappe/frappe/pull/27898
- [ ] `/me` - Centering, fix logout
- [ ] No footer
- [ ] Sidebar should have standard styling if set
- [ ] Standard navbar
- [ ] Empty state for
- [ ] Remove default views (for example /Item etc)
Agreed, was really hoping it was a bug as it makes everything feel cramped especially with child tables. Additionally with no more in line edits of child table rows I’m considering just going back to v15.
avc
May 14, 2025, 12:18pm
4
I think sometime, somehow … this “full width” issue will be reconsidered.
Meanwhile, I managed this with a bit of css in a custom app …
Would you mind sharing the custom css?
avc
May 14, 2025, 1:36pm
6
Sure:
This custom app includes just this css
:root {
--page-max-width: 100%;
}
.grid-row-open .form-in-grid {
max-width: var(--form-in-grid-max-width, 100%); /* Default value */
}
Check this too, more elaborated.
1 Like