Advertisement
Guest User

Untitled

a guest
Dec 9th, 2019
572
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.15 KB | None | 0 0
  1. /* TABS: on bottom */
  2. #navigator-toolbox toolbar:not(#nav-bar):not(#toolbar-menubar) {-moz-box-ordinal-group:10}
  3. #TabsToolbar {-moz-box-ordinal-group:1000!important}
  4.  
  5. #TabsToolbar {
  6. position: absolute !important;
  7. bottom: 0 !important;
  8. width: 100vw !important;
  9. display: block !important;
  10. }
  11.  
  12. #tabbrowser-tabs {
  13. width: 100vw !important;
  14. }
  15. #main-window:not([chromehidden*="toolbar"]) #navigator-toolbox {padding-bottom: var(--tab-min-height) !important;}
  16.  
  17. /* TABS: height */
  18. :root {
  19. --tab-toolbar-navbar-overlap: 0px !important;
  20. --tab-min-height: 33px !important; /* adjust to suit your needs */
  21. }
  22. :root #tabbrowser-tabs {
  23. --tab-min-height: 33px !important; /* needs to be the same as above under :root */
  24. --tab-min-width: 80px !important;
  25. }
  26.  
  27. #TabsToolbar {
  28. height: var(--tab-min-height) !important;
  29. margin-bottom: 1px !important;
  30. box-shadow: ThreeDShadow 0 -1px inset, -moz-dialog 0 1px !important;
  31. }
  32.  
  33. #tabbrowser-tabs,
  34. #tabbrowser-tabs > .tabbrowser-arrowscrollbox,
  35. .tabbrowser-tabs[positionpinnedtabs] > .tabbrowser-tab[pinned] {
  36. min-height: var(--tab-min-height) !important;
  37. max-height: var(--tab-min-height) !important;
  38. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement