2019-02-19 21:07:19 +00:00
|
|
|
/** @format */
|
2019-02-21 01:13:54 +00:00
|
|
|
@mixin store-alerts-box-shadow( $color ) {
|
|
|
|
box-shadow: 0 0 8px -2px rgba(0, 0, 0, 0.3), inset 4px 0 0 0 $color;
|
|
|
|
}
|
2019-02-19 21:07:19 +00:00
|
|
|
|
|
|
|
.woocommerce-store-alerts {
|
2019-02-21 01:13:54 +00:00
|
|
|
margin-right: $gutter-large;
|
2019-02-19 21:07:19 +00:00
|
|
|
margin-right: var(--large-gap);
|
2019-02-21 01:13:54 +00:00
|
|
|
padding: $gap-large;
|
2019-02-19 21:07:19 +00:00
|
|
|
border: 0;
|
|
|
|
|
|
|
|
.woocommerce-card__header {
|
|
|
|
padding: 0;
|
|
|
|
border: 0;
|
|
|
|
margin-bottom: 12px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.woocommerce-card__title {
|
|
|
|
display: inline-flex;
|
|
|
|
|
|
|
|
svg {
|
|
|
|
margin-right: 6px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.woocommerce-card__body {
|
|
|
|
padding: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.is-alert-emergency {
|
2019-02-21 01:13:54 +00:00
|
|
|
$alert-color: #dc3232;
|
|
|
|
@include store-alerts-box-shadow( $alert-color );
|
2019-02-19 21:07:19 +00:00
|
|
|
|
|
|
|
.woocommerce-card__title {
|
|
|
|
svg {
|
2019-02-21 01:13:54 +00:00
|
|
|
color: $alert-color;
|
2019-02-19 21:07:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.is-alert-alert {
|
2019-02-21 01:13:54 +00:00
|
|
|
$alert-color: #11a0d2;
|
|
|
|
@include store-alerts-box-shadow( $alert-color );
|
2019-02-19 21:07:19 +00:00
|
|
|
|
|
|
|
.woocommerce-card__title {
|
|
|
|
svg {
|
2019-02-21 01:13:54 +00:00
|
|
|
color: $alert-color;
|
2019-02-19 21:07:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.is-alert-critical {
|
2019-02-21 01:13:54 +00:00
|
|
|
$alert-color: #ffb900;
|
|
|
|
@include store-alerts-box-shadow( $alert-color );
|
2019-02-19 21:07:19 +00:00
|
|
|
|
|
|
|
.woocommerce-card__title {
|
|
|
|
svg {
|
2019-02-21 01:13:54 +00:00
|
|
|
color: $alert-color;
|
2019-02-19 21:07:19 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.woocommerce-store-alerts__message {
|
2019-02-21 01:13:54 +00:00
|
|
|
margin-bottom: 16px;
|
2019-02-19 21:07:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.woocommerce-store-alerts__pagination {
|
|
|
|
display: inline-flex;
|
|
|
|
align-items: center;
|
|
|
|
border: 1px solid $button-border;
|
|
|
|
border-bottom: 2px solid $button-border;
|
|
|
|
border-radius: 4px;
|
|
|
|
background: $button;
|
|
|
|
|
|
|
|
.components-button {
|
|
|
|
padding: 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.woocommerce-store-alerts__pagination-label {
|
|
|
|
padding: 5px 12px;
|
|
|
|
border-width: 0 1px;
|
|
|
|
border-color: $button-border;
|
|
|
|
border-style: solid;
|
|
|
|
}
|
|
|
|
}
|