DaGhostman Dimitrov
DaGhostman Dimitrov

Reputation: 1626

Styling GTK app with CSS3

Plain and simple:

Is it possible to style GTK3 (2 and/or< 3)applications using CSS3?

Upvotes: 1

Views: 292

Answers (2)

liberforce
liberforce

Reputation: 11454

GTK 2 and GTK 3 have completely different theming implementations. GTK 2 uses theming engines and gtkrc files. GTK 3 uses CSS for theming, and (at least partially) supports CSS 3.

Upvotes: 1

drahnr
drahnr

Reputation: 6886

Have a look at the bottom of GtkCssProvider doc

It shows exactly what is supported (in Gtk3), everything else is not. i.e. transition,boxed-shadow and a lot more are.

Upvotes: 2

Related Questions