diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-13 11:50:49 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-13 11:50:49 +0000 |
commit | c853ffb5b2f75f5a889ed2e3ef89b818a736e87a (patch) | |
tree | 7d13a0883bb7936b84d6ecdd7bc332b41ed04bee /share/extensions/merge_styles.inx | |
parent | Initial commit. (diff) | |
download | inkscape-c853ffb5b2f75f5a889ed2e3ef89b818a736e87a.tar.xz inkscape-c853ffb5b2f75f5a889ed2e3ef89b818a736e87a.zip |
Adding upstream version 1.3+ds.upstream/1.3+dsupstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'share/extensions/merge_styles.inx')
-rw-r--r-- | share/extensions/merge_styles.inx | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/share/extensions/merge_styles.inx b/share/extensions/merge_styles.inx new file mode 100644 index 0000000..b4863d3 --- /dev/null +++ b/share/extensions/merge_styles.inx @@ -0,0 +1,19 @@ +<?xml version="1.0" encoding="UTF-8"?> +<inkscape-extension xmlns="http://www.inkscape.org/namespace/inkscape/extension"> + <name>Merge Styles into CSS</name> + <id>effect.merge_styles</id> + + <label>All selected nodes will be grouped together and their common style attributes will create a new class, this class will replace the existing inline style attributes. Please use a name which best describes the kinds of objects and their common context for best effect.</label> + + <param name="name" type="string" gui-text="New Class Name:">class1</param> + + <effect needs-live-preview="false"> + <object-type>all</object-type> + <effects-menu> + <submenu name="Styles"/> + </effects-menu> + </effect> + <script> + <command location="inx" interpreter="python">merge_styles.py</command> + </script> +</inkscape-extension> |