PROxZIMA/Sweet-Pop

Customize the address bar

CoverageCraft opened this issue · 1 comments

Is there any way to make the address bar longer?

image

Look for following in userChrome.css

/* Move tabs 35% to right */
#TabsToolbar {
    margin-left: 32vw !important;
    width: 68vw !important;
}

/* Move navigation 65% to left and negative margin to move to top line */
#nav-bar {
    max-height: 28px !important;
    margin-right: 68vw !important;
    margin-top: -28px !important;
    width: 32vw !important;
    background: transparent !important;
    z-index: 1;
}

Here margin-left under TabsToolbar & margin-right under nav-bar is what you need to edit. If you increase one then make sure to decrease the other so that they both sum up to 100.
x vw means x% of viewport's(screen) width. So increase margin-left to increase address bar size.

Also it will be better to move the add-ons to the dropdown menu :)