diff --git a/public/css/GroupChat.css b/public/css/GroupChat.css index 8e62a043..e24dcd34 100644 --- a/public/css/GroupChat.css +++ b/public/css/GroupChat.css @@ -28,8 +28,8 @@ width: 100%; height: 100%; border-radius: 10px; - /* overflow-y: auto; - overflow-x: hidden; */ + overflow-y: auto; + overflow-x: hidden; /* border: 1px solid lime; */ } @@ -252,8 +252,7 @@ /* Chat message */ .chat .chat-message { padding: 20px; - height: 130px; - max-height: 130px; + max-height: 140px; overflow-y: auto; overflow-x: hidden; /* border: 1px solid lime; */ diff --git a/public/js/RoomClient.js b/public/js/RoomClient.js index 5bbf33dd..fd6c6fd1 100644 --- a/public/js/RoomClient.js +++ b/public/js/RoomClient.js @@ -5354,7 +5354,7 @@ class RoomClient { setTippy('chatShowParticipantsList', 'Toggle participants list', 'bottom'); const clickedElement = event ? event.target : null; - if (!event || (clickedElement.tagName === 'LI' || clickedElement.tagName === 'IMG')) { + if (!event || clickedElement.tagName === 'LI' || clickedElement.tagName === 'IMG') { if ((this.isMobileDevice || this.isChatPinned) && (!plist || !plist.classList.contains('hidden'))) { this.toggleShowParticipants(); }