diff --git a/css/main.scss b/css/main.scss index c65ff91d9..7fb71d2df 100644 --- a/css/main.scss +++ b/css/main.scss @@ -38,6 +38,7 @@ @import 'toastr'; @import 'base'; @import 'overlay/overlay'; +@import 'reload_overlay/reload_overlay'; @import 'modals/dialog'; @import 'modals/feedback/feedback'; @import 'videolayout_default'; diff --git a/css/reload_overlay/_reload_overlay.scss b/css/reload_overlay/_reload_overlay.scss new file mode 100644 index 000000000..15c8fdbd4 --- /dev/null +++ b/css/reload_overlay/_reload_overlay.scss @@ -0,0 +1,17 @@ +.reload_overlay_title { + display: block; + font-size: 16px; + line-height: 20px; +} + +.reload_overlay_msg { + display: block; + font-size: 12px; + line-height: 30px; +} + +#reloadProgressBar { + width: 180px; + margin: 5px auto; +} + diff --git a/lang/main.json b/lang/main.json index 74d9e3ed0..86de9cc2d 100644 --- a/lang/main.json +++ b/lang/main.json @@ -202,7 +202,8 @@ "detectext": "Error when trying to detect desktopsharing extension.", "failtoinstall": "Failed to install desktop sharing extension", "failedpermissions": "Failed to obtain permissions to use the local microphone and/or camera.", - "conferenceReloadMsg": "Something went wrong we'll try to reload the conference in...", + "conferenceReloadTitle": "Unfortunately, something went wrong", + "conferenceReloadMsg": "We're trying to fix this", "conferenceReloadTimeLeft": "__seconds__ sec.", "maxUsersLimitReached": "The limit for maximum number of participants in the conference has been reached. The conference is full. Please try again later!", "lockTitle": "Lock failed", diff --git a/modules/UI/reload_overlay/PageReloadOverlay.js b/modules/UI/reload_overlay/PageReloadOverlay.js index 03c1368ec..4529ab478 100644 --- a/modules/UI/reload_overlay/PageReloadOverlay.js +++ b/modules/UI/reload_overlay/PageReloadOverlay.js @@ -32,15 +32,15 @@ class PageReloadOverlayImpl extends Overlay{ */ _buildOverlayContent() { return ` - + + class='reload_overlay_msg'>
- +
`; }