A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.
Read the statement by Michael Teeuw here.
MMM-MonthlyCalendar(kolbyjack) event styling problem
-
NVM i got it working by removing everything under the var line
Im having trouble editing the css of the events here(white boxes), i was able to add borders on them but cant edit the background and text color as i would like to.
I think the problem is because of this in the code but I’m not sure how to change it.
I would like the background to be transparent and text color white(always)var div = el("div", { "className": "event", "innerText": text }); if (e.color) { var c = e.color; if (e.fullDayEvent) { div.style.backgroundColor = c; if (c[0] === "#") { var r, g, b, l; if (c.length < 7) { r = parseInt(c[1], 16) * 16 + parseInt(c[1], 16); g = parseInt(c[2], 16) * 16 + parseInt(c[2], 16); b = parseInt(c[3], 16) * 16 + parseInt(c[3], 16); } else { r = parseInt(c.substr(1, 2), 16); g = parseInt(c.substr(3, 2), 16); b = parseInt(c.substr(5, 2), 16); } l = 0.299 * r + 0.587 * g + 0.114 * b; if (l >= 128) { div.style.color = "black"; } } } else { div.style.color = c; } }