kerlser

flexa grid

Dec 6th, 2023
1,379
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.87 KB | None | 0 0
  1.  
  2. :root:not([customizing]) #navigator-toolbox {
  3.     display: grid !important;
  4.     grid-template-areas:
  5.              " b a "
  6.              " c c ";
  7.     /*grid-template-columns:  60vw 40vw;*/
  8. }
  9.  
  10. #nav-bar {
  11.     background-color: hsla(120, 50%, 80%, 1) !important;
  12.     grid-area: a;
  13. }
  14.  
  15. #TabsToolbar {
  16.     background-color: hsla(35, 80%, 80%, 1) !important;
  17.     grid-area: b;
  18.     min-width: 60vw !important;
  19. }
  20.  
  21. #PersonalToolbar {
  22.     background-color: hsla(200, 50%, 85%, 1) !important;
  23.     grid-area: c;
  24. }
  25.  
  26. #tabbrowser-tabs:not([overflow]) {
  27.     --ug_tabs_position: safe flex-start;
  28. }
  29.  
  30. scrollbox[orient="horizontal"] {
  31.     justify-content: var(--ug_tabs_position, initial) !important;
  32. }
  33.  
  34. #urlbar-container {
  35.     flex-shrink: 1 !important;
  36. }
  37.  
  38. .titlebar-spacer {
  39.     width: 8px !important;
  40. }
  41. .titlebar-buttonbox-container {
  42.     display: none !important;
  43. }
Advertisement
Add Comment
Please, Sign In to add comment