Merge pull request #1597 from thelounge/astorije/fix-time-width

Give chat timestamp a fix width to fix message alignment issues
This commit is contained in:
Jérémie Astori 2017-10-01 22:24:25 -04:00 committed by GitHub
commit 50d49a2ec2
2 changed files with 6 additions and 0 deletions

View File

@ -1005,6 +1005,11 @@ kbd {
#chat .time {
color: #ddd;
padding-left: 10px;
width: 55px;
}
#chat.show-seconds .time {
width: 75px;
}
#chat .from {

View File

@ -113,6 +113,7 @@ settings.on("change", "input, select, textarea", function() {
chat.find(".msg > .time").each(function() {
$(this).text(tz($(this).parent().data("time")));
});
chat.toggleClass("show-seconds", self.prop("checked"));
} else if (name === "autocomplete") {
if (self.prop("checked")) {
$("#input").trigger("autocomplete:on");