I am wondering, which type and version of JavaScript/CSS engines is Gnome 3 aka Gnome Shell using?
Is there any information about current version, etc?
|
I am wondering, which type and version of JavaScript/CSS engines is Is there any information about current version, etc? |
|||||
|
|
For JavaScipt the engine GJS (based on SpiderMonkey). For theming, it is used a sort of superset of CSS2. You might be interested in reading the documentation of GtkCssProvider and the migration information. On the other hand, there are some CSS3-like operations available, such as radial and linear gradients. You might want to take a look the article Styling GTK+ with CSS to get some ideas. The article was written by the developer who wrote GtkCssProvider. |
|||||||
|
|
The JavaScript engine is GJS. The CSS is, I believe, internal - in GTK 3, all theming is done using CSS. |
|||
|
GtkCssProvider allows this:
which is not valid CSS3, meaning GtkCssProvider does not provide a "subset" of CSS3. It also lacks quite a few properties that are in the CSS 2.1 and 3 specs, meaning it's not a "superset" either. GtkCssProvider is simply "based upon" CSS3 (not 2). |
||||
|
|