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

    • Firefox, and Vivaldi for the rare instances I need a Chrome based browser for a particular site.
    • I named Hitler because he is the de facto anti-semite. But you don't have to hate Jews to be a genocidal maniac. In fact, these days, so called semites are the ones acting in ways that would make Hitler proud.
    • 3DP Chip 26.05 by Razvan Serea 3DP Chip is a standalone, no-install portable tool that scans your computer’s hardware and automatically detects the latest drivers available for your specific configuration and external devices. It provides a clear list of drivers that need updates, locates the correct downloads, and helps you upgrade them easily. 3DP Chip will automatically detect and display the information on your CPU, motherboard, video card and sound card installed on your PC. You can also choose to copy these information into your clipboard with one click for later use (such as posting in a forum). Also, if you're upgrading your operating system or just need to reinstall Windows, 3DP Chip can backup all the drivers on your PC or laptop. 3DP Chip backup and reinstall features can save you hours of searching for and installing individual device drivers. 3DP Chip most popular drivers include: audio and sound drivers video drivers printer and scanner drivers digital camera drivers network drivers webcam drivers keyboard and mouse drivers 3DP Chip v26.05 changelog: Driver date/version information has been added or updated AMD motherboard chipset v8.03.25.247 AMD motherboard chipset v8.05.04.516 Newly added product or support has been enhanced AMD Radeon Graphics AMD Radeon 780M Graphics AMD Radeon 840M Graphics AMD Radeon 860M Graphics AMD Radeon 880M Graphics AMD Radeon RX 9070 XT AMD Radeon Pro W7500M NVIDIA GeForce RTX 3050 6GB Laptop GPU NVIDIA GeForce RTX 4050 Laptop GPU NVIDIA GeForce RTX 5050 Laptop GPU NVIDIA GeForce RTX 5050 Laptop GPU NVIDIA GeForce RTX 5060 NVIDIA GeForce RTX 5070 Laptop GPU NVIDIA GeForce RTX 5070 Ti Laptop GPU NVIDIA RTX Pro 500 Blackwell Generation Laptop GPU NVIDIA RTX Pro 1000 Blackwell Generation Laptop GPU NVIDIA RTX Pro 2000 Blackwell Generation Laptop GPU Download: 3DP Chip 26.05 | 7.2 MB (Freeware) Links: 3DP Chip Home Page | Screenshot Get alerted to all of our Software updates on Twitter at @NeowinSoftware
    • Apple reluctantly forces strict new age checks on Texas users starting today by Paul Hill Apple will begin enforcing the Texas Age Assurance Law (SB 2420) following a recent court ruling that lifted an injunction on SB 2420. Starting June 4 (today), Apple will enforce strict age-verification and parental-consent rules for new Apple accounts created in Texas. This move will affect children under 18 who go to download apps or attempt to make in-app purchases. Apple previously expressed privacy concerns related to this law, but compliance is now mandatory for the company, nevertheless. Apple will use several APIs to follow the law. Principally, the Declared Age Range API will fetch the specific user age bracket (Under 13, 13-15, 16-17, or 18+) and a verification method. The Significant Change API (PermissionKit) will trigger a system dialog for parental consent if an app gets a major update or an age-rating shift. There is also a new property type in StoreKit that allows developers to automatically check when their app’s age rating has changed on a user’s device and then use the Significant Change API to request parental consent. Finally, App Store Server Notifications can be configured to tell developers when a parent revokes consent, blocking app launches. To ensure they are ready for these changes, developers must immediately use Apple’s sandbox testing environment to validate these APIs in their apps. For any developers out there finding this to be inconvenient, get used to it. Other regions, such as Utah, Louisiana, and Brazil, are looking at, or have implemented, similar rules.
  • Recent Achievements

    • 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
    • Week One Done
      jefred earned a badge
      Week One Done
    • Apprentice
      JoeyNeo went up a rank
      Apprentice
  • Popular Contributors

    1. 1
      +primortal
      476
    2. 2
      PsYcHoKiLLa
      229
    3. 3
      Skyfrog
      72
    4. 4
      FloatingFatMan
      62
    5. 5
      Nick H.
      53
  • Tell a friend

    Love Neowin? Tell a friend!