Advertisement
ImJustAChillGuy

hide_toolbox_top_bottom_border

Nov 29th, 2024
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.96 KB | None | 0 0
  1. /* Source file https://github.com/MrOtherGuy/firefox-csshacks/tree/master/chrome/hide_toolbox_top_bottom_borders.css made available under Mozilla Public License v. 2.0
  2. See the above repository for updates as well as full license text. */
  3.  
  4. :root[sizemode="normal"]{ border-top: none !important }
  5. #navigator-toolbox::after{ content: none !important }
  6. #navigator-toolbox{ border-bottom: none !important }
  7. /* Removes few remaining extra lines above tabs in non-maximized windows */
  8. /* Also prevents small vertical shift when moving tabs in compact density - who knows why */
  9. :root[sizemode="normal"] #titlebar{ -moz-appearance: none !important; }
  10.  
  11.  
  12. /* OPTIONAL - uncomment to remove still remaining space atop of tabs */
  13. /* This just increases the height of tabs by few pixels, not decrease the toolbar height */
  14.  
  15. /* Fx pre-65 */
  16. /* #navigator-toolbox > #TabsToolbar{margin-top: -2px;} */
  17. /* Fx65+ */
  18. /* #TabsToolbar > .toolbar-items > spacer{ display: none; } */
  19.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement