diff --git a/lms/static/sass/views/_shoppingcart.scss b/lms/static/sass/views/_shoppingcart.scss index 12e9ef5365..4dd566a0a3 100644 --- a/lms/static/sass/views/_shoppingcart.scss +++ b/lms/static/sass/views/_shoppingcart.scss @@ -643,7 +643,7 @@ $light-border: 1px solid $gray-l5; padding: ($baseline/2) 0; width: 50%; - b { + .billing-detail-label { @include margin-right($baseline); @extend %t-copy-sub1; display: inline-block; @@ -651,12 +651,14 @@ $light-border: 1px solid $gray-l5; vertical-align: top; } - label { + .billing-detail-value { @extend %t-copy-sub1; display: inline-block; margin: 0; + cursor: text; width: ($baseline*60); word-wrap: break-word; + color: $gray-d3; font-style: normal; } } diff --git a/lms/templates/shoppingcart/receipt.html b/lms/templates/shoppingcart/receipt.html index fce4e140de..cd251234e4 100644 --- a/lms/templates/shoppingcart/receipt.html +++ b/lms/templates/shoppingcart/receipt.html @@ -107,74 +107,74 @@ from courseware.courses import course_image_url, get_course_about_section, get_c

- ${_('Company Name')}: - +

- ${_('Purchase Order Number')}: - +

- ${_('Company Contact Name')}: - +

- ${_('Company Contact Email')}: - +

- ${_('Recipient Name')}: - +

- ${_('Recipient Email')}: - +

@@ -182,98 +182,98 @@ from courseware.courses import course_image_url, get_course_about_section, get_c

- ${_('Card Type')}: - +

- ${_('Credit Card Number')}: - +

- ${_('Name')}: - +

- ${_('Address 1')}: - +

- ${_('Address 2')}: - +

- ${_('City')}: - +

- ${_('State')}: - +

- ${_('Country')}: - +

diff --git a/lms/templates/shoppingcart/shopping_cart.html b/lms/templates/shoppingcart/shopping_cart.html index 26d3570a93..2d792d1194 100644 --- a/lms/templates/shoppingcart/shopping_cart.html +++ b/lms/templates/shoppingcart/shopping_cart.html @@ -137,7 +137,7 @@ from django.utils.translation import ungettext % endif ${_('TOTAL:')} - ## Translators: currency_symbol l is a symbol indicating type of currency, ex "$". currency_abbr is + ## Translators: currency_symbol is a symbol indicating type of currency, ex "$". currency_abbr is ## an abbreviation for the currency, ex "USD". This string would look like this when all variables are in: ## "$500.00 USD" ${_("{currency_symbol}{price} {currency_abbr}").format(currency_symbol=currency_symbol, price="{0:0.2f}".format(amount), currency_abbr=currency.upper())}