Software /
code /
prosody-modules
Comparison
mod_http_muc_log/res/http_muc_log.html @ 5107:1e10ddbf5c87
mod_http_muc_log: Tweak style towards the "modern"
Also accidentally converted the hand-minified CSS to SCSS for easier
editing.
This gets rid of the <q> element because it makes browsers (at least
Firefox) add annoying quotes to any text copied out of them,
interfering with opening non-linkified URLs. That could have been
considered a sort of security mechanism, but convenience trumps
security!
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Sun, 04 Dec 2022 23:16:31 +0100 |
parent | 5104:d4b0a995e5e3 |
child | 5108:21170bf1e76b |
comparison
equal
deleted
inserted
replaced
5106:630887a50a7d | 5107:1e10ddbf5c87 |
---|---|
57 </form>} | 57 </form>} |
58 </div> | 58 </div> |
59 | 59 |
60 <ol class="chat-logs">{lines# | 60 <ol class="chat-logs">{lines# |
61 <li {item.lang&lang="{item.lang}"} class="{item.st_name} {item.st_type?} {item.edited&edited}" id="{item.archive_id}"> | 61 <li {item.lang&lang="{item.lang}"} class="{item.st_name} {item.st_type?} {item.edited&edited}" id="{item.archive_id}"> |
62 <a class="time" href="#{item.archive_id}"><time id="{item.time}" datetime="{item.datetime}">{item.time}</time></a> | |
63 <b class="nick">{item.nick}</b> | 62 <b class="nick">{item.nick}</b> |
64 <em class="verb">{item.verb?}</em> | 63 <em class="verb">{item.verb?}</em> |
65 <q class="body">{item.edited&<del>}{item.body?}{item.edited&</del> <a href="#{item.edited}" title="jump to corrected version">✎</a>}{item.edit& <a href="#{item.edit}" title="jump to previous version">✏</a>}{item.reply& <a href="#{item.reply}" title="jump to message responded to">↺</a>}</q> | 64 <a class="time" href="#{item.archive_id}"><time id="{item.time}" datetime="{item.datetime}">{item.time}</time></a> |
65 <p class="body">{item.edited&<del>}{item.body?}{item.edited&</del> <a href="#{item.edited}" title="jump to corrected version">✎</a>}{item.edit& <a href="#{item.edit}" title="jump to previous version">✏</a>}{item.reply& <a href="#{item.reply}" title="jump to message responded to">↺</a>}</p> | |
66 {item.reactions%<span class="reaction">{idx} {item}</span>} | 66 {item.reactions%<span class="reaction">{idx} {item}</span>} |
67 {item.oob.url&<figure><a rel="nofollow" href="{item.oob.url?}"><img alt="{item.oob.desc?}" src="{item.oob.url?}"/></a><figcaption>{item.oob.desc?}</figcaption></figure>} | 67 {item.oob.url&<figure><a rel="nofollow" href="{item.oob.url?}"><img alt="{item.oob.desc?}" src="{item.oob.url?}"/></a><figcaption>{item.oob.desc?}</figcaption></figure>} |
68 </li>} | 68 </li>} |
69 </ol> | 69 </ol> |
70 </main> | 70 </main> |