Commit 282ebf64 by Malik Shahzad Committed by GitHub

Merge pull request #794 from edx/malikshahzad228/WL-510

WL-510: UI Issues fixed
parents a16d821b 52c06755
...@@ -6,13 +6,6 @@ ...@@ -6,13 +6,6 @@
display: none; display: none;
} }
.basket-items,
.total,
.verification-note,
.help {
margin: 0 20px;
}
#basket_totals, #basket_totals,
.price { .price {
@include float(right); @include float(right);
...@@ -143,36 +136,41 @@ ...@@ -143,36 +136,41 @@
.course-price-label { .course-price-label {
font-weight: normal; font-weight: normal;
font-size: 0.84rem; font-size: 0.84rem;
+ span {
display: inline-block;
margin-top: 8px;
}
} }
} }
.total { .total {
padding-top: 20px; padding-top: 20px;
margin-bottom: 1.25rem;
p.voucher { p.voucher {
@include float(left); @include float(left);
margin: 0 20px; margin: 0 20px;
color: gray; color: gray;
} }
.remove-voucher { .remove-voucher {
border: none; border: none;
background: none; background: none;
padding: 0; padding: 0;
color: red; color: red;
} }
.use-voucher { .use-voucher {
@include float(left); @include float(left);
p {
margin-bottom: 0;
}
#id_code { #id_code {
border: 1px solid #c8c8c8; border: 1px solid #c8c8c8;
border-radius: 4px; border-radius: 4px;
padding: 4.5px 12px; padding: 4.5px 12px;
} }
} }
...@@ -218,8 +216,6 @@ ...@@ -218,8 +216,6 @@
.verification-note { .verification-note {
margin-top: 20px; margin-top: 20px;
padding: 20px;
} }
.help { .help {
......
...@@ -175,17 +175,21 @@ ...@@ -175,17 +175,21 @@
</div> </div>
<div class="row verification-note"> <div class="row verification-note">
<span><i class="fa fa-exclamation-circle"></i></span> <div class="col-sm-12">
{# Translators: <b></b> tags will bold the text within. Keep the tags and translate the text within. #} <span><i class="fa fa-exclamation-circle"></i></span>
{% if is_verification_required %} {# Translators: <b></b> tags will bold the text within. Keep the tags and translate the text within. #}
{% trans "<b>Note:</b> To earn a verified certificate, you must verify your identity with a <b>webcam</b> and a <b>government-issued photo ID</b>. " %} {% if is_verification_required %}
{% else %} {% trans "<b>Note:</b> To earn a verified certificate, you must verify your identity with a <b>webcam</b> and a <b>government-issued photo ID</b>. " %}
{% trans "<b>Note:</b> To complete your enrollment, select Checkout or Checkout with PayPal." %} {% else %}
{% endif %} {% trans "<b>Note:</b> To complete your enrollment, select Checkout or Checkout with PayPal." %}
{% endif %}
</div>
</div> </div>
<div class="row help"> <div class="row help">
<p><b>{% trans "Have questions?" %}</b></p> <div class="col-sm-12">
<a href="{{ support_url }}">{% trans "Please read our FAQs to view common questions about our certificates." %}</a> <p><b>{% trans "Have questions?" %}</b></p>
<a href="{{ support_url }}">{% trans "Please read our FAQs to view common questions about our certificates." %}</a>
</div>
</div> </div>
</div> </div>
{% else %} {% else %}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment