-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathset_css_class.inx
More file actions
21 lines (18 loc) · 887 Bytes
/
set_css_class.inx
File metadata and controls
21 lines (18 loc) · 887 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?xml version="1.0" encoding="UTF-8"?>
<inkscape-extension xmlns="http://www.inkscape.org/namespace/inkscape/extension">
<name>Set CSS class on elements</name>
<id>org.inkscape.stylesheet.set</id>
<dependency type="executable" location="extensions">set_css_class.py</dependency>
<_param name="introduction" type="description">Set a CSS class on the selected elements. Their current inline styles will be removed.</_param>
<param name="name" type="string" _gui-text="CSS class name:">class1</param>
<param name="clear_styles" type="boolean" _gui-text="clear inline styling">true</param>
<effect needs-live-preview="false">
<object-type>all</object-type>
<effects-menu>
<submenu _name="Stylesheet"/>
</effects-menu>
</effect>
<script>
<command reldir="extensions" interpreter="python">set_css_class.py</command>
</script>
</inkscape-extension>