diff --git a/ghost/admin/app/components/modal-portal-settings.js b/ghost/admin/app/components/modal-portal-settings.js index 5a994deaec..c441ab705c 100644 --- a/ghost/admin/app/components/modal-portal-settings.js +++ b/ghost/admin/app/components/modal-portal-settings.js @@ -286,7 +286,7 @@ export default ModalComponent.extend({ this.settings.hasValidated.removeObject('portalSignupTermsHtml'); if (content.length > this.maxTermsLength) { - this.settings.errors.add('portalSignupTermsHtml', 'Too many characters'); + this.settings.errors.add('portalSignupTermsHtml', 'You\'ve exceeded the character limit'); this.settings.hasValidated.pushObject('portalSignupTermsHtml'); } } diff --git a/ghost/admin/app/styles/layouts/members.css b/ghost/admin/app/styles/layouts/members.css index 294a061100..25b9a461ad 100644 --- a/ghost/admin/app/styles/layouts/members.css +++ b/ghost/admin/app/styles/layouts/members.css @@ -1972,7 +1972,7 @@ p.gh-members-import-errordetail:first-of-type { } .gh-members-emailsettings-footer-input { height: 120px; - padding: 0 12px 6px 12px; + padding: 2px 12px 6px 12px; border: 1px solid var(--whitegrey-d1); background: var(--white); border-radius: 4px; diff --git a/ghost/admin/app/styles/layouts/portal-settings.css b/ghost/admin/app/styles/layouts/portal-settings.css index d8fb28de92..cccabbc32d 100644 --- a/ghost/admin/app/styles/layouts/portal-settings.css +++ b/ghost/admin/app/styles/layouts/portal-settings.css @@ -99,6 +99,14 @@ height: 22px !important; } +.gh-portal-settings .gh-members-emailsettings-footer-input { + height: 78px; +} + +.gh-portal-settings .gh-members-emailsettings-footer-input p { + height: 60px; +} + .gh-portal-setting-sectionheading { font-size: 1.1rem; font-weight: 600;