Commit 8b968831 authored by JC Brand's avatar JC Brand

Fix scrolling for chatrooms with many participants.

parent e1f41777
...@@ -1917,6 +1917,8 @@ ...@@ -1917,6 +1917,8 @@
padding: 0.3em; padding: 0.3em;
font-weight: bold; } font-weight: bold; }
#conversejs .chatroom .box-flyout .chatroom-body .participants .participant-list { #conversejs .chatroom .box-flyout .chatroom-body .participants .participant-list {
height: 100%;
overflow-y: scroll;
list-style: none; } list-style: none; }
#conversejs .chatroom .box-flyout .chatroom-body .participants .participant-list li { #conversejs .chatroom .box-flyout .chatroom-body .participants .participant-list li {
cursor: default; cursor: default;
......
...@@ -58,6 +58,8 @@ ...@@ -58,6 +58,8 @@
font-weight: bold; font-weight: bold;
} }
.participant-list { .participant-list {
height: 100%;
overflow-y: scroll;
list-style: none; list-style: none;
li { li {
cursor: default; cursor: default;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment