1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
|
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
|
-
+
+
+
+
+
+
+
+
|
filter: invert(100%);
}
body.chat #chat-settings-button {
}
body.chat .chat-settings-popup {
font-size: 0.8em;
text-align: left;
opacity: 0.8;
display: flex;
flex-direction: column;
align-items: stretch;
padding: 0.25em;
}
body.chat .chat-settings-popup > span {
margin: 0.25em 0.2em;
padding: 0.5em;
white-space: nowrap;
cursor: pointer;
border: 1px outset;
border-radius: 0.25em;
}
body.chat #chat-messages-wrapper {
display: flex;
flex-direction: column;
}
body.chat.chat-only-mode{
}
|
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
|
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
|
-
+
|
flex-direction: row;
margin-bottom: 0.25em;
align-items: center;
}
body.chat #chat-input-line > input[type=submit] {
flex: 1 5 auto;
max-width: 6em;
margin-right: 1em;
margin: 0 1em;
}
body.chat #chat-input-line > input[type=text] {
flex: 5 1 auto;
}
body.chat #chat-input-file-area {
display: flex;
flex-direction: row;
|