12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- /**
- * WooCommerce Styles
- * - These styles should be loaded when WooCommerce is active
- */
- /**
- * Abstracts
- * - Functions and config
- */
- @import "../../varia/sass/abstracts/functions";
- /**
- * Shawburn Config
- */
- @import "config-child-theme-deep";
- /**
- * WooCommerce Config
- */
- @import "config-child-theme-woocommerce";
- /**
- * Varia Mixins
- */
- @import "../../varia/sass/abstracts/mixins";
- /**
- * Varia Extends
- */
- @import "../../varia/sass/base/extends";
- /**
- * WooCommerce Styles
- */
- @import "../../varia/sass/vendors/woocommerce/style";
- /**
- * WooCommerce Mobile Menu
- */
- body[class*="woocommerce"] #page .main-navigation #woocommerce-toggle:focus + #toggle-cart,
- body[class*="woocommerce"] #page #toggle-cart {
- background: map-deep-get($config-global, "color", "primary", "default");
- color: map-deep-get($config-global, "color", "background", "default");
- border-radius: 0;
- text-align: center;
- text-decoration: none;
- width: 100%;
- &:active,
- &:focus,
- &:hover {
- background: map-deep-get($config-global, "color", "primary", "hover");
- color: map-deep-get($config-global, "color", "background", "default");
- }
- }
- body[class*="woocommerce"] #page .main-navigation #woocommerce-toggle:checked ~ div {
- border-top: 2px solid map-deep-get($config-global, "color", "background", "default");
- @include media(mobile) {
- border-top: 0;
- }
- }
|