Traditional scrollbars in GTK2 applications

Is there a way to configure the scrollbars in GTK2 applications? What I would like to have is scrollbars which correspond to the following GTK3 settings in ~/.config/gtk-3.0/gtk.css:

scrollbar {
        -GtkScrollbar-has-backward-stepper: true;
        -GtkScrollbar-has-forward-stepper: true;
}

scrollbar slider {
        border: 0;
        border-radius: 0;
        min-width: 15px;
        min-height: 15px;
}

The above settings make GTK3 applications have wider scrollbars with scrollbar increment buttons. I have tried to add

style "scroll"
{
 GtkScrollbar::slider-width = 15
}

to ~/.config/gtk-2.0/gtkrc but it makes no difference to the file browser PCManFM 1.3.1 which uses GTK2. Any clues?

TyuaT

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.