woocommerce/plugins/woocommerce-admin/client/homescreen/activity-panel/style.scss

127 lines
2.0 KiB
SCSS
Raw Normal View History

.woocommerce-activity-panel {
background: transparent;
border: 0;
.components-panel__body {
background: #fff;
border: 1px solid $gray-200;
&.is-opened {
margin-bottom: $gap-large;
.components-panel__body-toggle {
border-bottom: 1px solid $gray-200;
}
}
}
&.components-panel > .components-panel__body:last-child {
border-bottom: 1px solid $gray-200;
}
.components-panel__row {
margin: 0 -#{$gap} -#{$gap} -#{$gap};
> div {
width: 100%;
}
}
.components-panel__body-toggle {
border-radius: 0;
&:disabled {
opacity: 1;
}
}
.woocommerce-activity-panel {
margin-bottom: $gap-large;
}
.components-panel__body-title p {
margin-right: $gap;
}
.woocommerce-activity-card {
padding: $gap-largest/2 $gutter $gutter;
&:not(:last-of-type) {
border-bottom: 1px solid $gray-200;
}
&__header {
Migrate Stock Panel to Homescreen (https://github.com/woocommerce/woocommerce-admin/pull/5729) * Refactor low stock variable to be the count instead of a boolean. * Add initial render of the Stock panel on the homescreen. * Move existing Stock panel to homescreen accordion. * Ensure int value for low stock product count. * Update ProductImage styling. * Update stock activity car styles. * Only show 5 low stock products. * Add "undo" action to the stock updated snackbar. * Fix check for explicit notice dismissal when taking actions. * Hide now-in-stock products after updating. By cllearing "edited" flag on successful update. * Fetch more products after updating stock. * Fix the number of product placeholders shown. * Only show products placeholders on the initial fetch. * Fix placeholder style. * Fetch low stock count dynamically. * Let initialOpen prop toggle Accordion panels if they haven't been toggled by the user. * Refactor item total count state. Allows for auto-updating item totals whenever identical queries (from a totals perspective) are issued. * Add last order date to low stock products API response. * Allow non-date strings in ActivityCard date prop. * Add last order date to stock panel cards. * Remove empty stock panel view. * Add test file for StockPanel. * Only request necessary fields from products endpoint. * Add test for products fetch after stock update. * Fix field name. * Add test for last order date in low stock products API response. * Stock panel should be initially closed. * Skip updating a product if the quantity is unchanged.
2020-11-25 18:51:15 +00:00
margin-bottom: $gap-small;
}
}
.woocommerce-empty-activity-card {
margin: 0;
background: unset;
text-align: center;
padding: $gap-large $gutter $gap-smallest;
h4 {
color: $gray-900;
}
}
.woocommerce-layout__activity-panel-outbound-link {
display: flex;
justify-content: space-between;
align-items: center;
height: 50px;
border-bottom: 1px solid $gray-100;
padding: $gap $fallback-gutter;
padding: $gap $gutter;
font-size: 13px;
font-weight: 500;
line-height: 18px;
margin: 0;
text-decoration: none;
.gridicon {
display: none;
}
&:hover {
background-color: $gray-100;
}
&:active {
background-color: $gray-100;
}
&:focus {
background-color: $gray-100;
box-shadow: inset 0 0 0 1px $box-shadow-blue,
inset 0 0 0 2px $gray-100;
}
&:hover,
&:focus {
.gridicon {
display: initial;
}
}
&:active {
.gridicon {
display: initial;
}
}
}
.woocommerce-layout__activity-panel-empty {
border-top: 1px solid $gray-200;
border-bottom: 0;
}
.woocommerce-activity-card__button {
&:focus {
box-shadow: unset;
outline: unset;
border: 1px solid $gray-200;
}
}
}