Skip to content

Commit 5080fde

Browse files
[mirotalkc2c] - style: improve SweetAlert popup with rounded corners and backdrop blur
1 parent b78739d commit 5080fde

6 files changed

Lines changed: 19 additions & 6 deletions

File tree

.env.template

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# ====================================================
2-
# MiroTalk C2C v.1.2.90 - Environment Configuration
2+
# MiroTalk C2C v.1.2.91 - Environment Configuration
33
# ====================================================
44

55
# App environment

backend/server.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* @license For private project or commercial purposes contact us at: license.mirotalk@gmail.com or purchase it directly via Code Canyon:
1010
* @license https://codecanyon.net/item/mirotalk-c2c-webrtc-real-time-cam-2-cam-video-conferences-and-screen-sharing/43383005
1111
* @author Miroslav Pejic - miroslav.pejic.85@gmail.com
12-
* @version 1.2.90
12+
* @version 1.2.91
1313
*/
1414

1515
require('dotenv').config();

frontend/css/client.css

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -832,10 +832,23 @@ video::-webkit-media-controls {
832832

833833
.swal2-popup {
834834
border: var(--border) !important;
835+
border-radius: var(--border-radius) !important;
835836
background-color: var(--primary-color) !important;
836837
}
837838

839+
.swal2-popup .swal2-styled.swal2-confirm,
840+
.swal2-popup .swal2-styled.swal2-cancel,
841+
.swal2-popup .swal2-styled.swal2-deny {
842+
border-radius: 0.5rem;
843+
}
844+
845+
.swal2-container {
846+
backdrop-filter: blur(4px);
847+
}
848+
838849
.swal2-timer-progress-bar-container {
850+
border-radius: 0 0 var(--border-radius) var(--border-radius);
851+
overflow: hidden;
839852
background: #376df9;
840853
}
841854

frontend/js/client.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* @license For private project or commercial purposes contact us at: license.mirotalk@gmail.com or purchase it directly via Code Canyon:
1010
* @license https://codecanyon.net/item/mirotalk-c2c-webrtc-real-time-cam-2-cam-video-conferences-and-screen-sharing/43383005
1111
* @author Miroslav Pejic - miroslav.pejic.85@gmail.com
12-
* @version 1.2.90
12+
* @version 1.2.91
1313
*/
1414

1515
const roomId = new URLSearchParams(window.location.search).get('room');

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "mirotalkc2c",
3-
"version": "1.2.90",
3+
"version": "1.2.91",
44
"description": "A free WebRTC Cam-2-Cam browser-based video calls",
55
"main": "server.js",
66
"scripts": {

0 commit comments

Comments
 (0)