eoger / tabcenter-redux

Vertical Tabs extension for Firefox
Mozilla Public License 2.0
381 stars 67 forks source link

Inverse (from default) order causes inconsistency in where new tabs open #381

Closed OJFord closed 5 years ago

OJFord commented 5 years ago

With:

#tablist {
  flex-direction: column-reverse;
  display: flex;
  flex: 0 0 auto;
}
.tab.pinned {
  order: 1;
}

as suggested in the Wiki to reverse the order, Ctrl-T opens tabs at the top, but clicking links (whether within Firefox or from another application) opens tabs at the bottom.

dos1 commented 5 years ago

This is a Firefox behavior which this addon can't really influence, so you should post it on Firefox tracker. Have you checked browser.tabs.insertAfterCurrent and browser.tabs.insertRelatedAfterCurrent config entries?

OJFord commented 5 years ago

@dos1 Ah! Thanks. I also found Always Right, which probably just modifies those settings. Cheers.