Merge pull request #2055 from thelounge/xpaw/fix-2054

Fix border after nickname not taking full height
This commit is contained in:
Pavel Djundik 2018-02-13 16:22:43 +02:00 committed by GitHub
commit 72e5e9f237
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 4 additions and 4 deletions

View file

@ -1137,7 +1137,6 @@ kbd {
}
#chat .from {
border-right: 1px solid #f6f6f6;
color: #b1c3ce;
padding-right: 10px;
text-align: right;
@ -1152,6 +1151,7 @@ kbd {
min-width: 0;
padding-left: 10px;
padding-right: 6px;
border-left: 1px solid #f6f6f6;
overflow: hidden; /* Prevents Zalgo text to expand beyond messages */
}

View file

@ -39,7 +39,7 @@ body {
}
/* Borders */
#chat .from,
#chat .content,
#windows .header,
#chat .user-mode::before,
#chat .sidebar {

View file

@ -65,7 +65,7 @@ body {
}
/* Borders */
#chat .from,
#chat .content,
#windows .header,
#chat .user-mode::before,
#chat .sidebar {

View file

@ -9,7 +9,7 @@ module.exports = function(irc, network) {
const lobby = network.channels[0];
if (data.motd) {
data.motd.split("\n").forEach((text) => {
data.motd.trim().split("\n").forEach((text) => {
const msg = new Msg({
type: Msg.Type.MOTD,
text: text,