Warning: session_start(): open(/var/lib/php/sessions/sess_5dd59m93utf1vf9d5suen1ptn8, O_RDWR) failed: No space left on device (28) in /var/www/tb-usercake/models/config.php on line 51
Warning: session_start(): Failed to read session data: files (path: /var/lib/php/sessions) in /var/www/tb-usercake/models/config.php on line 51
// use inside of jAutoWidthHTMLLabel
// pairs: (HTML text, false=left/true=right)
// sadly, no padding possible with this div/span arrangement
sS htmlForJLabel_chatConvo(LPair dialog) {
ret lines(mapPairsToList(dialog, (content, right) -> {
S color = right ? "#9999FF" : "#99FF99";
ret div(span(content, style := "background: \*color*/"),
style := "margin-bottom: 10px; margin-" + (right ? "left" : "right") + ": 20px" + (right ? "; text-align: right" : ""));
}));
}