Feature request - Increase workspace width
See original GitHub issueHello,
I’m using a 1920x1080 monitor and I’m feeling that a lot of space is being wasted due to bootstrap container width and the left sidebar. I rarely use the left sidebar for my needs and I would love to see an option to collapse / expand it and make the main column 100% width.
Currently what I did using Stylish on firefox is add the following media query to gain extra space in full size screens
@media (min-width: 1440px) {
.container{
width: 100%
}
For the collapse / expand I’m thinking of adding a pin button
which when clicked would perform something like the following
$('document').ready(function () {
var sidebar_expanded = true;
$('.pin-button').click(function(){
if(sidebar_expanded){
$('.layout-side-section').hide();
$('.layout-main-section-wrapper').css('width', '100%');
sidebar_expanded = false;
}
else{
$('.layout-side-section').show();
$('.layout-main-section-wrapper').removeAttr('style');
sidebar_expanded = true;
}
});
});
Issue Analytics
- State:
- Created 7 years ago
- Reactions:2
- Comments:6 (3 by maintainers)
Top Results From Across the Web
Feature request - Increase workspace width #14768 - GitHub
Hello, I'm using a 1920x1080 monitor and I'm feeling that a lot of space is being wasted due to bootstrap container width and...
Read more >Feature Request: Change width of Properties Panel
When style names are long or in nested folders, they get cut off in the right side Design Properties panel on the Desktop...
Read more >[Feature request] Adjustable width of columns in data-tables ...
When working with data-tables / data-grids it would be great to be able to adjust the width of columns and/or lock the width...
Read more >Allow Detail/Form views to stretch to full browser width
Detail views that stretch the full width of the browser will be available with the new desktop UI. The Detail View can have...
Read more >Infinite Canvas - Adobe XD: Feature Requests - UserVoice
For large web projects, there can easily be 60+ artboards at 1920px width, which would run into the edge of XD's canvas.
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
It’s nice to see more interest in this. I also toyed with the idea of presenting more than 12 columns in grid and using class table table-responsive from bootstrap to allow horizontal scrolling on the table because sometimes the 12 columns aren’t enough for presenting the info I need in lists so I end up with name column being extra small.
I just found a relevant request to this one https://github.com/frappe/manual_erpnext_com/issues/52#issue-141896613