You are here

commerce_checkout.theme.css in Commerce Core 7

Basic styling for the Commerce Checkout module.

File

modules/checkout/theme/commerce_checkout.theme.css
View source
  1. /**
  2. * @file
  3. * Basic styling for the Commerce Checkout module.
  4. */
  5. /**
  6. * Make the cancel/back buttons appear as links.
  7. */
  8. .checkout-buttons .checkout-cancel,
  9. .checkout-buttons .checkout-back {
  10. border: 0;
  11. background: none;
  12. color: #0071B3;
  13. padding: 4px 6px;
  14. }
  15. .checkout-buttons .checkout-cancel:focus,
  16. .checkout-buttons .checkout-back:focus,
  17. .checkout-buttons .checkout-cancel:hover,
  18. .checkout-buttons .checkout-back:hover {
  19. background: none;
  20. color: #018fe2;
  21. text-decoration: underline;
  22. }
  23. /**
  24. * Tweak review page layout.
  25. */
  26. table.checkout-review .pane-title td {
  27. padding-left: 1em; /* LTR */
  28. font-weight: bold;
  29. }
  30. table.checkout-review tr.pane-data {
  31. vertical-align: top;
  32. }
  33. table.checkout-review .pane-data-key {
  34. font-weight: bold;
  35. text-align: right; /* LTR */
  36. white-space: nowrap;
  37. padding-left: 3em; /* LTR */
  38. width: 50%;
  39. }
  40. table.checkout-review .pane-data-value {
  41. padding-right: 3em; /* LTR */
  42. }
  43. table.checkout-review .pane-data-full {
  44. padding-left: 1em;
  45. padding-right: 1em;
  46. }