Recommended Posts

When you have halitosis this problem, definitely wants to vomit. so,you should cleans your teeth and smelly mouth.

There's customisation, and there's uglification. Your browser screenshot falls into the latter category.

Toolbar transparency

#navigator-toolbox:not([tabsontop=true]) #nav-bar
{
-moz-box-shadow: threedshadow 0 -1px inset !important;
padding-bottom: 7px !important;
}

#navigator-toolbox:not([tabsontop=true]) toolbar:not(#nav-bar):not(#toolbar-menubar)
{
background-color: rgba(223,233,245,1) !important;
}

#main-window:not([sizemode="maximized"]) #navigator-toolbox:not([tabsontop=true]) toolbar:not(#nav-bar):not(#toolbar-menubar)
{
border-left: 1px solid threedshadow !important;
border-right: 1px solid threedshadow !important;
}

#navigator-toolbox:not([tabsontop=true]) #PersonalToolbar
{
background: -moz-linear-gradient(top, rgba(255,255,255,1), rgba(255,255,255,0)) !important;
}

#navigator-toolbox:not([tabsontop="true"]) #TabsToolbar
{
padding-top: 2px !important;
}

#navigator-toolbox[tabsontop=true]
{
border-bottom: 1px solid threedshadow !important;
}

#navigator-toolbox[tabsontop=true] #TabsToolbar
{
-moz-box-shadow: inset threedshadow 0px -1px !important;
}

#navigator-toolbox[tabsontop=true] toolbar:not(#TabsToolbar):not(#toolbar-menubar)
{
background-color: rgba(223,233,245,.6) !important;
}

#main-window:not([sizemode="maximized"]) #navigator-toolbox[tabsontop=true] toolbar:not(#TabsToolbar):not(#toolbar-menubar)
{
border-left: 1px solid threedshadow !important;
border-right: 1px solid threedshadow !important;
}

#navigator-toolbox[tabsontop=true] #nav-bar
{
padding-top: 5px !important;
padding-bottom: 5px !important;
background: -moz-linear-gradient(top, rgba(242,246,251,1), rgba(255,255,255,.0)) !important;
}

.tabbrowser-tab[selected=true]
{
font-weight: bold !important;
}

Play with the opacity of the rgba values (the 4th number in each series) to tweak it how you'd like. The most important part is

#navigator-toolbox[tabsontop=true] toolbar:not(#TabsToolbar):not(#toolbar-menubar)

{

background-color: rgba(223,233,245,.6) !important;

}

how do i get the address bar and the bookmarks bar to be transparent?

/*True transparency in FF 4.01b, with orange FF theme highlights by Elian152, any code used form other sources has been credited above the code section*/


/*makes the Stumbleupon toolbar transparent*/
toolbar.chromeclass-toolbar#stumbleupon {border: none !important; background: none !important; text-shadow: #fff 0px 0px 10px, #fff 1px 1px 10px, #fff 1px 1px 3px !important;}
/*makes navigation and bookmarks toolbar  transparent when tabs are above*/
#nav-bar, #PersonalToolbar {border: none !important;     background: transparent !important; text-shadow: #fff 0px 0px 10px, #fff 1px 1px 10px, #fff 1px 1px 3px !important;}



/*Hides splitter bar that appears with stumbleupon after first restart*/
splitter.toolbar-splitter {display: none;}



/*Hides bookmarks button, bug scheduled to be fixed in later releases*/
#bookmarks-menu-button {}

Support for specifying OpenType feature tags via CSS landed in the latest nightly, it's quite cool but the real good stuff will come with support for the normal, cascading CSS properties.

It only works with the HarfBuzz shaper enabled, and it's only enabled by default on OS X at the moment (and even then just for "simple" scripts)

Here's something most of you probably haven't tried out yet: Minefield using the Windows Classic theme. I tried it out while updating my Windows XP VM.

post-1302-12791184244694.png

Looks sub-optimal at best imho.

That looks very nice. Good use of screen space, the Firefox button and the tabs are on the same row, how I think it should be on all versions.

...

Looks sub-optimal at best imho.

99% of that comes from the fact that it's Windows Classic.

