Scheduled Maintenance: We are aware of an issue with Google, AOL, and Yahoo services as email providers which are blocking new registrations. We are trying to fix the issue and we have several internal and external support tickets in process to resolve the issue. Please see: viewtopic.php?t=158230

 

 

 

HOWTO: Firefox/gtk-qt-engine scrollbar fix (real easy hack)

Share your HowTo, Documentation, Tips and Tricks. Not for support questions!.
Post Reply
Message
Author
Penguin Skinner
Posts: 709
Joined: 2005-09-15 20:37
Location: North by Northwest

HOWTO: Firefox/gtk-qt-engine scrollbar fix (real easy hack)

#1 Post by Penguin Skinner »

Under KDE, Firefox and other GTK2 apps look a lot better with the gtk-qt-engine package installed. However many have noticed a small, cosmetic problem with the Firefox scrollbars, where the left border of the vertical scrollbar and upper border of the horizontal scrollbar don't get redrawn properly when scrolling.

The bug, and a partial fix is described here:

http://gtk-qt.ecs.soton.ac.uk/trac/ticket/2

Based on that, here's a fix for *both* Firefox scrollbars -- simply add the following code to the userContent.css file under your home directory (this should be located in something like the ~/.mozilla/firefox/.../chrome/ directory):

Code: Select all

scrollbar slider
{
        margin-left: -1px;
        border-left: 1px solid #8C8D90;
        margin-top: -1px;
        border-top: 1px solid #8C8D90;
}
BTW I don't know if Iceweasel shows the same problem ... I'm guessing it might, and if so maybe someone will let us know if this hack works for that.

Post Reply