93 lines
1.6 KiB
SCSS
93 lines
1.6 KiB
SCSS
.woocommerce-sectioned-task-list {
|
|
.components-panel {
|
|
width: 100%;
|
|
background: transparent;
|
|
border: 0;
|
|
}
|
|
|
|
.components-panel__body {
|
|
padding-bottom: 0;
|
|
margin-bottom: $gap-smaller;
|
|
background: #fff;
|
|
border: 1px solid $gray-200;
|
|
|
|
&.is-opened {
|
|
padding-bottom: 0;
|
|
}
|
|
|
|
.components-panel__body-title {
|
|
margin-bottom: 0;
|
|
border-bottom: 1px solid #e0e0e0;
|
|
|
|
&:hover {
|
|
border-bottom: 1px solid #e0e0e0;
|
|
}
|
|
|
|
> .components-button {
|
|
font-size: 20px;
|
|
font-weight: 400;
|
|
padding-top: 20px;
|
|
padding-bottom: 20px;
|
|
}
|
|
|
|
.components-panel__arrow {
|
|
right: $gap-large;
|
|
}
|
|
}
|
|
.wooocommerce-task-card__header-container {
|
|
width: 100%;
|
|
border-bottom: none;
|
|
}
|
|
.components-panel__body-toggle {
|
|
box-shadow: none;
|
|
padding-left: $gap-large;
|
|
}
|
|
&.is-opened .components-panel__body-toggle {
|
|
width: 100%;
|
|
padding: 0;
|
|
.components-panel__arrow {
|
|
top: 32px;
|
|
}
|
|
}
|
|
|
|
.woocommerce-experimental-list {
|
|
width: calc(100% + 32px);
|
|
margin: 0 -16px;
|
|
}
|
|
}
|
|
ul li.woocommerce-task-list__item {
|
|
padding-top: $gap;
|
|
padding-bottom: $gap;
|
|
|
|
&.is-disabled {
|
|
pointer-events: none;
|
|
}
|
|
|
|
&:not(.is-complete) .woocommerce-task-list__item-before .woocommerce-task__icon {
|
|
border-color: $gray-300;
|
|
}
|
|
}
|
|
|
|
.woocommerce-task-list__item.is-complete .woocommerce-task__icon {
|
|
background-color: $alert-green;
|
|
}
|
|
|
|
.components-panel__body-title {
|
|
.woocommerce-badge {
|
|
width: 28px;
|
|
height: 28px;
|
|
}
|
|
.woocommerce-task__icon {
|
|
margin-left: $gap;
|
|
background-color: $alert-green;
|
|
border-radius: 50%;
|
|
width: 24px;
|
|
height: 24px;
|
|
svg {
|
|
fill: #fff;
|
|
position: relative;
|
|
}
|
|
}
|
|
}
|
|
}
|