Software /
code /
prosody-modules
Changeset
3718:cc6f7e2e4a59
mod_http_muc_log: Add arrow to 'latest' link like on other navigation
author | Kim Alvefur <zash@zash.se> |
---|---|
date | Sun, 13 Oct 2019 16:56:52 +0200 |
parents | 3717:4c7d27542161 |
children | 3719:a6db99c1420a |
files | mod_http_muc_log/http_muc_log.html mod_http_muc_log/mod_http_muc_log.lua |
diffstat | 2 files changed, 2 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/mod_http_muc_log/http_muc_log.html Sun Oct 13 16:55:57 2019 +0200 +++ b/mod_http_muc_log/http_muc_log.html Sun Oct 13 16:56:52 2019 +0200 @@ -27,6 +27,7 @@ nav .next{float:right;} nav .next::after{content:" →";} nav .prev::before{content:"← ";} +nav .last::after{content:" ⇥";} nav :empty::after,nav :empty::before{content:""} table{display:inline-block; margin:1ex 1em;vertical-align:top;} th{font-size:x-small}
--- a/mod_http_muc_log/mod_http_muc_log.lua Sun Oct 13 16:55:57 2019 +0200 +++ b/mod_http_muc_log/mod_http_muc_log.lua Sun Oct 13 16:56:52 2019 +0200 @@ -248,7 +248,7 @@ years = years; links = { { href = "../", rel = "up", text = "Room list" }, - { href = "latest", text = "Latest" }, + { href = "latest", rel = "last", text = "Latest" }, }; }); end