SAAS-1025: Restyle the billing page

Fix header padding
Change current plan font
This commit is contained in:
drigato 2015-08-26 11:27:00 -04:00
parent 7e1fe030fe
commit 706caa8458
2 changed files with 12 additions and 2 deletions

View file

@ -299,7 +299,7 @@ $(document).ready(function() {
<!-- <!--
<p> <a target="_blank" href="https://www.airtime.pro/pricing"><?=_("View Plans")?></a> (Opens in a new window)</p> <p> <a target="_blank" href="https://www.airtime.pro/pricing"><?=_("View Plans")?></a> (Opens in a new window)</p>
--> -->
<p id="current_plan"><b>Current Plan:</b> <p id="current_plan"><span>Your Current Plan:</span>
<?php <?php
$currentProduct = Billing::getClientCurrentAirtimeProduct(); $currentProduct = Billing::getClientCurrentAirtimeProduct();
echo($currentProduct["name"]); echo($currentProduct["name"]);

View file

@ -8,7 +8,7 @@
.billing-panel h3 .billing-panel h3
{ {
/*color: #222;*/ padding-left: 0px;
} }
.billing-panel h4 .billing-panel h4
@ -277,3 +277,13 @@
.billing-details-checkbox { .billing-details-checkbox {
width: auto; width: auto;
} }
#current_plan {
padding-top: 10px;
font-size: 16px;
}
#current_plan span {
color: #ff611f;
font-weight: bold;
}