Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /*
- * Hides the weird empty space at the beginning of the tabs bar in windowed mode.
- * https://www.reddit.com/r/firefox/comments/a3f1gp/
- */
- .titlebar-spacer[type="pre-tabs"] {
- display: none !important;
- }
- /**********************************************************************************************************************************/
- /*
- * Makes urlbar and many other things sharper on the edges
- * https://github.com/Timvde/UserChrome-Tweaks/blob/master/navbar/sharpen-edges.css
- */
- :root {
- --toolbarbutton-border-radius: 0px !important;
- }
- /**********************************************************************************************************************************/
- /*
- * Auto-hide the URL-bar and bookmarks bar, show on hover or focus
- * https://github.com/Timvde/UserChrome-Tweaks/issues/162#issuecomment-573770089
- */
- #PersonalToolbar:not([customizing]),
- #nav-bar:not([customizing="true"]):not([inFullscreen]) {
- min-height: 1px !important;
- max-height: 0px !important;
- margin-top: 1px !important;
- margin-bottom: -1px !important;
- transition: 0s !important;
- z-index: 5 !important;
- }
- #navigator-toolbox:hover:not([inFullscreen]) :-moz-any(#nav-bar),
- #navigator-toolbox:focus-within :-moz-any(#nav-bar) {
- min-height: 30px !important;
- max-height: 30px !important;
- margin-top: 1px !important;
- margin-bottom: -30px !important;
- transition: 0s !important;
- z-index: 5 !important;
- }
- #navigator-toolbox:hover:not([inFullscreen]) :-moz-any(#PersonalToolbar),
- #navigator-toolbox:focus-within :-moz-any(#PersonalToolbar) {
- min-height: 21px !important;
- max-height: 21px !important;
- margin-top: 30px !important;
- transition: 0s !important;
- z-index: 5 !important;
- }
- /**********************************************************************************************************************************/
- /*
- * More Compact Tabs
- * https://github.com/Timvde/UserChrome-Tweaks/blob/master/tabs/more-compact-tabs.css
- */
- [uidensity="compact"]:root {
- --tab-min-height: 24px !important;
- --newtab-margin: -3px 0 -3px -3px !important;
- }
- :root[uidensity="compact"] #tabbrowser-tabs {
- --tab-min-height: var(--tab-min-height) !important;
- }
- .tabbrowser-tab {
- max-height: var(--tab-min-height) !important;
- }
- .tabs-newtab-button{
- margin: var(--newtab-margin) !important;
- }
- /**********************************************************************************************************************************/
- /*
- * Hide Active Tab Highlighting/Blue Line
- * https://www.reddit.com/r/firefox/comments/bkzkzp/how_to_remove_this_blue_line_on_the_tab/emki0jx/
- */
- .tab-line {
- display: none !important;
- }
- /**********************************************************************************************************************************/
- /*
- * Makes urlbar and many other things sharper on the edges
- * https://github.com/Timvde/UserChrome-Tweaks/blob/master/navbar/sharpen-edges.css
- */
- :root {
- --toolbarbutton-border-radius: 0px !important;
- }
- /**********************************************************************************************************************************/
- /**********************************************************************************************************************************/
- /**********************************************************************************************************************************/
- /**********************************************************************************************************************************/
Add Comment
Please, Sign In to add comment