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.
35 lines
558 B
35 lines
558 B
6 months ago
|
.status-field {
|
||
|
display: flex;
|
||
|
align-items: center;
|
||
|
|
||
|
&::before {
|
||
|
content: '';
|
||
|
display: flex;
|
||
|
width: 10px;
|
||
|
height: 10px;
|
||
|
border-radius: 50%;
|
||
|
flex-shrink: 0;
|
||
|
margin: 0 6px;
|
||
|
}
|
||
|
|
||
|
&.status-normal::before{
|
||
|
background-color: @normal-color;
|
||
|
}
|
||
|
|
||
|
&.status-ing::before{
|
||
|
background-color: @primary-color;
|
||
|
}
|
||
|
|
||
|
&.status-fail::before {
|
||
|
background-color: @error-color;
|
||
|
}
|
||
|
|
||
|
&.status-success::before {
|
||
|
background-color: @success-color;
|
||
|
}
|
||
|
|
||
|
&.status-warning::before {
|
||
|
background-color: @warning-color;
|
||
|
}
|
||
|
}
|