jonhoo / configs

My configuration files
http://thesquareplanet.com
1.1k stars 176 forks source link

Firefox address bar at bottom #6

Closed drazde closed 4 years ago

drazde commented 4 years ago

Hi, Seems that with FF 72.0b2 it has broaken...

jonhoo commented 4 years ago

Hmm, I'm on 71.0b12 and it seems to work just fine. Are you sure you're using the latest version? I remember having to make edits to it recently, so it might be that you need a newer version for the style to work correctly now. Alternatively you could just check out the old config in the gist history :)

drazde commented 4 years ago

Yes, I get userChrome.css a year ago, but today I have update it with the latest

I also use the latest version of FF developer edition

PS: before today it work well... toolkit.legacyUserProfileCustomizations.stylesheets set a true

jonhoo commented 4 years ago

Ah, sorry, you're right, I just hadn't updated my FF dev edition! Will take a look and push a fix.

drazde commented 4 years ago

Yeah thanks, I had try to fix it myself but I was not successful.. :(

ilyvion commented 2 years ago

I realize this is not the Firefox userChrome help desk, but since I got the CSS to place my address bar on the bottom from here, I figured I'd just ask. Everything looks fine when browsing, but when activating the address bar, the "search suggestions" drop down kind of... sits in a very awkward position, as you can see in this screenshot: image Any suggestions on what to do about it? 🙂

EDIT: I got it to look like I wanted by changing the CSS to this:

.urlbarView {
    margin-bottom: 100px;
    position: absolute !important;
    bottom: -60px;
    background: var(--input-bgcolor);
    box-shadow: none !important;
}

Looks like this now: image