2020-05-20 22:15:18 +00:00
|
|
|
// Set up some local color variables to make the CSS more clear
|
2020-07-17 00:11:42 +00:00
|
|
|
$outer-border: $gray-200;
|
|
|
|
$promo-actions-border-top: $gray-100;
|
|
|
|
$promo-actions-border-bottom: $gray-100;
|
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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.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-06-18 23:44:00 +00:00
|
|
|
padding-right: $gap-large;
|
|
|
|
padding-left: $gap-large;
|
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;
|
|
|
|
}
|
|
|
|
|
2020-07-17 00:11:42 +00:00
|
|
|
.woocommerce-summary__item-container:nth-last-of-type(1)
|
|
|
|
.woocommerce-summary__item {
|
2020-05-20 22:15:18 +00:00
|
|
|
border-bottom: none;
|
|
|
|
}
|
|
|
|
|
2020-07-17 00:11:42 +00:00
|
|
|
&.is-even
|
|
|
|
.woocommerce-summary__item-container:nth-last-of-type(2)
|
|
|
|
.woocommerce-summary__item {
|
2020-05-20 22:15:18 +00:00
|
|
|
border-bottom: none;
|
|
|
|
}
|
|
|
|
|
2020-07-17 00:11:42 +00:00
|
|
|
.woocommerce-summary__item-container:nth-of-type(even)
|
|
|
|
.woocommerce-summary__item {
|
2020-05-20 22:15:18 +00:00
|
|
|
border-right: none;
|
|
|
|
}
|
2020-06-10 01:55:06 +00:00
|
|
|
|
|
|
|
.woocommerce-summary__item {
|
|
|
|
background-color: $studio-white;
|
|
|
|
|
|
|
|
&:hover {
|
2020-07-17 00:11:42 +00:00
|
|
|
background-color: $gray-100;
|
2020-06-10 01:55:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
&:active {
|
2020-07-17 00:11:42 +00:00
|
|
|
background-color: $gray-100;
|
2020-06-10 01:55:06 +00:00
|
|
|
}
|
|
|
|
}
|
2020-05-20 22:15:18 +00:00
|
|
|
}
|
2020-05-27 02:38:57 +00:00
|
|
|
|
|
|
|
article.woocommerce-stats-overview__install-jetpack-promo {
|
2020-06-18 23:44:00 +00:00
|
|
|
.woocommerce-stats-overview__install-jetpack-promo__content {
|
|
|
|
padding: $gap $gap-large;
|
|
|
|
}
|
|
|
|
|
|
|
|
h2 {
|
2020-07-17 00:11:42 +00:00
|
|
|
color: $gray-900;
|
2020-06-18 23:44:00 +00:00
|
|
|
@include font-size( 16 );
|
|
|
|
font-style: normal;
|
|
|
|
line-height: 1.5;
|
|
|
|
font-weight: normal;
|
|
|
|
margin: $gap-smaller 0;
|
2020-05-27 02:38:57 +00:00
|
|
|
}
|
|
|
|
p {
|
2020-07-17 00:11:42 +00:00
|
|
|
color: $gray-700;
|
2020-06-18 23:44:00 +00:00
|
|
|
font-style: normal;
|
|
|
|
font-weight: normal;
|
|
|
|
@include font-size( 14 );
|
|
|
|
line-height: 20px;
|
|
|
|
margin: $gap-smaller 0;
|
2020-05-27 02:38:57 +00:00
|
|
|
}
|
|
|
|
footer {
|
2020-06-18 23:44:00 +00:00
|
|
|
padding: $gap $gap-large;
|
2020-06-16 06:47:49 +00:00
|
|
|
border-top: 1px solid $promo-actions-border-top;
|
|
|
|
border-bottom: 1px solid $promo-actions-border-bottom;
|
2020-05-27 02:38:57 +00:00
|
|
|
|
2020-06-18 23:44:00 +00:00
|
|
|
button {
|
|
|
|
margin-left: $gap-smaller;
|
2020-05-27 02:38:57 +00:00
|
|
|
|
2020-06-18 23:44:00 +00:00
|
|
|
&:first-child {
|
|
|
|
margin-left: 0;
|
|
|
|
}
|
2020-05-27 02:38:57 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|