2020-10-13 01:40:53 +00:00
|
|
|
.woocommerce-navigation {
|
2021-02-08 20:41:08 +00:00
|
|
|
display: grid;
|
|
|
|
grid-template-rows: min-content 1fr;
|
|
|
|
height: 100%;
|
|
|
|
|
2021-02-12 16:51:02 +00:00
|
|
|
h2 > span {
|
|
|
|
width: 100%;
|
2020-10-13 01:40:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.components-navigation__menu {
|
2021-02-08 20:41:08 +00:00
|
|
|
overflow-y: auto;
|
|
|
|
margin-bottom: 0;
|
|
|
|
padding-bottom: $gap-large;
|
2020-10-13 01:40:53 +00:00
|
|
|
}
|
|
|
|
|
2020-10-14 18:48:21 +00:00
|
|
|
.components-navigation__group + .components-navigation__group {
|
|
|
|
margin-top: 24px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.components-navigation__item {
|
|
|
|
margin-bottom: 0;
|
2021-02-09 01:39:03 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* <-------- Start Temporary Code -------->
|
|
|
|
*
|
|
|
|
* A change to Gutenberg base Navigation component in version 9.8.3
|
|
|
|
* requires these overrides. As of this comment, the problematic code
|
|
|
|
* was published to .org but not shipped as part of WP 5.7.
|
|
|
|
*
|
|
|
|
* A fix in Gutenberg is https://github.com/WordPress/gutenberg/pull/28619
|
|
|
|
*
|
|
|
|
* Criteria for removal
|
|
|
|
* 1. https://github.com/WordPress/gutenberg/pull/28619 is merged and deployed to .org
|
|
|
|
* 2. https://github.com/WordPress/gutenberg/pull/28619 is included in the Gutenberg version associated with WP 5.7
|
|
|
|
* 3. If not part of WP 5.7, this code will be required until WP 6.0 is released and WC Admin no longer supports 5.7
|
|
|
|
*/
|
|
|
|
a.components-button {
|
|
|
|
padding: 6px 16px;
|
|
|
|
}
|
|
|
|
&:not(:hover) {
|
|
|
|
a.components-button {
|
|
|
|
// ${ G2.lightGray.ui };
|
|
|
|
color: #949494;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
&.is-active {
|
|
|
|
a.components-button {
|
|
|
|
// ${ UI.textDark };
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
* <-------- End Temporary Code -------->
|
|
|
|
*/
|
2020-10-13 01:40:53 +00:00
|
|
|
}
|
|
|
|
|
2021-02-08 20:41:08 +00:00
|
|
|
.components-navigation {
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.components-navigation > div {
|
|
|
|
height: 100%;
|
|
|
|
display: grid;
|
|
|
|
grid-template-rows: 1fr min-content;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.is-root {
|
|
|
|
.components-navigation__menu-secondary {
|
2021-02-22 01:04:14 +00:00
|
|
|
border-top: 1px solid $studio-gray-80;
|
2021-02-08 20:41:08 +00:00
|
|
|
margin: 0 -#{$gap-smaller};
|
2021-02-22 01:04:14 +00:00
|
|
|
padding: $gap $gap-smaller $gap-small $gap-smaller;
|
2021-02-08 20:41:08 +00:00
|
|
|
}
|
2020-10-13 01:40:53 +00:00
|
|
|
}
|
|
|
|
}
|