With this line:
msg.payload = '<span class="fa-stack"><i style="color:yellow" class="fa-signing fa-2x fa-stack-1x"></i> <i class="fa fa-ban fa-2x fa-stack-2x" style="color:Tomato"></i> </i></span></font>';
I get (picture)
So I'm guessing somewhere I have a lot of CSS stuff working.
But if I do all the styling in the line, that is LOCAL to that ..... button
node.
(Alas the text
node doesn't allow background colour setting.)
Taking a step back:
The ban
is working.
The signning
isn't.
but in the alternate line:
msg.payload = '<font color = yellow ><i class="fa fa-signing fa-flip-horizontal fa-2x"></i></font>';
works.
To maybe give a bigger picture here is the code and the button
node:
[{"id":"832865263b1462a2","type":"function","z":"235f16ee6e459f2c","name":"Week check","func":"const timestamp = msg.payload\nconst weekno = Math.floor((timestamp + 345_600_000) / 604_800_000)\nconst result_ = Number(weekno) % 2\nif (result_ == 0) {\n msg.payload = '<font color = yellow ><i class=\"fa fa-signing fa-flip-horizontal fa-2x\"></i></font>';\n msg.flag = \"Wash\";\n return msg;\n}\nelse\n{\n// msg.payload = ' ';\n msg.payload = '<span class=\"fa-stack\"><i style=\"color:yellow\" class=\"fa-signing fa-2x fa-stack-1x\"></i> <i class=\"fa fa-ban fa-2x fa-stack-2x\" style=\"color:Tomato\"></i> </i></span></font>';\n msg.flag = \" \";\n}\nreturn msg;","outputs":1,"noerr":0,"initialize":"","finalize":"","libs":[],"x":1420,"y":4700,"wires":[["4e26090847259a9b","63e667ec355471b7"]]},{"id":"63e667ec355471b7","type":"ui_button","z":"235f16ee6e459f2c","name":"","group":"a71318e04a2701e3","order":14,"width":"1","height":"1","passthru":false,"label":"{{msg.payload}}","tooltip":"","color":"","bgcolor":"#333333","className":"","icon":"","payload":"","payloadType":"str","topic":"topic","topicType":"msg","x":1580,"y":4700,"wires":[[]]},{"id":"a71318e04a2701e3","type":"ui_group","name":"Special days","tab":"94541d8e64761d52","order":5,"disp":true,"width":"6","collapse":true,"className":""},{"id":"94541d8e64761d52","type":"ui_tab","name":"Messages","icon":"volume-up","order":13,"disabled":false,"hidden":false}]