mirror of
https://codeberg.org/claui/mobile-config-firefox.git
synced 2024-11-09 19:30:15 +00:00
18 lines
960 B
CSS
18 lines
960 B
CSS
/* 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
|
|
See the above repository for updates as well as full license text. */
|
|
|
|
:root[sizemode="normal"]{ border-top: none !important }
|
|
#navigator-toolbox::after{ content: none !important }
|
|
#navigator-toolbox{ border-bottom: none !important }
|
|
/* Removes few remaining extra lines above tabs in non-maximized windows */
|
|
/* Also prevents small vertical shift when moving tabs in compact density - who knows why */
|
|
:root[sizemode="normal"] #titlebar{ -moz-appearance: none !important; }
|
|
|
|
|
|
/* OPTIONAL - uncomment to remove still remaining space atop of tabs */
|
|
/* This just increases the height of tabs by few pixels, not decrease the toolbar height */
|
|
|
|
/* Fx pre-65 */
|
|
/* #navigator-toolbox > #TabsToolbar{margin-top: -2px;} */
|
|
/* Fx65+ */
|
|
/* #TabsToolbar > .toolbar-items > spacer{ display: none; } */
|