Advertisement
Guest User

Untitled

a guest
Jul 10th, 2019
657
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.94 KB | None | 0 0
  1. /* Hide main tabs toolbar */
  2. #TabsToolbar {
  3.     visibility: collapse;
  4. }
  5.  
  6. /* Hide splitter, when using Tree Style Tab. */
  7. #sidebar-box[sidebarcommand="treestyletab_piro_sakura_ne_jp-sidebar-action"] + #sidebar-splitter {
  8.     display: none !important;
  9. }
  10.  
  11. /* Hide sidebar header, when using Tree Style Tab. */
  12. #sidebar-box[sidebarcommand="treestyletab_piro_sakura_ne_jp-sidebar-action"] #sidebar-header {
  13.     visibility: collapse;
  14. }
  15.  
  16. /* Hide scrollbar */
  17. @namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); /* only needed once */
  18.  
  19. :-moz-any(#content,#appcontent) browser{
  20.  margin-right:-14px!important;
  21.  overflow-y:scroll;
  22.  margin-bottom:-14px!important;
  23.  overflow-x:scroll;
  24. }
  25. /* urlbar settings */
  26. #urlbar, .searchbar-textbox {
  27.     border: 0px !important;
  28. }
  29.  
  30. #urlbar {
  31.     margin-left: 10px !important;
  32.     margin-right: 10px !important;
  33. }
  34. #urlbar, .searchbar-textbox {
  35.     box-shadow: none !important;
  36. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement