| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- /**
- * StudioU WC Mandatory Products Frontend Styles
- */
- /* Mandatory products info on product page */
- .mandatory-products-info {
- margin: 1.5em 0;
- padding: 1em;
- background-color: #f7f7f7;
- border-left: 4px solid #2271b1;
- box-shadow: 0 1px 1px rgba(0,0,0,.05);
- }
- .mandatory-products-info h4 {
- margin-top: 0;
- font-size: 1.1em;
- font-weight: 600;
- color: #333;
- }
- .mandatory-products-info ul {
- margin-left: 1.5em;
- padding-left: 0;
- }
- .mandatory-products-info li {
- margin-bottom: 0.5em;
- }
- /* Cart item mandatory product */
- .cart_item .product-name .variation dt.variation-MandatoryItem {
- font-weight: 600;
- color: #2271b1;
- }
- /* Lock icon for mandatory products */
- .mandatory-product-info {
- display: inline-block;
- vertical-align: middle;
- color: #999;
- cursor: help;
- }
- .mandatory-product-info .dashicons {
- width: 16px;
- height: 16px;
- font-size: 16px;
- }
- /* Readonly quantity field styling */
- .cart_item .quantity input[readonly] {
- background-color: #f9f9f9;
- border-color: #ddd;
- color: #666;
- cursor: not-allowed;
- }
|