Guest User

Untitled

a guest
Nov 20th, 2017
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. /*
  2. Mess with Tree Style Tab styles to get close to old school feel. (Also, some random other changes)
  3. These styles can be entered by going to:
  4. Add-ons -> Tree Style Tab (Options) -> Advanced -> "Extra style rules for sidebar contents" Text Box
  5. */
  6.  
  7. /* Shrink tab size and keep pinned tabs from getting squished. */
  8. :root { --tab-height: 25px !important; }
  9. .tab:not(.pinned) { height: var(--tab-height) !important; }
  10.  
  11. /* Fade out unloaded tabs */
  12. .tab.discarded { opacity: 0.65; }
  13.  
  14. /* hide close tab buttons (X) */
  15. .closebox {
  16. display: none !important;
  17. }
  18.  
  19. /* hide bottom new tab (+) */
  20. button {
  21. display: none !important;
  22. }
Add Comment
Please, Sign In to add comment