2020-05-20 22:15:18 +00:00
|
|
|
// Set up some local color variables to make the CSS more clear
|
|
|
|
$outer-border: $core-grey-light-700;
|
2020-05-27 02:38:57 +00:00
|
|
|
$promo-actions-border: $core-grey-light-500;
|
2020-05-20 22:15:18 +00:00
|
|
|
|
2020-05-14 03:23:03 +00:00
|
|
|
.woocommerce-stats-overview {
|
|
|
|
.woocommerce-card__body {
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
.woocommerce-summary {
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-20 22:15:18 +00:00
|
|
|
.woocommerce-stats-overview__footer {
|
|
|
|
border-top: 1px solid $outer-border;
|
|
|
|
}
|
|
|
|
|
2020-05-14 03:23:03 +00:00
|
|
|
.woocommerce-stats-overview__more-btn {
|
|
|
|
display: inline-block;
|
|
|
|
padding: $gap;
|
|
|
|
}
|
|
|
|
|
|
|
|
.woocommerce-stats-overview__tabs {
|
|
|
|
.components-tab-panel__tabs {
|
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
2020-05-20 22:15:18 +00:00
|
|
|
border-bottom: 1px solid $outer-border;
|
2020-05-14 03:23:03 +00:00
|
|
|
|
2020-05-27 02:38:57 +00:00
|
|
|
.components-button {
|
|
|
|
width: 33.33%;
|
2020-05-14 03:23:03 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-05-20 22:15:18 +00:00
|
|
|
|
|
|
|
.woocommerce-stats-overview__stats {
|
|
|
|
margin: 0;
|
|
|
|
|
|
|
|
.woocommerce-summary__item-container {
|
|
|
|
width: 50%;
|
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
|
|
|
|
.woocommerce-summary__item-container:nth-last-of-type(1) .woocommerce-summary__item {
|
|
|
|
border-bottom: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.is-even .woocommerce-summary__item-container:nth-last-of-type(2) .woocommerce-summary__item {
|
|
|
|
border-bottom: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.woocommerce-summary__item-container:nth-of-type(even) .woocommerce-summary__item {
|
|
|
|
border-right: none;
|
|
|
|
}
|
2020-06-10 01:55:06 +00:00
|
|
|
|
|
|
|
.woocommerce-summary__item {
|
|
|
|
background-color: $studio-white;
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
background-color: $light-gray-100;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:active {
|
|
|
|
background-color: $light-gray-200;
|
|
|
|
}
|
|
|
|
}
|
2020-05-20 22:15:18 +00:00
|
|
|
}
|
2020-05-27 02:38:57 +00:00
|
|
|
|
|
|
|
article.woocommerce-stats-overview__install-jetpack-promo {
|
|
|
|
h3 {
|
|
|
|
margin: 16px 24px 8px;
|
|
|
|
}
|
|
|
|
p {
|
|
|
|
margin: 0 24px 16px;
|
|
|
|
}
|
|
|
|
footer {
|
|
|
|
border-top: 1px solid $promo-actions-border;
|
|
|
|
|
2020-06-11 19:22:20 +00:00
|
|
|
.components-button {
|
2020-05-27 02:38:57 +00:00
|
|
|
margin: 16px 4px;
|
|
|
|
|
|
|
|
&.is-busy {
|
2020-06-15 02:00:25 +00:00
|
|
|
background-image: linear-gradient(-45deg, color($theme-color tint(40%)) 28%, #fff 0, #fff 72%, color($theme-color tint(40%)) 0);
|
2020-05-27 02:38:57 +00:00
|
|
|
cursor: progress;
|
2020-06-15 02:00:25 +00:00
|
|
|
color: color($theme-color tint(20%));
|
2020-05-27 02:38:57 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.woocommerce-layout & button.components-button.is-button.is-primary {
|
|
|
|
margin-left: 24px;
|
|
|
|
background: transparent;
|
2020-06-10 01:55:06 +00:00
|
|
|
border: 1px solid $theme-color;
|
2020-05-27 02:38:57 +00:00
|
|
|
|
|
|
|
&:hover,
|
|
|
|
&:focus {
|
|
|
|
color: $core-grey-dark-500;
|
|
|
|
background-color: #fafafa;
|
|
|
|
border-color: #999;
|
|
|
|
}
|
|
|
|
|
|
|
|
&.is-busy:not(:disabled) {
|
2020-06-15 02:00:25 +00:00
|
|
|
background-image: linear-gradient(-45deg, $theme-color 28%, color($theme-color shade(20%)) 0, color($theme-color shade(20%)) 72%, $theme-color 0) !important;
|
2020-06-10 01:55:06 +00:00
|
|
|
color: $theme-color;
|
2020-05-27 02:38:57 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|