Fix blockquote width in sent mail (#1489031)
| | |
| | | CHANGELOG Roundcube Webmail |
| | | =========================== |
| | | |
| | | - Fix blockquote width in sent mail (#1489031) |
| | | - Fix keyboard events on list widgets in Internet Explorer (#1489025) |
| | | - Call resize handler in intervals to prevent lags and double onresize calls in Chrome (#1489005) |
| | | - Add rel="noreferrer" for links in displayed messages (#1484686) |
| | |
| | | $message_body = preg_replace('/\s*id="_rc_sig"/', '', $message_body); |
| | | |
| | | // add inline css for blockquotes |
| | | $bstyle = 'padding-left:5px; border-left:#1010ff 2px solid; margin-left:5px; width:100%'; |
| | | $bstyle = 'padding-left:5px; border-left:#1010ff 2px solid; margin-left:5px'; |
| | | $message_body = preg_replace('/<blockquote>/', |
| | | '<blockquote type="cite" style="'.$bstyle.'">', $message_body); |
| | | } |