Advertisement
Guest User

Untitled

a guest
Mar 14th, 2018
162
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.42 KB | None | 0 0
  1. @namespace "http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul";
  2.  
  3. @-moz-document url("chrome://browser/content/browser.xul") {
  4. :root:not([tabsintitlebar]) #TabsToolbar {
  5. transform: translateY(100vh) !important;
  6. }
  7. :root:not([tabsintitlebar]) #navigator-toolbox {
  8. margin-top: calc(0px - var(--tab-min-height)) !important;
  9. }
  10. :root:not([tabsintitlebar]) #browser-panel {
  11. padding-bottom: var(--tab-min-height) !important;
  12. }
  13.  
  14. :root:not([tabsintitlebar]) #TabsToolbar { -moz-box-ordinal-group: 0 !important; }
  15. :root:not([tabsintitlebar]) #toolbar-menubar { -moz-box-ordinal-group: 1 !important; }
  16. :root:not([tabsintitlebar]) #nav-bar { -moz-box-ordinal-group: 2 !important; }
  17. :root:not([tabsintitlebar]) #PersonalToolbar { -moz-box-ordinal-group: 3 !important; }
  18. :root:not([tabsintitlebar]) #navigator-toolbox::after { -moz-box-ordinal-group: 4 !important; }
  19. }
  20.  
  21. .tabbrowser-tab[fadein]:not([pinned]) {
  22. max-width: 200px !important;
  23. min-width: 200px !important;
  24. }
  25.  
  26. #tabbrowser-tabs .tabbrowser-tab .tab-close-button { display:none!important; }
  27.  
  28. #TabsToolbar .tabbrowser-tab[selected] .tab-line {
  29. display: none !important;
  30. }
  31.  
  32. #pageActionButton { display: none !important; }
  33.  
  34. .tabbrowser-arrowscrollbox > .scrollbutton-up,
  35. .tabbrowser-arrowscrollbox > .scrollbutton-down {
  36. display: none !important;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement