Created
October 27, 2020 14:52
-
-
Save siddhpant/0ddaf0b250aa129735c15655218e28e4 to your computer and use it in GitHub Desktop.
Firefox's userChrome.css for some tweaks, viz., show bookmarks bar and no address bar enlargement
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Show bookmarks on address bar focus (and thus show automatically when a new tab opens) | |
From https://superuser.com/a/1520406 | |
Original source https://www.reddit.com/r/FirefoxCSS/comments/emzoi0/show_bookmarks_bar_only_in_new_tab_page/feme6yv/ | |
*/ | |
#nav-bar:not(:focus-within) + #PersonalToolbar:not(:hover):not(:focus-within):not([customizing]) { visibility: collapse; } | |
/* | |
Remove address bar enlargement | |
From https://superuser.com/a/1540382 | |
Based on https://old.reddit.com/comments/fwhlva//fmolndz | |
*/ | |
#urlbar[breakout][breakout-extend]:not([open]) { | |
top: calc((var(--urlbar-toolbar-height) - var(--urlbar-height)) / 2) !important; | |
left: 0 !important; | |
width: 100% !important; | |
} | |
#urlbar[breakout][breakout-extend]:not([open]) > #urlbar-input-container { | |
height: var(--urlbar-height) !important; | |
padding-block: 0px !important; | |
padding-inline: 0px !important; | |
} | |
#urlbar[breakout][breakout-extend][breakout-extend-animate] > #urlbar-background { | |
animation-name: none !important; | |
} | |
#urlbar[breakout][breakout-extend]) > #urlbar-background { | |
box-shadow: none !important; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Works for 78.3.0esr-2.