1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
|
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
|
+
+
+
+
|
max-height: 85vh /* rough approximate */;
}
body.chat.chat-bottom-up div.content {
flex-direction: column-reverse;
}
body.chat.chat-only-mode div.content {
max-height: 95vh/*larger than approx. this is too big for Firefox on Android*/;
/* Some skins set margins and a max-width on div.content, but we
needn't(?) honor those in chat-only mode. */
margin: 0;
width: 100%;
max-width: 100%;
}
/* Wrapper for /chat user input controls */
body.chat #chat-input-area {
display: flex;
flex-direction: column;
border-bottom: 1px solid black;
padding: 0.5em 1em 0 0.5em;
|