sidebery
sidebery copied to clipboard
Rearrange bottom bar?
Description
Any way to rearrange the bottom bar so it's in the order: "History - Recently closed - Bookmarks"? It's more intuitive and resembles the native firefox menu order. Maybe using CSS?
Custom style workaround:
.BottomBar > .tool-btn:nth-child(3) {
order: 1;
}
.BottomBar > .tool-btn:nth-child(1) {
order: 2;
}
.BottomBar > .tool-btn:nth-child(2) {
order: 3;
}