diff --git a/public/css/client.css b/public/css/client.css index 6d18ba37..84e47f3c 100755 --- a/public/css/client.css +++ b/public/css/client.css @@ -287,7 +287,7 @@ body { .fa-phone-slash, .fa-microphone-slash, .fa-video-slash { - color: #e74c3c !important; + color: red !important; } /*-------------------------------------------------------------- @@ -1133,7 +1133,7 @@ button:hover { #muteEveryoneBtn:hover, #hideEveryoneBtn:hover, #ejectEveryoneBtn:hover { - color: #e74c3c; + color: red; transform: scale(0.95); transition: all 0.3s ease-in-out; } diff --git a/public/js/client.js b/public/js/client.js index 1d884490..c1cca966 100644 --- a/public/js/client.js +++ b/public/js/client.js @@ -5796,7 +5796,7 @@ function shareRoomMeetingURL(checkScreen = false) {

${roomURL}

`, showDenyButton: true, showCancelButton: true, - cancelButtonColor: '#e74c3c', + cancelButtonColor: 'red', denyButtonColor: 'green', confirmButtonText: `Copy URL`, denyButtonText: `Email invite`, @@ -5859,7 +5859,7 @@ function shareRoomByEmail() { html: '', showCancelButton: true, confirmButtonText: 'OK', - cancelButtonColor: '#e74c3c', + cancelButtonColor: 'red', showClass: { popup: 'animate__animated animate__fadeInDown' }, hideClass: { popup: 'animate__animated animate__fadeOutUp' }, preConfirm: () => { @@ -6557,7 +6557,7 @@ function recordingOptions(options, audioMixerTracks) { title: 'Recording options', showDenyButton: true, showCancelButton: true, - cancelButtonColor: '#e74c3c', + cancelButtonColor: 'red', denyButtonColor: 'green', confirmButtonText: `Camera`, denyButtonText: `Screen/Window`, @@ -7935,7 +7935,7 @@ function handleHideMe(isHideMeActive) { if (isHideMeActive) { if (isVideoPinned) myVideoPinBtn.click(); elemDisplay(myVideoWrap, false); - setColor(hideMeBtn, '#e74c3c'); + setColor(hideMeBtn, 'red'); hideMeBtn.className = className.hideMeOn; playSound('off'); } else {