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.
  • Posts

    • The funny thing here is that like 70% or so of the web browser users use 'Google Chrome' as web browser. What I don't understand is that why on earth would ANYONE choose 'Google Chrome' on Windows when 'Microsoft Edge' is not just better in most things, but it's already there right out of the box for the Windows users. Microsoft Edge has less data collection (yes, that's a fact), less RAM usage and is more optimized for Windows (as it's a Microsoft product) right out of the box. Sure, the way Microsoft is pushing Microsoft Edge on users might not be the best way of doing it and might need to change. But I would never choose 'Google Chrome' over 'Microsoft Edge' today anyways. I'm sure there was a period back in the days when 'Google Chrome' actually was better in most things, but that period is not today.
    • JetBrains rolls out IntelliJ IDEA update with Markdown preview fixes and more by David Uzondu Image via JetBrains IntelliJ 2026.1.3 from JetBrains has landed, bringing several highly requested bug fixes that target common UI glitches and terminal rendering issues. If you run tmux inside the integrated terminal, the IDE no longer renders the cursor above the active line. The Markdown preview bug, which was fixed in this release, had annoyed developers for quite some time, as the preview pane failed to render images saved outside the project directory. Instead of displaying the actual image, the IDE simply showed a broken image icon, a problem that stuck around for two years before this update. Over on Windows, developers running WSL can now use wsl.exe to spin up their environments without losing terminal functionality. In previous builds, launching a terminal shell with something like wsl.exe -d ubuntu inside a Windows-based project broke both shell integration and active process detection. Other bug fixes in this release include: An issue where Gradle sync incorrectly reported success as a failure on WSL when using Gradle 9.5.0. A syntax highlighting bug that flagged valid Java for-loop initialization blocks with multiple statements as incorrect. A warning bug that triggered a false non-null local variable alert when using JSpecify annotations. A database generation bug that hid the option to use a DELETE statement instead of a TRUNCATE checkbox. A Kotlin highlighting failure where an assertion error in the Gradle redundant library inspection broke error highlighting. A UI bug where the ComboBox popup lacked a maximum height restriction. A Snowflake syntax error where DataGrip failed to support the "create temp" command. A Svelte syntax parsing failure that incorrectly flagged quotes inside inline expressions. A VCS repository manager deadlock that triggered thread pool exhaustion. A memory leak where the LazyTree component kept all previous versions of a tree in memory. IntelliJ 2026.1.3 is the third bug fix release for the IntelliJ 2026.1 series. The first one landed back in April with a fix for the WSL Python interpreter freeze, another fix for guest participants using Emmet abbreviations, and corrected WildFly server deployment errors.
    • That stupid annoying Sign in with Google on all these sites now... get the fk outta here
    • I was just being silly based on David Uzondu's comment ☺️
    • The unified inbox, when it arrives, will be a powerful argument for those who have > 1.
  • Recent Achievements

    • Collaborator
      Asgardi earned a badge
      Collaborator
    • 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
  • Popular Contributors

    1. 1
      +primortal
      469
    2. 2
      PsYcHoKiLLa
      243
    3. 3
      Skyfrog
      79
    4. 4
      FloatingFatMan
      73
    5. 5
      Michael Scrip
      60
  • Tell a friend

    Love Neowin? Tell a friend!