diff --git a/css/buttons/_button-control.scss b/css/buttons/_button-control.scss index 2d0aa26d8..7eaec2f92 100644 --- a/css/buttons/_button-control.scss +++ b/css/buttons/_button-control.scss @@ -67,6 +67,10 @@ border: 1px solid $primaryButtonHoverBackground; background-color: $primaryButtonHoverBackground; } + + &[disabled] { + color: $primaryButtonColor; + } } &_close { diff --git a/css/input-control/_input-control.scss b/css/input-control/_input-control.scss index 033e028a6..d9ab987db 100644 --- a/css/input-control/_input-control.scss +++ b/css/input-control/_input-control.scss @@ -1,6 +1,14 @@ .input-control { padding: 16px 0; + &:first-child { + padding-top: 0; + } + + &:last-child { + padding-bottom: 0; + } + &__text { margin: 8px 0; font-size: 1em diff --git a/lang/main.json b/lang/main.json index 27eb7af73..979f300f3 100644 --- a/lang/main.json +++ b/lang/main.json @@ -262,7 +262,8 @@ "token": "token", "tokenAuthFailedTitle": "Authentication problem", "tokenAuthFailed": "Sorry, you're not allowed to join this call.", - "displayNameRequired": "Please enter your display name", + "displayNameRequired": "Display name is required", + "enterDisplayName": "Please enter your display name", "extensionRequired": "Extension required:", "firefoxExtensionPrompt": "You need to install a Firefox extension in order to use screen sharing. Please try again after you get it from here!", "rateExperience": "Please rate your meeting experience.", diff --git a/modules/UI/UI.js b/modules/UI/UI.js index 6a62d5042..d132e6b9f 100644 --- a/modules/UI/UI.js +++ b/modules/UI/UI.js @@ -74,21 +74,27 @@ JITSI_TRACK_ERROR_TO_MESSAGE_KEY_MAP.microphone[TrackErrors.NO_DATA_FROM_SOURCE] * Prompt user for nickname. */ function promptDisplayName() { - let nickRequiredMsg - = APP.translation.translateString("dialog.displayNameRequired"); + let labelKey = 'dialog.enterDisplayName'; + let labelStr = APP.translation.translateString(labelKey); + let titleStr + = APP.translation.translateString('dialog.displayNameRequired'); let defaultNickMsg = APP.translation.translateString("defaultNickname"); - let message = ` -