mirror of
https://codeberg.org/claui/mobile-config-firefox.git
synced 2024-11-10 03:40:14 +00:00
c243c9feda
active
14 lines
No EOL
701 B
CSS
14 lines
No EOL
701 B
CSS
/* Make urlbar megabar appear more compact */
|
|
/* Set the pref browser.urlbar.megabar to true */
|
|
#urlbar[breakout]{
|
|
margin-inline-start: 0px !important;
|
|
width: 100% !important;
|
|
left: 0 !important;
|
|
top: calc((var(--urlbar-toolbar-height) - var(--urlbar-height)) / 2) !important;
|
|
}
|
|
#urlbar[breakout]:not([open]){ bottom: calc((var(--urlbar-toolbar-height) - var(--urlbar-height)) / 2) !important; }
|
|
.urlbarView{ margin-inline: 0 !important; width: auto !important; }
|
|
.urlbarView-row{ padding: 0 4px !important; }
|
|
#urlbar-background{ animation: none !important; }
|
|
#urlbar-input-container{ padding: 0 !important; height: 100% !important; }
|
|
#identity-box{ padding-block: var(--urlbar-icon-padding) } |