Make sure the channel list button stays always visible

This commit is contained in:
Jérémie Astori 2018-04-20 17:05:53 +02:00
parent c9dc323bcc
commit ec8e4fc458
No known key found for this signature in database
GPG key ID: B9A4F245CD67BDE8

View file

@ -470,7 +470,13 @@ kbd {
width: 36px;
}
/* Channel list button stays fixed when scrolling... */
#viewport .lt {
position: fixed;
}
/* ... Except on chat windows, relative to include the notification dot */
#viewport #chat .lt {
position: relative;
}
@ -2286,6 +2292,11 @@ part/quit messages where we don't load previews (adds a blank line otherwise) */
display: flex;
}
/* On mobile display, channel list button stays at the top */
#viewport .lt {
position: relative;
}
#chat .userlist {
height: 100%;
position: absolute;