From 75edb3500df5397d65da38e3fb5bcaeb1d6da442 Mon Sep 17 00:00:00 2001 From: Miroslav Pejic Date: Sat, 21 Sep 2024 09:17:43 +0200 Subject: [PATCH] [mirotalksfu] - improve chat UI --- app/src/Server.js | 2 +- package.json | 2 +- public/css/GroupChat.css | 7 +++++++ public/js/Room.js | 4 ++-- public/js/RoomClient.js | 2 +- 5 files changed, 12 insertions(+), 5 deletions(-) diff --git a/app/src/Server.js b/app/src/Server.js index 870863e1..c7c8e54b 100644 --- a/app/src/Server.js +++ b/app/src/Server.js @@ -55,7 +55,7 @@ dev dependencies: { * @license For commercial or closed source, contact us at license.mirotalk@gmail.com or purchase directly via CodeCanyon * @license CodeCanyon: https://codecanyon.net/item/mirotalk-sfu-webrtc-realtime-video-conferences/40769970 * @author Miroslav Pejic - miroslav.pejic.85@gmail.com - * @version 1.5.68 + * @version 1.5.69 * */ diff --git a/package.json b/package.json index b6fb11c5..711615ab 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "mirotalksfu", - "version": "1.5.68", + "version": "1.5.69", "description": "WebRTC SFU browser-based video calls", "main": "Server.js", "scripts": { diff --git a/public/css/GroupChat.css b/public/css/GroupChat.css index f075a5d0..8299f54e 100644 --- a/public/css/GroupChat.css +++ b/public/css/GroupChat.css @@ -373,3 +373,10 @@ input[type='text'] { background: var(--select-bg); transform: translateY(-3px); } + +/* handle screen sizes */ +@media screen and (max-width: 600px) { + .people-list { + width: 100% !important; + } +} diff --git a/public/js/Room.js b/public/js/Room.js index 4280d2e0..5904eb82 100644 --- a/public/js/Room.js +++ b/public/js/Room.js @@ -11,7 +11,7 @@ if (location.href.substr(0, 5) !== 'https') location.href = 'https' + location.h * @license For commercial or closed source, contact us at license.mirotalk@gmail.com or purchase directly via CodeCanyon * @license CodeCanyon: https://codecanyon.net/item/mirotalk-sfu-webrtc-realtime-video-conferences/40769970 * @author Miroslav Pejic - miroslav.pejic.85@gmail.com - * @version 1.5.68 + * @version 1.5.69 * */ @@ -4455,7 +4455,7 @@ function showAbout() { imageUrl: image.about, customClass: { image: 'img-about' }, position: 'center', - title: 'WebRTC SFU v1.5.68', + title: 'WebRTC SFU v1.5.69', html: `
diff --git a/public/js/RoomClient.js b/public/js/RoomClient.js index bf1df92c..ab2defa9 100644 --- a/public/js/RoomClient.js +++ b/public/js/RoomClient.js @@ -9,7 +9,7 @@ * @license For commercial or closed source, contact us at license.mirotalk@gmail.com or purchase directly via CodeCanyon * @license CodeCanyon: https://codecanyon.net/item/mirotalk-sfu-webrtc-realtime-video-conferences/40769970 * @author Miroslav Pejic - miroslav.pejic.85@gmail.com - * @version 1.5.68 + * @version 1.5.69 * */