question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Feature request - Increase workspace width

See original GitHub issue

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 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 image

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:closed
  • Created 7 years ago
  • Reactions:2
  • Comments:6 (3 by maintainers)

github_iconTop GitHub Comments

1reaction
ioweb-grcommented, Dec 5, 2017

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.

0reactions
ioweb-grcommented, Oct 8, 2019
Read more comments on GitHub >

github_iconTop 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 >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found