Advertisement
moggiex

Magento Ultimo Theme Checkout Alterations

Oct 10th, 2014
253
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 1.50 KB | None | 0 0
  1. /*
  2.  * Cart Buttons
  3.  * ---------------------------
  4.  * Note: These override the standard button colours
  5. */
  6.  
  7. /* Cart - "Continue button" */
  8. #shopping-cart-table button.button.btn-continue.btn-inline {
  9.     background-color: #A3A3A3;
  10. }
  11. /* Cart - "Continue button" when Hovered on! */
  12. #shopping-cart-table button.button.btn-continue.btn-inline:hover {
  13.     background-color: #ED1495;
  14. }
  15.  
  16.  
  17. /* Cart - "Update Shopping Cart" button */
  18. #shopping-cart-table button.button.btn-update.btn-inline {
  19.     background-color: #A3A3A3;
  20. }
  21. /* Cart - "Update Shopping Cart" when Hovered on! */
  22. #shopping-cart-table button.button.btn-update.btn-inline:hover {
  23.     background-color: #ED1495;
  24. }
  25.  
  26.  
  27. /* Cart - "Get a Quote" button */
  28. #shipping-zip-form button {
  29.     background-color: #A3A3A3;
  30. }
  31. /* Cart - "Get a Quote" when Hovered on! */
  32. #shipping-zip-form button:hover {
  33.     background-color: #ED1495;
  34. }
  35.  
  36.  
  37. /* Cart - "Apply Coupon" button */
  38. #discount-coupon-form button {
  39.     background-color: #A3A3A3;
  40. }
  41. /* Cart - "Apply Coupon" when Hovered on! */
  42. #discount-coupon-form button:hover {
  43.     background-color: #ED1495;
  44. }
  45.  
  46. /*
  47.  * "Proceed to Checkout" Button
  48.  * ---------------------------
  49.  * Note:  Only edit these if you really MUST change the checkout button color!
  50. */
  51.  
  52. /* Cart - Proceed to Checkout button */
  53. .checkout-cart-index button.btn-checkout {
  54.     /* background-color: #3ec2df; */
  55. }
  56. /* Cart - Proceed to Checkout button when Hovered on! */
  57. .checkout-cart-index button.btn-checkout:hover {
  58.     /* background-color: #ff0000; */
  59. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement