Style import 2nd step
[MAILPOET-1626]
This commit is contained in:
@@ -76,3 +76,23 @@ span
|
|||||||
&.select2-search--dropdown
|
&.select2-search--dropdown
|
||||||
display none !important
|
display none !important
|
||||||
|
|
||||||
|
.import_validation_step
|
||||||
|
max-width: 600px
|
||||||
|
display: flex
|
||||||
|
flex-direction: column
|
||||||
|
|
||||||
|
.import_step_buttons
|
||||||
|
flex-direction: row
|
||||||
|
margin-top: 1.5em
|
||||||
|
|
||||||
|
p
|
||||||
|
margin-left: 2em
|
||||||
|
|
||||||
|
label
|
||||||
|
margin-top: 1.5em
|
||||||
|
margin-bottom: 0.3em
|
||||||
|
padding-left: 35px;
|
||||||
|
text-indent: -35px;
|
||||||
|
input
|
||||||
|
margin-right: 0.5em
|
||||||
|
|
||||||
|
@@ -10,6 +10,7 @@ const renderServicesMessage = () => {
|
|||||||
href="https://www.briteverify.com"
|
href="https://www.briteverify.com"
|
||||||
target="_blank"
|
target="_blank"
|
||||||
rel="noreferrer noopener"
|
rel="noreferrer noopener"
|
||||||
|
key="BriteVerify"
|
||||||
>
|
>
|
||||||
BriteVerify
|
BriteVerify
|
||||||
</a>
|
</a>
|
||||||
@@ -19,6 +20,7 @@ const renderServicesMessage = () => {
|
|||||||
href="https://www.datavalidation.com/"
|
href="https://www.datavalidation.com/"
|
||||||
target="_blank"
|
target="_blank"
|
||||||
rel="noreferrer noopener"
|
rel="noreferrer noopener"
|
||||||
|
key="DataValidation"
|
||||||
>
|
>
|
||||||
DataValidation
|
DataValidation
|
||||||
</a>
|
</a>
|
||||||
@@ -28,6 +30,7 @@ const renderServicesMessage = () => {
|
|||||||
href="https://neverbounce.com/"
|
href="https://neverbounce.com/"
|
||||||
target="_blank"
|
target="_blank"
|
||||||
rel="noreferrer noopener"
|
rel="noreferrer noopener"
|
||||||
|
key="NeverBounce"
|
||||||
>
|
>
|
||||||
NeverBounce
|
NeverBounce
|
||||||
</a>
|
</a>
|
||||||
@@ -59,7 +62,7 @@ class StepInputValidation extends Component {
|
|||||||
{ 'button-disabled': !this.isFormValid() },
|
{ 'button-disabled': !this.isFormValid() },
|
||||||
);
|
);
|
||||||
return (
|
return (
|
||||||
<>
|
<div className="import_step_buttons">
|
||||||
<button
|
<button
|
||||||
className="button-primary wysija button"
|
className="button-primary wysija button"
|
||||||
type="button"
|
type="button"
|
||||||
@@ -79,13 +82,13 @@ class StepInputValidation extends Component {
|
|||||||
>
|
>
|
||||||
{MailPoet.I18n.t('nextStep')}
|
{MailPoet.I18n.t('nextStep')}
|
||||||
</button>
|
</button>
|
||||||
</>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
render() {
|
render() {
|
||||||
return (
|
return (
|
||||||
<>
|
<div className="import_validation_step">
|
||||||
<label htmlFor="subscribers_agreed">
|
<label htmlFor="subscribers_agreed">
|
||||||
<input
|
<input
|
||||||
type="checkbox"
|
type="checkbox"
|
||||||
@@ -96,7 +99,7 @@ class StepInputValidation extends Component {
|
|||||||
/>
|
/>
|
||||||
{MailPoet.I18n.t('subscribersAgreed')}
|
{MailPoet.I18n.t('subscribersAgreed')}
|
||||||
</label>
|
</label>
|
||||||
<p>
|
<p className="description">
|
||||||
{MailPoet.I18n.t('dontEmailSubscribers')}
|
{MailPoet.I18n.t('dontEmailSubscribers')}
|
||||||
{' '}
|
{' '}
|
||||||
<a
|
<a
|
||||||
@@ -117,10 +120,10 @@ class StepInputValidation extends Component {
|
|||||||
/>
|
/>
|
||||||
{MailPoet.I18n.t('sentOnceYear')}
|
{MailPoet.I18n.t('sentOnceYear')}
|
||||||
</label>
|
</label>
|
||||||
<p>
|
<p className="description">
|
||||||
{MailPoet.I18n.t('emailAddressesWillBounce')}
|
{MailPoet.I18n.t('emailAddressesWillBounce')}
|
||||||
</p>
|
</p>
|
||||||
<p>
|
<p className="description">
|
||||||
{renderServicesMessage()}
|
{renderServicesMessage()}
|
||||||
</p>
|
</p>
|
||||||
<label htmlFor="understand">
|
<label htmlFor="understand">
|
||||||
@@ -133,11 +136,11 @@ class StepInputValidation extends Component {
|
|||||||
/>
|
/>
|
||||||
{MailPoet.I18n.t('youUnderstand')}
|
{MailPoet.I18n.t('youUnderstand')}
|
||||||
</label>
|
</label>
|
||||||
<p>
|
<p className="description">
|
||||||
{MailPoet.I18n.t('weWillSuspend')}
|
{MailPoet.I18n.t('weWillSuspend')}
|
||||||
</p>
|
</p>
|
||||||
{this.renderStepButtons()}
|
{this.renderStepButtons()}
|
||||||
</>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user