sidebery icon indicating copy to clipboard operation
sidebery copied to clipboard

Rearrange bottom bar?

Open iFUCKINGHATEcomputers opened this issue 2 years ago • 1 comments

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?

iFUCKINGHATEcomputers avatar Oct 15 '23 20:10 iFUCKINGHATEcomputers

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;
}

mbnuqw avatar Mar 28 '24 11:03 mbnuqw