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

Tabs Sidebar needs to remain on the outer edge of the window #3650

Open
rubaboo opened this issue Dec 17, 2024 · 0 comments
Open

Tabs Sidebar needs to remain on the outer edge of the window #3650

rubaboo opened this issue Dec 17, 2024 · 0 comments

Comments

@rubaboo
Copy link

rubaboo commented Dec 17, 2024

Is your feature request related to a problem? Please describe.
When Bookmarks or any other sidebar is open, Tabs Sidebar is positioned between that and the content frame. It doesn't look good, especially if the other sidebar is used for Side View.

Describe the solution you'd like
Tabs Sidebar needs to remain on the outer edge of the window (left or right, whichever is chosen).

Describe alternatives you've considered
Currently using this in my userChrome.css and it seems to do the trick:

:root:not(.tabs-sidebar-right) #sidebar-box:not([positionend="true"]) ~ #tabs-sidebar-box {
  order: 1 !important;
}
:root:not(.tabs-sidebar-right) #sidebar-box:not([positionend="true"]) ~ #tabs-sidebar-splitter {
  order: 2 !important;
}
:root:not(.tabs-sidebar-right) #sidebar-box:not([positionend="true"]) {
  order: 3 !important;
}:root:not(.tabs-sidebar-right) #sidebar-box:not([positionend="true"]) ~ #sidebar-splitter {
  order: 4 !important;
}
:root.tabs-sidebar-right #sidebar-box[positionend="true"] ~ #sidebar-splitter {
  order: 2 !important;
}
:root.tabs-sidebar-right #sidebar-box[positionend="true"] {
  order: 3 !important;
}
:root.tabs-sidebar-right #sidebar-box[positionend="true"] ~ #tabs-sidebar-splitter {
  order: 4 !important;
}
:root.tabs-sidebar-right #sidebar-box[positionend="true"] ~ #tabs-sidebar-box {
  order: 5 !important;
}
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

1 participant