remove legacy .tabbrowser-arrowscrollbox selectors

This commit is contained in:
MrOtherGuy 2022-04-17 15:56:22 +03:00
parent 0c81924f74
commit a383071f10
3 changed files with 10 additions and 7 deletions

View file

@ -10,7 +10,6 @@ See the above repository for updates as well as full license text. */
#TabsToolbar{ min-height: 0px !important }
#tabbrowser-tabs,
#tabbrowser-tabs > .tabbrowser-arrowscrollbox,
#tabbrowser-arrowscrollbox{ min-height: 0 !important; }
:root:not([customizing]) #tabbrowser-tabs .tabs-newtab-button,

View file

@ -16,7 +16,6 @@ Window controls will be all wrong without it
#TabsToolbar > .titlebar-buttonbox-container { display: none }
#tabbrowser-tabs,
#tabbrowser-tabs > .tabbrowser-arrowscrollbox,
#tabbrowser-arrowscrollbox{ min-height: 0 !important; }
#TabsToolbar > .titlebar-spacer[type="post-tabs"]{

View file

@ -4,14 +4,19 @@ See the above repository for updates as well as full license text. */
/* Show pinned tabs on right side of normal tabs */
/* This is stupid hack that barely works and might lead to some very unexpected behavior */
.tabbrowser-arrowscrollbox > spacer,
.scrollbutton-up[orient="horizontal"]~spacer{ display: none }
.tabbrowser-arrowscrollbox > .arrowscrollbox-scrollbox,
.scrollbutton-up[orient="horizontal"]~scrollbox{ -moz-box-direction: inherit; -moz-box-pack: end }
.scrollbutton-up[orient="horizontal"]~scrollbox{
-moz-box-direction: inherit;
-moz-box-pack: end;
}
.tabbrowser-arrowscrollbox > .arrowscrollbox-scrollbox::after,
.scrollbutton-up[orient="horizontal"]~scrollbox::after{ display: -moz-box; content: ""; -moz-box-flex: 1; -moz-box-ordinal-group: 2 }
.scrollbutton-up[orient="horizontal"]~scrollbox::after{
display: -moz-box;
content: "";
-moz-box-flex: 1;
-moz-box-ordinal-group: 2;
}
#tabs-newtab-button{ -moz-box-ordinal-group: 2 }
.tabbrowser-tab[pinned]{ -moz-box-ordinal-group: 3 }