Recommended Posts

OS X builds are now x64/i386, no more PPC support.

327671800.png

I still don't think J?gerMonkey has had the same type of optimisation on x64 that it's had on 32bit builds, so it may be slightly slower in that regard. But still, it's nice to see (unlike on Windows, OS X presents a different API on 64bit as it does on 32bit, so drawing APIs and such can take more precise input, etc.)

Does anyone else have problems uploading with the Betas?

I can't upload to Facebook, Imageshack, Photobucket, it tries but always fails out meaning I have to use Safari to upload anything.

Nevermind it was user error, I had blocked the Firefox Plug-in container in LittleSnitch without noticing, works fine now, silly me, lol.

Thanks for the link (Y)

and nice fix as usual, Soapy.

This one is even better (autohide styled addon-bar). Credits to dert07 !

#addon-bar {
  position: fixed;
  bottom: -21px;
  right: 1px;
  border: 0 !important;
  -moz-appearance: none !important;
  -moz-transition: bottom .5s;
  padding-top: 22px !important;
}

#addon-bar:hover {
 bottom: 1px;
}

#main-window[sizemode="maximized"] #addon-bar {
  bottom: -22px;
  right: 0;
  -moz-transition: bottom .5s;
}

#main-window[sizemode="maximized"] #addon-bar:hover {
  bottom: 0;
}

#addon-bar > #status-bar {
  margin: 0 !important;
  padding: 0 2px 0 2px;
  border-radius: 4px 0 0 0;
  border: 0 !important;
  border-left: 1px solid rgba(0,0,0,.25) !important;
  border-top: 1px solid rgba(0,0,0,.25) !important;
  background-color: rgb(207, 219, 236) !important;
  background-image: -moz-linear-gradient(rgba(255,255,255,.5), rgb(207,220,236)) !important;
  box-shadow: 0 0 0 1px rgba(255,255,255,.5) inset;
}

For everyone who doesn't like the current look of the new Addonbar SoapyHamHocks and I created a userstyle for Stylish that gives it the nice look from the early mockups. The width adjusts to the number of elements in the bar and doesn't take up the whole space at the bottom. It also auto-hides with a nice CSS transition so that it doesn't obscure the scrollbars all the time.

It is now available on our blog on http://boneyardbrew.posterous.com/firefox-4-addon-bar

Preview:

addonbar.jpg

For everyone who doesn't like the current look of the new Addonbar SoapyHamHocks and I created a userstyle for Stylish that gives it the nice look from the early mockups. The width adjusts to the number of elements in the bar and doesn't take up the whole space at the bottom. It also auto-hides with a nice CSS transition so that it doesn't obscure the scrollbars all the time.

It is now available on our blog on http://boneyardbrew....fox-4-addon-bar

Preview:

addonbar.jpg

Nice one!

but the resolution text? what is it?

For everyone who doesn't like the current look of the new Addonbar SoapyHamHocks and I created a userstyle for Stylish that gives it the nice look from the early mockups. The width adjusts to the number of elements in the bar and doesn't take up the whole space at the bottom. It also auto-hides with a nice CSS transition so that it doesn't obscure the scrollbars all the time.

It is now available on our blog on http://boneyardbrew.posterous.com/firefox-4-addon-bar

Preview:

addonbar.jpg

I'm using this as well, but now the find toolbar doesn't show when I click ctrl + f

Disabling all styles makes it come back, how to fix?

Thanks for that and I have installed it the whole Status bar / Addon Bar has vanished and I do not know how to disable it as I can't seem to get access to Stylish to remove it. I'm using FF beta 6

beta 6 doesnt have addon bar !

I'm using this as well, but now the find toolbar doesn't show when I click ctrl + f

Disabling all styles makes it come back, how to fix?

As people said earlier on your thread the fix is adding "bottom: 0px;" to "#browser-bottombox" but the find-bar doesn't look to good. That's why I made this next stile for find bar (with the help of foxxyn8, cheers mate!):

@namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul);

