mirror of https://github.com/calzoneman/sync.git
Fix chat width resizing when window is very thin
When the window resized to a small width, the chat header buttons would wrap to the next line, but would inline with the chat box itself making it resize to unreadable widths. Changing the header to flex with some minor adjustments prevents the inline wrapping thus the chatbox retains it's intended width.
This commit is contained in:
parent
7c3f3070f9
commit
ab8faf7c99
|
@ -28,6 +28,11 @@
|
|||
padding-right: 5px;
|
||||
}
|
||||
|
||||
#usercount {
|
||||
white-space: nowrap;
|
||||
flex-grow: 2;
|
||||
}
|
||||
|
||||
#userlist {
|
||||
width: 120px;
|
||||
float: left;
|
||||
|
@ -90,6 +95,12 @@
|
|||
font-weight: bold;
|
||||
}
|
||||
|
||||
#chatheader {
|
||||
display: flex;
|
||||
flex-wrap: wrap;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
#chatheader > p, #videowrap-header {
|
||||
margin: 0;
|
||||
}
|
||||
|
@ -582,7 +593,7 @@ table td {
|
|||
}
|
||||
|
||||
#userlisttoggle {
|
||||
padding-top: 2px;
|
||||
padding-bottom: 2px;
|
||||
}
|
||||
|
||||
.queue_entry {
|
||||
|
|
Loading…
Reference in New Issue