mirror of https://github.com/Squidex/squidex.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
822 B
43 lines
822 B
@import '_mixins';
|
|
@import '_vars';
|
|
|
|
$circle-size-sm: 1.6rem;
|
|
|
|
$circle-size-lg: 2.8rem;
|
|
|
|
.status {
|
|
& {
|
|
background: $color-border;
|
|
border: 0;
|
|
color: $color-dark-foreground;
|
|
display: inline-block;
|
|
text-align: center;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
&.sm {
|
|
@include circle($circle-size-sm);
|
|
font-size: .5 * $circle-size-sm;
|
|
font-weight: normal;
|
|
line-height: $circle-size-sm + .1rem;
|
|
}
|
|
|
|
&.lg {
|
|
@include circle($circle-size-lg);
|
|
font-size: .5 * $circle-size-lg;
|
|
font-weight: normal;
|
|
line-height: $circle-size-lg + .1rem;
|
|
}
|
|
|
|
&-pending {
|
|
color: inherit;
|
|
}
|
|
|
|
&-failed {
|
|
background: $color-theme-error;
|
|
}
|
|
|
|
&-success {
|
|
background: $color-theme-green;
|
|
}
|
|
}
|