Remove the rule that makes it go 50px to the left and 20px to the right. While this added some more space for editing the URL, it looked weird. After having used it for a while, I think it's better to remove this again.
43 lines
1.2 KiB
CSS
43 lines
1.2 KiB
CSS
/* Copyright 2020 Oliver Smith
|
|
SPDX-License-Identifier: GPL-3.0-or-later */
|
|
|
|
/* Reduce minimum window width */
|
|
#urlbar-container {
|
|
min-width: 150px !important;
|
|
}
|
|
|
|
/* Remove various buttons left and right of the URL bar:
|
|
- forward-button: also reachable via longpress of back button
|
|
- home-button: not important enough
|
|
- customizableui-special-spring: empty space
|
|
- library-button: also reachable via PanelUI-menu-button
|
|
- sidebar-button: not useful on mobile (we try to gain horizontal space)
|
|
- fxa-toolbar-menu-button: firefox cloud stuff, also reachable via #PanelUI-menu-button
|
|
*/
|
|
/* #back-button */
|
|
#forward-button,
|
|
/* #reload-button */
|
|
#home-button,
|
|
#customizableui-special-spring1,
|
|
/* (urlbar) */
|
|
#customizableui-special-spring2,
|
|
#library-button,
|
|
#sidebar-button,
|
|
#fxa-toolbar-menu-button
|
|
/* #PanelUI-menu-button */ {
|
|
display: none !important;
|
|
}
|
|
|
|
/* Smaller font: show more of the URL */
|
|
#urlbar-input {
|
|
font-size: 9pt !important;
|
|
}
|
|
|
|
/* Focused urlbar: hide all icons around it, so we have more space to edit the URL */
|
|
#urlbar[focused] #identity-box,
|
|
#urlbar[focused] #tracking-protection-icon-container,
|
|
/* #urlbar-input */
|
|
#urlbar[focused] #reader-mode-button,
|
|
#urlbar[focused] #pageActionButton {
|
|
display: none;
|
|
}
|