basic css, ionicons looking much better
This commit is contained in:
parent
dc0246814e
commit
987531b018
2 changed files with 26 additions and 1 deletions
|
@ -31,7 +31,7 @@ proc initCtx(): Ctx =
|
||||||
proc decodeCtx(inherited: Ctx, node: XmlNode): Ctx =
|
proc decodeCtx(inherited: Ctx, node: XmlNode): Ctx =
|
||||||
result = inherited
|
result = inherited
|
||||||
|
|
||||||
let
|
var
|
||||||
fillRule = node.attr("fill-rule")
|
fillRule = node.attr("fill-rule")
|
||||||
fill = node.attr("fill")
|
fill = node.attr("fill")
|
||||||
stroke = node.attr("stroke")
|
stroke = node.attr("stroke")
|
||||||
|
@ -39,6 +39,29 @@ proc decodeCtx(inherited: Ctx, node: XmlNode): Ctx =
|
||||||
strokeLineCap = node.attr("stroke-linecap")
|
strokeLineCap = node.attr("stroke-linecap")
|
||||||
strokeLineJoin = node.attr("stroke-linejoin")
|
strokeLineJoin = node.attr("stroke-linejoin")
|
||||||
transform = node.attr("transform")
|
transform = node.attr("transform")
|
||||||
|
style = node.attr("style")
|
||||||
|
|
||||||
|
let pairs = style.split(';')
|
||||||
|
for pair in pairs:
|
||||||
|
let parts = pair.split(':')
|
||||||
|
if parts.len == 2:
|
||||||
|
# Do not override element properties
|
||||||
|
case parts[0].strip():
|
||||||
|
of "fill":
|
||||||
|
if fill.len == 0:
|
||||||
|
fill = parts[1].strip()
|
||||||
|
of "stroke":
|
||||||
|
if stroke.len == 0:
|
||||||
|
stroke = parts[1].strip()
|
||||||
|
of "stroke-linecap":
|
||||||
|
if strokeLineCap.len == 0:
|
||||||
|
strokeLineCap = parts[1].strip()
|
||||||
|
of "stroke-linejoin":
|
||||||
|
if strokeLineJoin.len == 0:
|
||||||
|
strokeLineJoin = parts[1].strip()
|
||||||
|
of "stroke-width":
|
||||||
|
if strokeWidth.len == 0:
|
||||||
|
strokeWidth = parts[1].strip()
|
||||||
|
|
||||||
if fillRule == "":
|
if fillRule == "":
|
||||||
discard # Inherit
|
discard # Inherit
|
||||||
|
@ -68,6 +91,8 @@ proc decodeCtx(inherited: Ctx, node: XmlNode): Ctx =
|
||||||
if strokeWidth == "":
|
if strokeWidth == "":
|
||||||
discard # Inherit
|
discard # Inherit
|
||||||
else:
|
else:
|
||||||
|
if strokeWidth.endsWith("px"):
|
||||||
|
strokeWidth = strokeWidth[0 .. ^3]
|
||||||
result.strokeWidth = parseFloat(strokeWidth)
|
result.strokeWidth = parseFloat(strokeWidth)
|
||||||
|
|
||||||
if strokeLineCap == "":
|
if strokeLineCap == "":
|
||||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 519 KiB After Width: | Height: | Size: 631 KiB |
Loading…
Reference in a new issue