2018-05-25 19:34:35 +00:00
|
|
|
/** @format */
|
|
|
|
|
2018-06-01 14:35:18 +00:00
|
|
|
.woocommerce-activity-card {
|
2018-07-16 13:53:38 +00:00
|
|
|
position: relative;
|
2018-09-11 07:27:13 +00:00
|
|
|
padding: $fallback-gutter;
|
2018-07-16 13:53:38 +00:00
|
|
|
padding: $gutter;
|
2018-05-25 19:34:35 +00:00
|
|
|
background: $white;
|
2018-07-16 13:53:38 +00:00
|
|
|
border-bottom: 1px solid $core-grey-light-400;
|
|
|
|
color: $gray-text;
|
|
|
|
@include font-size( 13 );
|
|
|
|
display: grid;
|
|
|
|
grid-template-columns: 84px 1fr;
|
|
|
|
grid-template-areas:
|
|
|
|
'icon header'
|
|
|
|
'icon body'
|
|
|
|
'icon actions';
|
|
|
|
|
|
|
|
@include breakpoint( '<782px' ) {
|
|
|
|
grid-template-columns: 76px 1fr;
|
|
|
|
}
|
2018-05-25 19:34:35 +00:00
|
|
|
}
|
|
|
|
|
2018-07-16 13:53:38 +00:00
|
|
|
.woocommerce-activity-card__unread {
|
|
|
|
position: absolute;
|
2018-09-11 07:27:13 +00:00
|
|
|
top: calc(#{ $fallback-gutter } - 6px);
|
2018-07-16 13:53:38 +00:00
|
|
|
top: calc(#{ $gutter } - 6px);
|
2018-09-11 07:27:13 +00:00
|
|
|
right: calc(#{ $fallback-gutter } - 6px);
|
2018-07-16 13:53:38 +00:00
|
|
|
right: calc(#{ $gutter } - 6px);
|
|
|
|
width: 6px;
|
|
|
|
height: 6px;
|
|
|
|
border-radius: 50%;
|
|
|
|
background: $core-orange;
|
|
|
|
}
|
2018-05-25 19:34:35 +00:00
|
|
|
|
2018-07-16 13:53:38 +00:00
|
|
|
.woocommerce-activity-card__icon {
|
|
|
|
grid-area: icon;
|
|
|
|
fill: $core-grey-light-600;
|
2018-07-26 18:52:25 +00:00
|
|
|
|
|
|
|
@include breakpoint( '<782px' ) {
|
|
|
|
.gridicon,
|
|
|
|
img {
|
|
|
|
height: 24px;
|
|
|
|
width: 24px;
|
|
|
|
margin-left: $gap-small;
|
|
|
|
}
|
|
|
|
}
|
2018-07-16 13:53:38 +00:00
|
|
|
}
|
2018-05-25 19:34:35 +00:00
|
|
|
|
2018-07-16 13:53:38 +00:00
|
|
|
.woocommerce-activity-card__header {
|
|
|
|
margin-bottom: $gap;
|
2018-07-26 18:52:25 +00:00
|
|
|
display: flex;
|
2018-08-01 12:21:51 +00:00
|
|
|
flex-direction: column;
|
|
|
|
|
|
|
|
a {
|
|
|
|
color: $woocommerce;
|
|
|
|
text-decoration: none;
|
|
|
|
}
|
2018-05-25 19:34:35 +00:00
|
|
|
|
2018-07-16 13:53:38 +00:00
|
|
|
.woocommerce-activity-card__title {
|
2018-05-25 19:34:35 +00:00
|
|
|
margin: 0;
|
2018-07-16 13:53:38 +00:00
|
|
|
@include font-size( 13 );
|
2018-08-01 12:21:51 +00:00
|
|
|
order: 2;
|
2018-05-25 19:34:35 +00:00
|
|
|
}
|
|
|
|
|
2018-06-01 14:35:18 +00:00
|
|
|
.woocommerce-activity-card__date {
|
2018-07-16 13:53:38 +00:00
|
|
|
color: $core-grey-dark-300;
|
|
|
|
text-transform: uppercase;
|
|
|
|
@include font-size( 11 );
|
2018-07-26 18:52:25 +00:00
|
|
|
margin-bottom: $gap-small;
|
2018-08-01 12:21:51 +00:00
|
|
|
order: 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
.woocommerce-activity-card__subtitle {
|
|
|
|
order: 3;
|
2018-05-25 19:34:35 +00:00
|
|
|
}
|
|
|
|
|
2018-07-26 18:52:25 +00:00
|
|
|
@include breakpoint( '>782px' ) {
|
|
|
|
grid-area: header;
|
|
|
|
display: grid;
|
2018-09-14 07:19:36 +00:00
|
|
|
grid-template:
|
2018-07-26 18:52:25 +00:00
|
|
|
'title date'
|
2018-09-14 07:19:36 +00:00
|
|
|
'subtitle date' /
|
|
|
|
1fr auto;
|
2018-07-26 18:52:25 +00:00
|
|
|
|
|
|
|
.woocommerce-activity-card__title {
|
|
|
|
grid-area: title;
|
|
|
|
}
|
|
|
|
|
|
|
|
.woocommerce-activity-card__date {
|
2018-09-14 07:19:36 +00:00
|
|
|
display: block;
|
2018-07-26 18:52:25 +00:00
|
|
|
grid-area: date;
|
|
|
|
justify-self: end;
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.woocommerce-activity-card__subtitle {
|
|
|
|
grid-area: subtitle;
|
|
|
|
}
|
2018-05-25 19:34:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-06-01 14:35:18 +00:00
|
|
|
.woocommerce-activity-card__body {
|
2018-07-16 13:53:38 +00:00
|
|
|
grid-area: body;
|
2018-05-25 19:34:35 +00:00
|
|
|
}
|
|
|
|
|
2018-06-01 14:35:18 +00:00
|
|
|
.woocommerce-activity-card__actions {
|
2018-07-16 13:53:38 +00:00
|
|
|
grid-area: actions;
|
|
|
|
margin-top: $gap;
|
2018-05-25 19:34:35 +00:00
|
|
|
|
|
|
|
// Ensures any immediate child with a sibling has space between the items
|
|
|
|
& > * + * {
|
|
|
|
margin-left: 0.5em;
|
|
|
|
}
|
|
|
|
}
|
2018-07-20 18:41:39 +00:00
|
|
|
|
|
|
|
.woocommerce-activity-card.is-loading {
|
|
|
|
.is-placeholder {
|
|
|
|
@include placeholder();
|
|
|
|
display: inline-block;
|
|
|
|
height: 16px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.woocommerce-activity-card__title {
|
|
|
|
width: 80%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.woocommerce-activity-card__subtitle {
|
|
|
|
margin-top: $gap-smallest;
|
|
|
|
}
|
|
|
|
|
|
|
|
.woocommerce-activity-card__date {
|
|
|
|
width: 100%;
|
2018-07-26 18:52:25 +00:00
|
|
|
margin-bottom: $gap;
|
|
|
|
|
|
|
|
@include breakpoint( '>782px' ) {
|
|
|
|
text-align: right;
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
2018-07-20 18:41:39 +00:00
|
|
|
|
|
|
|
.is-placeholder {
|
|
|
|
// Fixed width for a fake date
|
|
|
|
width: 68px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.woocommerce-activity-card__icon {
|
2018-09-11 07:27:13 +00:00
|
|
|
margin-right: $fallback-gutter;
|
2018-07-20 18:41:39 +00:00
|
|
|
margin-right: $gutter;
|
|
|
|
|
|
|
|
.is-placeholder {
|
|
|
|
height: 48px;
|
|
|
|
width: 48px;
|
|
|
|
}
|
2018-07-26 18:52:25 +00:00
|
|
|
|
|
|
|
@include breakpoint( '<782px' ) {
|
|
|
|
.gridicon,
|
|
|
|
img,
|
|
|
|
.is-placeholder {
|
|
|
|
height: 24px;
|
|
|
|
width: 24px;
|
|
|
|
margin-left: $gap-small;
|
|
|
|
}
|
|
|
|
}
|
2018-07-20 18:41:39 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.woocommerce-activity-card__body .is-placeholder {
|
|
|
|
width: 100%;
|
|
|
|
margin-bottom: $gap-smallest;
|
|
|
|
|
|
|
|
&:last-of-type {
|
|
|
|
width: 65%;
|
|
|
|
margin-bottom: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.woocommerce-activity-card__actions {
|
|
|
|
.is-placeholder {
|
|
|
|
width: 91px;
|
|
|
|
height: 34px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|