Lines Matching refs:style
81 style = simplestyle.parseStyle(node.get('style'))
83 inkex.errormsg(_("No style attribute found for id: %s") % id)
88 temp_stroke = style.get('stroke', '#000000')
89 temp_fill = style.get('fill', '#000000')
97 temp_stroke_opacity = style.get('stroke-opacity', '1')
98 temp_fill_opacity = style.get('fill-opacity', '1')
127 if style.has_key(mprop) and style[mprop] != 'none'and style[mprop][:5] == 'url(#':
128 marker_id = style[mprop][5:-1]
142 style[mprop] = "url(#%s)" % new_id
147 children = mnode.xpath('.//*[@style]', namespaces=inkex.NSS)
149 cstyle = simplestyle.parseStyle(child.get('style'))
158 child.set('style',simplestyle.formatStyle(cstyle))
159 node.set('style',simplestyle.formatStyle(style))