2018-05-14 13:41:30 +00:00
|
|
|
/** @format */
|
|
|
|
|
|
|
|
// css resets some wp-admin specific rules so that the app fits better in the extension container
|
|
|
|
|
|
|
|
.woocommerce-page {
|
|
|
|
.wrap {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
2018-05-18 17:31:08 +00:00
|
|
|
#wpcontent,
|
|
|
|
#wpbody-content {
|
2018-05-14 13:41:30 +00:00
|
|
|
padding: 0;
|
2018-05-18 17:31:08 +00:00
|
|
|
overflow-x: hidden !important;
|
2018-05-15 19:26:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
@include breakpoint( '<782px' ) {
|
|
|
|
// WP breakpoint for mobile menu
|
|
|
|
.wp-responsive-open #wpbody {
|
|
|
|
right: -14.5em;
|
|
|
|
}
|
|
|
|
}
|
2018-05-22 19:59:32 +00:00
|
|
|
|
|
|
|
@include breakpoint( '>960px' ) {
|
|
|
|
#toplevel_page_woocommerce.menu-top > a:focus,
|
|
|
|
#toplevel_page_woodash--analytics.menu-top > a:focus {
|
|
|
|
padding-bottom: 1px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.wp-has-current-submenu:after {
|
|
|
|
right: 0;
|
|
|
|
border: 8px solid transparent;
|
|
|
|
content: ' ';
|
|
|
|
height: 0;
|
|
|
|
width: 0;
|
|
|
|
position: absolute;
|
|
|
|
pointer-events: none;
|
|
|
|
border-right-color: #f1f1f1;
|
|
|
|
top: 0;
|
|
|
|
margin-top: 10px;
|
|
|
|
|
|
|
|
@include breakpoint( '<960px' ) {
|
|
|
|
border-width: 4px;
|
|
|
|
margin-top: 14px;
|
|
|
|
}
|
|
|
|
}
|
2018-05-14 13:41:30 +00:00
|
|
|
}
|
|
|
|
|
2018-05-18 17:31:08 +00:00
|
|
|
.woo-dashboard * {
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
|
2018-05-14 13:41:30 +00:00
|
|
|
.woo-dashboard__admin-notice-list-hide {
|
|
|
|
display: none;
|
|
|
|
}
|
2018-05-18 17:31:08 +00:00
|
|
|
|
|
|
|
#wpfooter {
|
|
|
|
display: none;
|
|
|
|
}
|