Advertisement
Guest User

Untitled

a guest
Feb 27th, 2020
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.40 KB | None | 0 0
  1. :root {
  2.     --sidebar-width: 180px;
  3.     --toolbar-height: -26px;
  4.     --menubar-height: -60px;
  5.     --toolmenubar-height: -85px; /* sum of previous two */
  6.   }
  7.  
  8.  /* Remove tabs toolbar to save space */
  9. #TabsToolbar {
  10.      visibility: collapse !important;
  11. }
  12.  
  13. /* Hide sidebar header, when using Tree Style Tab. */
  14. #sidebar-box[sidebarcommand="treestyletab_piro_sakura_ne_jp-sidebar-action"] #sidebar-header {
  15.     visibility: collapse;
  16. }
  17.  
  18. /* Hide splitter, when using Tree Style Tab. */
  19. #sidebar-box[sidebarcommand="treestyletab_piro_sakura_ne_jp-sidebar-action"] + #sidebar-splitter {
  20.     display: none !important;
  21. }
  22.  
  23. /* lock sidebar to height by doing the inverse margin of the toolbar element */
  24. #sidebar-box {
  25.     z-index: 1000 !important;
  26.     position: relative!important;
  27.     margin-top: var(--menubar-height) !important;
  28.     border-right: 1px solid #ccc;
  29.   }
  30.  
  31.   #main-window[title^="Firefox Nightly"] #sidebar-box {
  32.     margin-top: var(--toolmenubar-height) !important;
  33.   }
  34.  
  35.   /* lock sidebar to specified width */
  36.   #sidebar-box, #sidebar-box #sidebar {
  37.       min-width: var(--sidebar-width) !important;
  38.       max-width: var(--sidebar-width) !important;
  39.   }
  40.  
  41.   #sidebar { border-right: 1px solid #ccc; }
  42.  
  43.   #nav-bar {
  44.     padding-top: 5px !important;
  45.     padding-bottom: 5px !important;
  46.     margin-left: var(--sidebar-width) !important;
  47.     padding-left: 7px !important;
  48.   }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement