diff options
| author | Tavmjong Bah <tavmjong@free.fr> | 2014-07-31 14:31:01 +0000 |
|---|---|---|
| committer | tavmjong-free <tavmjong@free.fr> | 2014-07-31 14:31:01 +0000 |
| commit | 291925ef62d1068af1c4b7f3614c96d46f3c20f2 (patch) | |
| tree | 909ddb2084eae4b02ff42fcd3860c97efb505cbd /share/attributes/genMapDataCSS.pl | |
| parent | Limit the number of paths to be used as snap targets, to keep Inkscape respon... (diff) | |
| download | inkscape-291925ef62d1068af1c4b7f3614c96d46f3c20f2.tar.gz inkscape-291925ef62d1068af1c4b7f3614c96d46f3c20f2.zip | |
Basic support for <solidColor> element (rendering only as a paint server).
(bzr r13484)
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 |
