With the new gtk, it is possible to create graphical themes with a file in something like css.
Given this css file (named my-gtk-widgets.css):
.button {
border-radius: 0;
border-style: solid;
}
.button:hover {
transition: 3000ms linear;
border-radius: 50;
}
And the following python code:
from gi.repository import Gtk
from gi.repository import Gdk
def _destroy_cb(widget, data=None):
Gtk.main_quit()
window = Gtk.Window()
window.connect("destroy", _destroy_cb)
screen = Gdk.Screen.get_default()
css_provider = Gtk.CssProvider()
css_provider.load_from_path('my-gtk-widgets.css')
context = Gtk.StyleContext()
context.add_provider_for_screen(screen, css_provider, Gtk.STYLE_PROVIDER_PRIORITY_USER)
box = Gtk.VBox()
window.add(box)
button = Gtk.Button('go-next')
box.pack_start(button, False, False, 0)
window.show_all()
Gtk.main()
Running this code gives a button which changes the border-radius when hovered. But the transition is instant, not animated.


What is the reason for this? Do I need a different version of gtk, python, ... ? Or does this animation depend on the gtk theme (in my case the Ubuntu default Ambience)? Or is there something wrong in my css file?
python version: 2.7.2+
gtk version: 3.0
EDIT: the example is a modified version of this