mgastonportillo / gale-for-ff

CSS files to theme Firefox with Sidebery

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Return window action buttons.

mdvmd opened this issue · comments

commented

Hi. Is there a way to return window action button but put them on toolbar?

commented

What exactly do you mean by return window action? Like when you close or move a tab? You want a mechanism to undo that?

I think he means this

image

commented

Thanks for the heads up @AryanVerma1024. If that's the case, then replacing:

#TabsToolbar {
  display: none !important;
  height: 0 !important;
}

with:

#nav-bar {
  margin-top: -38px !important;
  margin-right: 138px !important;
  margin-bottom: -4px !important;
}

.tab[selected="true"] {
  visibility: collapse;
  height: 0px;
}

.tabbrowser-tab {
  visibility: collapse;
  height: 0px;
}

.tabbrowser-tab[visuallyselected="true"] {
  visibility: collapse;
  height: 0px;
}

would do the trick.

There are other ways to achieve this, but I don't plan to support it.

@mdvmd can you confirm that's what you meant?

commented

Closed due to inactivity