Advertisement
Guest User

old css

a guest
Nov 29th, 2024
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.83 KB | Software | 0 0
  1. #tabbrowser-tabs {
  2.     visibility: collapse;
  3. }
  4. #navigator-toolbox {
  5.     display: flex;
  6.     flex-direction: row;
  7.     flex-wrap: wrap;
  8. }
  9. #titlebar {
  10.     order: 1;
  11.     max-width: 146px;
  12. }
  13. #titlebar #TabsToolbar {
  14.     background-color: var(--toolbar-bgcolor);
  15.     background-image: var(--toolbar-bgimage)
  16. }
  17. #titlebar #TabsToolbar .titlebar-spacer {
  18.     background-color: rgba(0,0,0,0.05);
  19.     margin: 3px;
  20.     border-radius: 25%;
  21.     cursor: grab;
  22. }
  23. #titlebar #TabsToolbar .titlebar-spacer[type="pre-tabs"] {
  24.     display: none;
  25. }
  26. #nav-bar {
  27.     order: 0;
  28.     width: calc(100% - 146px);
  29. }
  30. #PersonalToolbar {
  31.     order: 2;
  32. }
  33. /* Update - Hides the new Firefox home + tab dropdown. */
  34. #TabsToolbar .toolbar-items {
  35.   display: none;
  36. }
  37.  
  38. /* This next one hides Tree Style Tab header */
  39. #sidebar-header {
  40.   display: none;
  41. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement