Update Grounded Wren's SVG icon control script
This commit is contained in:
parent
d3adf1eb47
commit
407bd106ba
|
@ -322,6 +322,17 @@ registerNamespace("GW.Controls.SVGLib", function(ns) {
|
||||||
ICON_CITATION
|
ICON_CITATION
|
||||||
);
|
);
|
||||||
|
|
||||||
|
iconEl.insertAdjacentHTML("afterbegin",
|
||||||
|
`<style>
|
||||||
|
.icon {
|
||||||
|
fill: black; /*Default color*/
|
||||||
|
fill: var(--icon-color);
|
||||||
|
width: 16px;
|
||||||
|
height: 16px;
|
||||||
|
}
|
||||||
|
</style>`
|
||||||
|
);
|
||||||
|
|
||||||
createChildElement(
|
createChildElement(
|
||||||
iconEl,
|
iconEl,
|
||||||
ns.ElementTypes.title,
|
ns.ElementTypes.title,
|
||||||
|
@ -415,6 +426,16 @@ registerNamespace("GW.Controls", function(ns) {
|
||||||
}
|
}
|
||||||
|
|
||||||
//Markup
|
//Markup
|
||||||
|
this.insertAdjacentHTML("beforebegin",
|
||||||
|
`<style>
|
||||||
|
gw-icon {
|
||||||
|
display: inline-flex;
|
||||||
|
flex-direction: row;
|
||||||
|
align-items: center;
|
||||||
|
justify-content: center;
|
||||||
|
}
|
||||||
|
</style>`
|
||||||
|
);
|
||||||
this.appendChild(
|
this.appendChild(
|
||||||
ns.SVGLib.createIcon(
|
ns.SVGLib.createIcon(
|
||||||
this.iconObj,
|
this.iconObj,
|
||||||
|
|
Loading…
Reference in New Issue