Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Move sidebar to right side #18645

Open
foxt opened this issue May 20, 2024 · 0 comments
Open

Move sidebar to right side #18645

foxt opened this issue May 20, 2024 · 0 comments

Comments

@foxt
Copy link

foxt commented May 20, 2024

The feature request

The option to move the side bar to the right side.

image

Proposed solution

Not a high priority issue, but if you're using multiple monitors, and have your secondary monitor to the left, it's easier to access things on the right side of the screen. (Also, I assume this would be better for RTL users, but I'm not one of those so I'm not sure)

Additional context

Not sure of any deeper issues, but applying the following:

#repository, #desktop-app-toolbar {
    flex-direction: row-reverse;  /* flip the layout */
}
.foldout {
    right: 0px; /* moves the "Current repository" drop down to the right */
}

#repository-sidebar {
    /* flip the border side */
    border-right: none;
    border-left: 1px solid var(--box-border-color);
}

.resizable-component .resize-handle {
    /* flip the resize grab handle */
    left: -5px;
    right: revert;
}

gets you most of the way there. The resizing is still a bit broken.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants