13 lines
No EOL
647 B
CSS
13 lines
No EOL
647 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-inline: 4px !important; }
|
|
#urlbar-background{ animation: none !important; }
|
|
#urlbar-input-container{ padding: 0 !important; height: 100% !important; } |