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

    • Thanks, Sony and Nintendo, you effectively killed platform-agnostic gaming. Long gone are the days when you could wish to play a specific game on whatever platform you were. Now, you have to buy the hardware just to play that single game. What, you're only interested in THAT game and nothing more? Bad luck, suck it and buy our console.
    • The AI data centers need it more than us so...let them gobble it all up at that price!
    • "CRAZIER than ever!" Crazy Taxi: World Tour is officially coming soon by Pulasthi Ariyasinghe Sega announced it is working on bringing back some of its classic franchises in 2023, and while it has taken some time, the company finally gave fans a look at one of these new projects at the Xbox Games Showcase today, which turned out to be a brand-new Crazy Taxi entry. Watch the debut trailer above, which has snippets of gameplay in between the cinematic bits while blasting a track from The Offspring. Dubbed Crazy Taxi World Tour, this installment is aptly being described as being "CRAZIER than ever!" The director behind the original, Kenji Kanno, is helming this new entry as well, which will come with access to five new cities to drive in, competitive multiplayer modes, a vehicle customization system, and more. Axel is returning as a protagonist as well, but this time a mystery driver is offering him the opportunity to take his adventures to the streets in other countries. This will involve Axel chasing down masked villains that have somehow stolen his taxi, which means even more extreme missions and challenges to overcome. "From transporting passengers at top speed to tackling unique side missions and odd jobs across dynamic maps, there are countless ways to drive crazy and rake in big money," says Sega about this new installment after over 20 years. "Perform outrageous drifts, catch insane air, and drive at crazy speeds across five different cities as you work to deliver passengers and complete a variety of missions and challenges." The studio has even confirmed an in-game Arcade Mode that players will be able to access containing the original games for plenty of nostalgic action. Crazy Taxi: World Tour is currently slated to release sometime in 2027 across PC, Xbox Series X|S, PlayStation 5, and Nintendo Switch 2.
    • This and Crazy Taxi are the two games that interested me the most from this showcase.
    • Good, because the nonstop chattering from the voices in her head made me quit the second game.
  • Recent Achievements

    • Proficient
      Eric Biran went up a rank
      Proficient
    • Dedicated
      Conjor earned a badge
      Dedicated
    • Week One Done
      Windows Guy earned a badge
      Week One Done
    • Dedicated
      Mark Spruce earned a badge
      Dedicated
    • Collaborator
      conkir earned a badge
      Collaborator
  • Popular Contributors

    1. 1
      +primortal
      492
    2. 2
      PsYcHoKiLLa
      247
    3. 3
      Steven P.
      72
    4. 4
      +Edouard
      68
    5. 5
      ATLien_0
      67
  • Tell a friend

    Love Neowin? Tell a friend!