diff --git a/services/web/app/views/subscriptions/new.jade b/services/web/app/views/subscriptions/new.jade index 292ef418f8..d5a83bbf50 100644 --- a/services/web/app/views/subscriptions/new.jade +++ b/services/web/app/views/subscriptions/new.jade @@ -52,17 +52,17 @@ block content .row .col-md-6 label.radio-inline - input(type="radio",value="credit_card", ng-model="paymentMethod") - img(src="/recurly/images/credit_cards/visa_mastercard.png") + input.paymentTypeOption(type="radio",value="credit_card", ng-model="paymentMethod") + img(src="/recurly/images/credit_cards/visa_mastercard.png") .col-md-6 label.radio-inline - input(type="radio", value="paypal", ng-model="paymentMethod") - img(src="/recurly/images/paypal_large.png") + input.paymentTypeOption(type="radio", value="paypal", ng-model="paymentMethod") + img(src="/recurly/images/paypal_large.png") .alert.alert-warning.small(ng-show="genericError") strong {{genericError}} - .div(ng-hide="paymentMethod == 'paypal'") + span(ng-hide="paymentMethod == 'paypal'") .row .col-md-12 .form-group diff --git a/services/web/public/stylesheets/app/plans.less b/services/web/public/stylesheets/app/plans.less index 777a4400c3..611aa30f0e 100644 --- a/services/web/public/stylesheets/app/plans.less +++ b/services/web/public/stylesheets/app/plans.less @@ -96,7 +96,9 @@ margin-top: 20px; } - +input.paymentTypeOption.ng-valid { + margin-top: 10px; +}