From 26c921d3cd446023081642f9fffc32ae17cf5b8a Mon Sep 17 00:00:00 2001 From: Peter Zimon Date: Wed, 16 Sep 2020 18:12:59 +0200 Subject: [PATCH] Updated mobile styles for footers no refs. - fixed footer for signup and signin page considering various Portal settings --- ghost/portal/src/App.js | 2 +- .../portal/src/components/pages/SigninPage.js | 2 +- .../portal/src/components/pages/SignupPage.js | 95 +++++++++++++------ ghost/portal/src/utils/fixtures.js | 2 +- 4 files changed, 67 insertions(+), 34 deletions(-) diff --git a/ghost/portal/src/App.js b/ghost/portal/src/App.js index e584106004..2b9779b52e 100644 --- a/ghost/portal/src/App.js +++ b/ghost/portal/src/App.js @@ -13,7 +13,7 @@ const DEV_MODE_DATA = { showPopup: true, site: Fixtures.site, member: Fixtures.member.free, - page: 'accountHome' + page: 'signup' }; export default class App extends React.Component { constructor(props) { diff --git a/ghost/portal/src/components/pages/SigninPage.js b/ghost/portal/src/components/pages/SigninPage.js index b908cdbad9..1b36467ef1 100644 --- a/ghost/portal/src/components/pages/SigninPage.js +++ b/ghost/portal/src/components/pages/SigninPage.js @@ -99,7 +99,7 @@ export default class SigninPage extends React.Component { renderForm() { return (
-
+
this.handleInputChange(e, field)} diff --git a/ghost/portal/src/components/pages/SignupPage.js b/ghost/portal/src/components/pages/SignupPage.js index ad3adb4979..2900d40214 100644 --- a/ghost/portal/src/components/pages/SignupPage.js +++ b/ghost/portal/src/components/pages/SignupPage.js @@ -9,17 +9,6 @@ import {getSitePlans, hasOnlyFreePlan} from '../../utils/helpers'; const React = require('react'); export const SignupPageStyles = ` - footer.gh-portal-signup-footer, - footer.gh-portal-signin-footer { - height: 112px; - } - - .gh-portal-content.signup, - .gh-portal-content.signin { - max-height: calc(100vh - 12vw - 112px); - padding-bottom: 0; - } - .gh-portal-signup-logo { position: relative; display: block; @@ -59,16 +48,58 @@ export const SignupPageStyles = ` margin-left: 4px; } + .gh-portal-content.signup { + background: linear-gradient(#fff 30%,hsla(0,0%,100%,0)), + linear-gradient(hsla(0,0%,100%,0),#fff 70%) 0 100%, + linear-gradient(#fff,transparent), + linear-gradient(transparent,rgba(0,0,0,.08)) 0 100%; + background-repeat: no-repeat; + background-color: #fff; + background-size: 100% 40px,100% 40px,100% 14px,100% 14px; + background-attachment: local,local,scroll,scroll; + } + + footer.gh-portal-signup-footer, + footer.gh-portal-signin-footer { + padding-top: 24px; + height: 132px; + } + + .gh-portal-content.signup, + .gh-portal-content.signin { + max-height: calc(100vh - 12vw - 132px); + padding-bottom: 0; + } + .gh-portal-content.signup .gh-portal-section { - margin-bottom: 24px; + margin-bottom: 0; } - .gh-portal-content.signup .gh-portal-section.noplan { - margin-bottom: 32px; + .gh-portal-content.signup.noplan { + margin-bottom: -8px; } - .gh-portal-content.signup .gh-portal-section.single-field { - margin-bottom: 20px; + .gh-portal-content.signup.single-field { + margin-bottom: 0; + } + + .gh-portal-content.signup.single-field .gh-portal-input, + .gh-portal-content.signin .gh-portal-input { + margin-bottom: 8px; + } + + .gh-portal-content.signup.single-field + .gh-portal-signup-footer, + footer.gh-portal-signin-footer { + padding-top: 12px; + } + + .gh-portal-content.signin .gh-portal-section { + margin-bottom: 0; + } + + .gh-portal-content.signup.single-field + footer.gh-portal-signup-footer, + .gh-portal-content.signin + footer.gh-portal-signin-footer { + height: 120px; } `; @@ -324,24 +355,11 @@ class SignupPage extends React.Component { } renderForm() { - const plansData = this.getPlans(); const fields = this.getInputFields({state: this.state}); - let sectionClass = ''; - - if (plansData.length <= 1) { - if ((plansData.length === 1 && plansData[0].type === 'free') || plansData.length === 0) { - sectionClass = 'noplan'; - if (fields.length === 1) { - sectionClass = 'single-field'; - } - } else { - sectionClass = 'singleplan'; - } - } return (
-
+
this.handleInputChange(e, field)} @@ -381,9 +399,24 @@ class SignupPage extends React.Component { } render() { + const plansData = this.getPlans(); + const fields = this.getInputFields({state: this.state}); + let sectionClass = ''; + + if (plansData.length <= 1) { + if ((plansData.length === 1 && plansData[0].type === 'free') || plansData.length === 0) { + sectionClass = 'noplan'; + if (fields.length === 1) { + sectionClass = 'single-field'; + } + } else { + sectionClass = 'singleplan'; + } + } + return (
-
+
{this.renderFormHeader()} {this.renderForm()}
diff --git a/ghost/portal/src/utils/fixtures.js b/ghost/portal/src/utils/fixtures.js index 21da456647..d5a36f6580 100644 --- a/ghost/portal/src/utils/fixtures.js +++ b/ghost/portal/src/utils/fixtures.js @@ -15,7 +15,7 @@ export const site = { is_stripe_configured: true, portal_button: true, portal_name: true, - portal_plans: ['free', 'monthly', 'yearly'], + portal_plans: ['free', 'monthly'], portal_button_icon: 'icon-1', portal_button_signup_text: 'Subscribe now', portal_button_style: 'icon-and-text',