summaryrefslogtreecommitdiff
path: root/README
blob: 8bcc1f7962d5c8d774265eedd8572b817bf1dbf5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50

README
======

Download
--------

http://anongit.freedesktop.org/git/ccss.git/
git+ssh://<user>@git.freedesktop.org/git/ccss


(0) Supported CSS Subset
------------------------

* Descendant selectors, e.g. `GtkComboBox GtkButton { ... }`.
* Child selectors, e.g. `GtkBox > GtkButton { ... }`.
* Class selectors, e.g. `hline.handlebox { ... }`.
  The class-part is mapped to gtk'd detail string.
* ID selectors, e.g. `GtkButton#foo { ... }`.
  The ID-part is mapped to the widget's name.
* Universal selector, e.g. `* { ... }`.
* Sequences of selectors, e.g. `GtkNotebook, GtkFrame { ... }`.


### (0.1) Supported CSS Properties ###

The following properties are at least partially supported.

* background
* background-color
* background-image
* background-attachment
* background-position
* background-repeat
* background-size
* border
* border-color
* border-style
* border-width
* border-bottom
* border-left
* border-right
* border-top
* border-radius
* border-top-left-radius
* border-top-right-radius
* border-bottom-right-radius
* border-bottom-left-radius
* color