02 August 2004

Scrollbar tweaks

tweaked appearance of the scrollbar widget, specifically the scrollbar buttons and slider, on Mozilla Firefox

Do you notice anything weird in the screenshot? Take a look at it carefully. It's neither the themes list nor the buttons. No, it's not a trick image or whatever.

It's the scrollbar.

I've customised my Firefox with Mac-alike scrollbars, by adding few codes to both userChrome.css and userContent.css files of my profiles folder. Somehow I got bored with the default Windows scrollbar and thought of trying out the Mac scrollbar, where the scrollbar buttons are located at one side of the slider instead. In my opinion, the relocated scrollbar buttons seems better in terms of interface usability.

I read the XBL binding for the scrollbar widget, scrollbar.xml archived in the toolkit.jar file of the chrome folder, and discovered that there are actually four scrollbar buttons. I'm confused, why four? Isn't it that Windows have only two? Reading the codes, there are two scrollbar buttons on both sides of the slider, showing two opposing arrows. One of the buttons of each side is hidden. Out of curiosity, I played around the codes, using CSS to tweak the buttons and came up with these:

  • tweaked appearance of the scrollbar widget, Mac-alike look, on Mozilla Firefox

    The code for Mac-alike scrollbar is:

    scrollbarbutton[sbattr="scrollbar-up-top"]{
    display: none !important;
    }
    scrollbarbutton[sbattr="scrollbar-up-bottom"]{
    display: -moz-box !important;
    }
  • tweaked appearance of the scrollbar widget, reversed type of Mac-alike look, on Mozilla Firefox

    For a reversed type of Mac-alike scrollbar, try this:

    scrollbarbutton[sbattr="scrollbar-down-top"]{
    display: -moz-box !important;
    }
    scrollbarbutton[sbattr="scrollbar-down-bottom"]{
    display: none !important;
    }
  • tweaked appearance of the scrollbar widget, specially for Linux environment, on Mozilla Firefox

    Some of you Linux users would love this instead:

    scrollbarbutton[sbattr="scrollbar-up-bottom"]{
    display: -moz-box !important;
    }
  • tweaked appearance of the scrollbar widget, with no scrollbar buttons at all, on Mozilla Firefox

    If you hate the scrollbar buttons, remove them all!

    scrollbarbutton[sbattr="scrollbar-up-top"],
    scrollbarbutton[sbattr="scrollbar-down-bottom"]{
    display: none !important;
    }

Wow, this is getting very cool. Fortunately, the fun doesn't stop here, yet.

two vertical scrollbars, one is Mozilla Firefox's, the other is Windows Luna's, both has different width

My experiments lead me to a minor rendering bug in Firefox. The scrollbar in Firefox is 2 pixels wider than normal. Yes, only 2 pixels. Sounds negligible, right? Wrong. Suddenly, my mind flashed all the way back to the beginning of Phoenity when a person named Mathieu Johnson sent me an email titled 'Bug in Phoenity 0.1' on 5 November 2002, quoted:

Sometimes, my memory is pretty good. That was about 2 years ago. It's an insignificant bug that still exists in current builds of Firefox, probably only on Windows. The way to fix this may differ, but for Windows XP Luna, here is a temporary solution:

scrollbar[orient="vertical"] scrollbarbutton,
scrollbar[orient="vertical"] slider{
margin-right: -1px !important;
margin-left: -1px !important;
}

The above code only applies to vertical scrollbars, neglecting the horizontal ones. The applied negative margins push the scrollbar buttons and slider to occupy the whole container of the scrollbar, making it 2 pixels narrower. As a result, it looks exactly like Windows scrollbar, and you can finally drag it at the extreme right of the screen! Different XP themes tend to require different values of the margins. Please don't' ask me why but you can try to experiment with it. Just make sure you are equipped with some basic CSS and XUL knowledge, before messing things up.

With these tweaks together, I'm definitely satisfied with my Firefox scrollbars.

Labels: , ,

Babbled at 8:46 PM cosmos

About

An online journal, so-called weblog, by a normal 23-year-old guy from Penang, Malaysia, babbling about life, school, university, computers, graphics design, web design, internet and et cetera.

Explore my web presence:

View my profiles:

Also, View my resume and support my work via donations!

Junks

Back to top