#FindToolbar .findbar-container {
  margin-bottom: -1px !important;
  margin-left: 5px !important;
  border-radius: 4px 4px 0 0;
  border-left: 1px solid rgba(0,0,0,.25) !important;
  border-right: 1px solid rgba(0,0,0,.25) !important;
  border-top: 1px solid rgba(0,0,0,.25) !important;
  background-color: rgb(207, 219, 236) !important;
  background-image: -moz-linear-gradient(rgba(255,255,255,.5), rgb(207,220,236)) !important;
  box-shadow: 0 0 0 1px rgba(255,255,255,.5) inset;
}

#browser-bottombox {background: none !important;}

#FindToolbar {border:none !important;}

#FindToolbar .find-status-icon:not([status="notfound"]):not([status="wrapped"]) {
display:none !important;
}

They only work if you add the "bottom: 0px;" line and uses the color theme of SoapyHamHocks/dert07 style. Here is my custom version of their style:

@namespace url(http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul);

#addon-bar {
  position: fixed;
  bottom: -22px;
  right: 1px;
  margin-right: 20px !important;
  border: 0 !important;
  -moz-appearance: none !important;
  -moz-transition: bottom .7s 2s ease-in;
  padding-top: 22px !important;
}

#browser-bottombox {
  position: fixed;
  bottom: 0px;
}

#addon-bar:hover {
 bottom: 0;
 -moz-transition: bottom .7s 1s ease-out;
}

#main-window[sizemode="maximized"] #addon-bar {
  right: 0;
}

#addon-bar > #status-bar {
  margin: 0 !important;
  padding: 0 2px 0 2px;
  border-radius: 4px 4px 0 0;
  border: 0 !important;
  border-left: 1px solid rgba(0,0,0,.25) !important;
  border-right: 1px solid rgba(0,0,0,.25) !important;
  border-top: 1px solid rgba(0,0,0,.25) !important;
  background-color: rgb(207, 219, 236) !important;
  background-image: -moz-linear-gradient(rgba(255,255,255,.5), rgb(207,220,236)) !important;
  box-shadow: 0 0 0 1px rgba(255,255,255,.5) inset;
}

Feel free to edit the background color and borders/margins to your liking ...

post-344974-12857651906994.jpg

This topic is now closed to further replies.
  • Recently Browsing   0 members

    • No registered users viewing this page.
  • Posts

    • It's nearly time to replace my aging Founders Edition 3080, it doesn't OC as nicely as it used to and it's running around 10c warmer than it did when I first bought it.  I don't have budget for much more than what I spent on the 3080 and locally, that means the best GPU I can manage is a 9070XT. On this basis I have a few questions: 1. At present I don't use ray tracing, if this was to change, would this GPU be an issue? 2. How does it compare on a performance basis? 3. Are the drivers worse or better than those for nVidia? 4. Linux support, is it there? 5. Anything else I should be aware of if I were to make this change? 6. Is it a good idea or shall I try and keep the 3080 a little longer.
    • What OS is that? It looks a bit like Mac OS but the command line suggests it isn't, either way I like it!
    • Outlook classic is inherently better than new outlook, for a number of reasons. That said, if the only reason people need office is to read email, they should just use thunderbird.
    • Windows 11 is a big thumbs down from me. I used for a period of a few days while it was in insider and windows 10 was the main OS, and realised it wasn't for me. I am still waiting for Windows to be tolerable again, a shame as at one point I was very pro Microsoft.  
    • Classic outlook, not only does it have a much fuller feature set, it doesn't include Microsoft attempting to sync my emails from my servers to theirs. If classic outlook is ever removed from office, and the version I paid for in 2021 stops working for some reason, I'll use Thunderbird.
  • Recent Achievements

    • Week One Done
      Windows Guy earned a badge
      Week One Done
    • Dedicated
      Mark Spruce earned a badge
      Dedicated
    • Collaborator
      conkir earned a badge
      Collaborator
    • Rising Star
      olavinto went up a rank
      Rising Star
    • One Month Later
      lamborghiniv10 earned a badge
      One Month Later
  • Popular Contributors

    1. 1
      +primortal
      479
    2. 2
      PsYcHoKiLLa
      250
    3. 3
      Steven P.
      74
    4. 4
      FloatingFatMan
      69
    5. 5
      +Edouard
      69
  • Tell a friend

    Love Neowin? Tell a friend!