frontend.css 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. /**
  2. * StudioU WC Mandatory Products Frontend Styles
  3. */
  4. /* Mandatory products info on product page */
  5. .mandatory-products-info {
  6. margin: 1.5em 0;
  7. padding: 1em;
  8. background-color: #f7f7f7;
  9. border-left: 4px solid #2271b1;
  10. box-shadow: 0 1px 1px rgba(0,0,0,.05);
  11. }
  12. .mandatory-products-info h4 {
  13. margin-top: 0;
  14. font-size: 1.1em;
  15. font-weight: 600;
  16. color: #333;
  17. }
  18. .mandatory-products-info ul {
  19. margin-left: 1.5em;
  20. padding-left: 0;
  21. }
  22. .mandatory-products-info li {
  23. margin-bottom: 0.5em;
  24. }
  25. /* Cart item mandatory product */
  26. .cart_item .product-name .variation dt.variation-MandatoryItem {
  27. font-weight: 600;
  28. color: #2271b1;
  29. }
  30. /* Lock icon for mandatory products */
  31. .mandatory-product-info {
  32. display: inline-block;
  33. vertical-align: middle;
  34. color: #999;
  35. cursor: help;
  36. }
  37. .mandatory-product-info .dashicons {
  38. width: 16px;
  39. height: 16px;
  40. font-size: 16px;
  41. }
  42. /* Readonly quantity field styling */
  43. .cart_item .quantity input[readonly] {
  44. background-color: #f9f9f9;
  45. border-color: #ddd;
  46. color: #666;
  47. cursor: not-allowed;
  48. }