diff options
| author | Tavmjong Bah <tavmjong@free.fr> | 2014-07-24 09:43:00 +0000 |
|---|---|---|
| committer | tavmjong-free <tavmjong@free.fr> | 2014-07-24 09:43:00 +0000 |
| commit | b784997fa7a911f53b1ad9386f8ac631d85143b2 (patch) | |
| tree | da3b5f3105b59fcadefa47a1388fb5c1c52b1f95 /share/attributes/genMapDataCSS.pl | |
| parent | Fix a bug on type of 'fillet' on the closing node (diff) | |
| download | inkscape-b784997fa7a911f53b1ad9386f8ac631d85143b2.tar.gz inkscape-b784997fa7a911f53b1ad9386f8ac631d85143b2.zip | |
Basic support for <solidColor> element (rendring only as a paint server).
(bzr r13341.1.98)
Diffstat (limited to 'share/attributes/genMapDataCSS.pl')
| -rwxr-xr-x | share/attributes/genMapDataCSS.pl | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/share/attributes/genMapDataCSS.pl b/share/attributes/genMapDataCSS.pl index 4a32f96c7..9b013c758 100755 --- a/share/attributes/genMapDataCSS.pl +++ b/share/attributes/genMapDataCSS.pl @@ -200,6 +200,16 @@ push @{$properties{ "paint-order" }->{elements}}, @graphics_elements; $properties{ "paint-order" }->{default} = "normal"; $properties{ "paint-order" }->{inherit} = "yes"; +push @{$properties{ "solid-color" }->{elements}}, @container_elements; +push @{$properties{ "solid-color" }->{elements}}, @graphics_elements; +$properties{ "solid-color" }->{default} = "#000000"; +$properties{ "solid-color" }->{inherit} = "no"; + +push @{$properties{ "solid-opacity" }->{elements}}, @container_elements; +push @{$properties{ "solid-opacity" }->{elements}}, @graphics_elements; +$properties{ "solid-opacity" }->{default} = "1.0"; +$properties{ "solid-opacity" }->{inherit} = "no"; + # Output |
