mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-25 09:03:12 +03:00
Switched divs to buttons
refs https://github.com/TryGhost/Team/issues/1811
This commit is contained in:
parent
e359d2cb32
commit
9f294fa900
@ -214,6 +214,7 @@
|
||||
padding: 16px;
|
||||
margin: 0;
|
||||
align-items: center;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.gh-offer-type-container .gh-radio:not(:first-child) {
|
||||
|
@ -51,21 +51,21 @@
|
||||
<div>
|
||||
<label class="fw6">Offer type</label>
|
||||
<div class="gh-offer-type-container">
|
||||
<div class="gh-radio flex-grow-1 {{if this.isDiscountOffer "active"}}" type="button" {{on "click" (fn this.changeType "discount")}} disabled={{this.isDiscountSectionDisabled}}>
|
||||
<button class="gh-radio flex-grow-1 {{if this.isDiscountOffer "active"}}" type="button" {{on "click" (fn this.changeType "discount")}} disabled={{this.isDiscountSectionDisabled}}>
|
||||
<div class="gh-radio-button"></div>
|
||||
<div class="gh-radio-content">
|
||||
<div class="gh-radio-label">Discount</div>
|
||||
<div class="gh-radio-desc">Offer a special reduced price.</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="gh-radio flex-grow-1 {{if this.isTrialOffer "active"}}"
|
||||
</button>
|
||||
<button class="gh-radio flex-grow-1 {{if this.isTrialOffer "active"}}"
|
||||
type="button" {{on "click" (fn this.changeType "trial")}} disabled={{this.isDiscountSectionDisabled}}>
|
||||
<div class="gh-radio-button"></div>
|
||||
<div class="gh-radio-content">
|
||||
<div class="gh-radio-label">Free trial</div>
|
||||
<div class="gh-radio-desc">Give free access for a limited time.</div>
|
||||
</div>
|
||||
</div>
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
</GhFormGroup>
|
||||
|
Loading…
Reference in New Issue
Block a user