diff --git a/package.json b/package.json index 5503394..8785cea 100755 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "call-me", - "version": "1.0.35", + "version": "1.0.36", "description": "Your Go-To for Instant Video Calls", "author": "Miroslav Pejic - miroslav.pejic.85@gmail.com", "license": "AGPLv3", diff --git a/public/assets/ring.png b/public/assets/ring.png index 09d3f59..e96446d 100644 Binary files a/public/assets/ring.png and b/public/assets/ring.png differ diff --git a/public/client.js b/public/client.js index b566bbf..598b6d5 100755 --- a/public/client.js +++ b/public/client.js @@ -60,9 +60,11 @@ async function checkRoomPassword(maxRetries = 3, attempts = 0) { autocapitalize: 'off', autocorrect: 'off', }, - showCancelButton: true, + allowOutsideClick: false, + allowEscapeKey: false, + showDenyButton: true, confirmButtonText: 'Submit', - cancelButtonText: 'Cancel', + denyButtonText: `Cancel`, preConfirm: (password) => { if (!password) { Swal.showValidationMessage('Password cannot be empty'); diff --git a/public/style.css b/public/style.css index 6d7cf4d..a11a30d 100644 --- a/public/style.css +++ b/public/style.css @@ -259,7 +259,7 @@ input { /* Swal2 custom theme */ .swal2-popup { - background-color: #333 !important; + background: rgba(0, 0, 0, 0.5) !important; color: var(--text-color) !important; border: none !important; }