Change CSS chatbox

This commit is contained in:
Luong Doan 2021-07-02 06:55:45 +00:00
parent f773fb5e70
commit 6448ad9d89
2 changed files with 7 additions and 4 deletions

View file

@ -68,12 +68,15 @@
#chat-online { #chat-online {
border: 1px solid #ccc; border: 1px solid #ccc;
border-radius: 4px; border-radius: 4px;
padding-bottom: 0 !important;
} }
#chat-online-content { #chat-online-content {
margin-top: 0.5em;
margin-bottom: 0;
overflow: hidden; overflow: hidden;
overflow-wrap: break-word; overflow-wrap: break-word;
overflow-y: auto; overflow-y: auto;
max-height: 81vh; max-height: 77vh;
} }
#chat-box { #chat-box {
border: 1px solid #ccc; border: 1px solid #ccc;
@ -121,4 +124,4 @@
.chat-left-panel, .chat-right-panel { .chat-left-panel, .chat-right-panel {
display: block !important; display: block !important;
} }
} }

View file

@ -305,9 +305,9 @@
{{_('Online Users')}} {{_('Online Users')}}
<button id="refresh-button" class="fa fa-rotate-right" title="{{_('Refresh')}}"></button> <button id="refresh-button" class="fa fa-rotate-right" title="{{_('Refresh')}}"></button>
</h3> </h3>
<ul id="chat-online-content"> <div id="chat-online-content">
{% include "chat/online_status.html" %} {% include "chat/online_status.html" %}
</ul> </div>
</div> </div>
</div> </div>