12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- /**
- * Redefine Sass map values for child theme WooCommerce output.
- */
- $config-woocommerce: (
- /* Wrapper Width - accepts full, wide, or defuault */
- "wrapper-width": wide,
- /* Tables */
- "table": (
- /* Borders */
- "border": (
- "color": map-deep-get($config-global, "color", "border", "default"),
- "radius": 0,
- "width": 1px,
- ),
- "padding": map-deep-get($config-global, "spacing", "unit"),
- ),
- /* Tabs */
- "tabs": (
- /* Borders */
- "border": (
- "color": map-deep-get($config-global, "color", "border", "default"),
- "radius": 10px,
- "width": 1px,
- ),
- "padding": map-deep-get($config-global, "spacing", "horizontal"),
- ),
- /* Mini cart */
- "mini-cart": (
- /* Color */
- "color": (
- "background": map-deep-get($config-global, "color", "primary", "default"),
- "border": map-deep-get($config-global, "color", "background", "default"),
- "text": map-deep-get($config-global, "color", "background", "default"),
- "subtotal": map-deep-get($config-global, "color", "foreground", "default"),
- "count": map-deep-get($config-global, "color", "foreground", "light"),
- ),
- /* Button */
- "button": (
- "color": map-deep-get($config-global, "color", "primary", "default"),
- "background-color": map-deep-get($config-global, "color", "background", "default"),
- ),
- "width": #{25 * map-deep-get($config-global, "spacing", "unit")},
- ),
- /* Star Rating */
- "star-rating": (
- /* Color */
- "color": map-deep-get($config-global, "color", "alert", "warning"),
- ),
- );
|