woocommerce/plugins/woocommerce-admin/client/layout/store-alerts/style.scss

87 lines
1.4 KiB
SCSS
Raw Normal View History

2019-02-19 21:07:19 +00:00
/** @format */
@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 {
margin-right: $gutter-large;
2019-02-19 21:07:19 +00:00
margin-right: var(--large-gap);
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 {
$alert-color: #dc3232;
@include store-alerts-box-shadow( $alert-color );
2019-02-19 21:07:19 +00:00
.woocommerce-card__title {
svg {
color: $alert-color;
2019-02-19 21:07:19 +00:00
}
}
}
.is-alert-alert {
$alert-color: #11a0d2;
@include store-alerts-box-shadow( $alert-color );
2019-02-19 21:07:19 +00:00
.woocommerce-card__title {
svg {
color: $alert-color;
2019-02-19 21:07:19 +00:00
}
}
}
.is-alert-critical {
$alert-color: #ffb900;
@include store-alerts-box-shadow( $alert-color );
2019-02-19 21:07:19 +00:00
.woocommerce-card__title {
svg {
color: $alert-color;
2019-02-19 21:07:19 +00:00
}
}
}
.woocommerce-store-alerts__message {
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;
}
}