It should look better when support for themed, non-DWM windows is in (Only if you're using a theme though, Classic users are out of luck, regardless of the host OS)

How do i install stylish posted a few pages back, tried dragging it into firefox, dragging it into addon window, tried opening the XPI with firefox.exe?

Clicking the link to the .xpi file should trigger the add-on install mechanism.

Its not working it just asks me to download it, and if i drag it into minefield nothing happens.

Hm. I copy/pasted the link into the address bar, pressed enter and was prompted to install the extension. Using the OS X version of Minefield if that makes any difference.

post-1302-12791243578322.png

/*True transparency in FF 4.01b, with orange FF theme highlights by Elian152, any code used form other sources has been credited above the code section*/


/*makes the Stumbleupon toolbar transparent*/
toolbar.chromeclass-toolbar#stumbleupon {border: none !important; background: none !important; text-shadow: #fff 0px 0px 10px, #fff 1px 1px 10px, #fff 1px 1px 3px !important;}
/*makes navigation and bookmarks toolbar  transparent when tabs are above*/
#nav-bar, #PersonalToolbar {border: none !important;     background: transparent !important; text-shadow: #fff 0px 0px 10px, #fff 1px 1px 10px, #fff 1px 1px 3px !important;}



/*Hides splitter bar that appears with stumbleupon after first restart*/
splitter.toolbar-splitter {display: none;}



/*Hides bookmarks button, bug scheduled to be fixed in later releases*/
#bookmarks-menu-button {}

Is there any way of controlling the amount of transparency i dont want it totally transparent.

*edit* answered my own question if you replace :

background: transparent !important;

with:

background-color: rgba(0, 255, 0, 0.5) !important;

the first 3 numbers are obviously an RGB colour but the 4th number is opacity between 0 being full transparent and 1 being fully opaque.

It'll be interesting when they reduce the cost of calls and hook in the Tracing JIT.

TraceMonkey is currently very very fast at some things, and very very slow at others, in certain benchmarks it beats every competitor, but other tests in the benchmark drag the score down (in some SunSpider test it's 4x faster than SquirrelFish and V8, yet it has a lower overall score). When it's hooked into the Method JIT it should boost the speed a bit (They excel in 2 different areas, by hooking them together properly you'll get all the benefits of both, and none of the slowdowns)

It'll be interesting when they reduce the cost of calls and hook in the Tracing JIT.

TraceMonkey is currently very very fast at some things, and very very slow at others, in certain benchmarks it beats every competitor, but other tests in the benchmark drag the score down (in some SunSpider test it's 4x faster than SquirrelFish and V8, yet it has a lower overall score). When it's hooked into the Method JIT it should boost the speed a bit (They excel in 2 different areas, by hooking them together properly you'll get all the benefits of both, and none of the slowdowns)

You should have added the link,

http://arewefastyet.com/individual.php

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

    • No registered users viewing this page.
  • Popular Now

  • Posts

    • CPU-Z 2.20.2 by Razvan Serea CPU-Z is a freeware utility that gathers information on some of the main devices of your system. CPU-Z does not need to be installed, just unzip the files in a directory and run the .exe. In order to remove the program, just delete the files. The program does not copy any file in any Windows directory, nor write to the registry. CPU Name and number. Core stepping and process. Package. Core voltage. Internal and external clocks, clock multiplier. Supported instructions sets. All cache levels (location, size, speed, technology). Mainboard Vendor, model and revision. BIOS model and date. Chipset (northbridge and southbridge) and sensor. Graphic interface. Memory Frequency and timings. Module(s) specification using SPD (Serial Presence Detect) : vendor, serial number, timings table. System Windows and DirectX version. CPU-Z 2.20.2 changelog: Intel Arc G3 and G3 Extreme (Panther Lake)(2.20.2). AMD Ryzen 7 7700X3D (Raphael) (2.20.1). AMD Ryzen AI Max+ 495, 492, 488 (Gorgon Halo). AMD Ryzen AI Max 490, 485 (Gorgon Halo). AMD Ryzen AI Max PRO 495, 490, 485, 480 (Gorgon Halo). AMD Ryzen 9 9950X3D2 (Granite Ridge). AMD Ryzen 9 PRO 9965X3D, PRO 9945 (Granite Ridge). AMD Ryzen 7 PRO 9755, PRO 9745 (Granite Ridge). AMD Ryzen 5 PRO 9645 (Granite Ridge). AMD Ryzen AI 7/PRO 450G/GE (Gorgon Point 2). AMD Ryzen AI 5/PRO 440G/GE (Gorgon Point 2). AMD Ryzen AI 5/PRO 435G/GE (Gorgon Point 3). AMD Ryzen AI Max+ 392 (Strix Halo). Intel Core Ultra 5 250KF Plus (Arrow Lake Refresh). Intel Core 7 360 and 350 (Wildcat Lake). Intel Core 5 330, 320 and 315 (Wildcat Lake). Intel Core 3 304 (Wildcat Lake). Intel Core 9 273PQE, 273PTE, 273PE (Bartlett Lake). Intel Core 7 253PQE, 253PTE, 253PE, 251TE, 251E (Bartlett Lake). Intel Core 5 223PQE, 223PTE, 223PE, 221TE, 221E, 213PTE, 213PE, 211TE, 211E (Bartlett Lake). Intel Core 3 201TE, 201E (Bartlett Lake). Intel Arc Pro B70 and B65 (BMG-G31). Intel Arc Pro B60 and B50 (BMG-G21). Support of HUDIMM and HSODIMM memory modules. Download: CPU-Z 2.20.2 | Portable ~5.0 MB (Freeware) View: CPU-Z Website | Screenshot Get alerted to all of our Software updates on Twitter at @NeowinSoftware
    • Anyone who expects MS to play fair is a complete idiot.
    • Everyone behaves like Internet Explorer just never happened and Edge is whole new thing all while Microsoft is pulling the exact same ###### it did back then. Sigh.
    • Can you edit incoming emails, yet? You couldn't as of six months ago when I tried.
  • Recent Achievements

    • Conversation Starter
      mobandz earned a badge
      Conversation Starter
    • Apprentice
      fernan99 went up a rank
      Apprentice
    • One Month Later
      nothanks earned a badge
      One Month Later
    • One Month Later
      B2Proxy earned a badge
      One Month Later
    • One Year In
      MadMung0 earned a badge
      One Year In
  • Popular Contributors

    1. 1
      +primortal
      468
    2. 2
      PsYcHoKiLLa
      250
    3. 3
      Skyfrog
      79
    4. 4
      FloatingFatMan
      77
    5. 5
      Michael Scrip
      60
  • Tell a friend

    Love Neowin? Tell a friend!