.label {
display: inline-block;
padding: 2px 8px;
font-size: 13px;
font-weight: 500;
border-radius: 16px;
background-color: #202020;
color: #94979e;
&::before {
.m-faBase();
font-weight: 900;
width: 1em;
display: inline-block;
text-align: center;
margin-right: 6px;
}
&.closed {
background-color: rgba(255, 255, 255, 0.1);
color: #cccccc;
&::before {
.m-faContent(@fa-var-lock);
}
}
&.important {
background-color: rgba(255, 87, 34, 0.15);
color: #ff5722;
&::before {
.m-faContent(@fa-var-fire);
}
}
&.resolved {
background-color: rgba(40, 167, 69, 0.15);
color: #28a745;
&::before {
.m-faContent(@fa-var-check);
}
}
&.info {
background-color: rgba(0, 123, 255, 0.15);
color: #007bff;
&::before {
.m-faContent(@fa-var-info);
}
}
&.review {
background-color: rgba(253, 126, 20, 0.15);
color: #fd7e14;
&::before {
.m-faContent(@fa-var-search);
margin-right: 7px;
}
}
&.approved {
background-color: rgba(32, 201, 151, 0.15);
color: #20c997;
&::before {
.m-faContent(@fa-var-thumbs-up);
}
}
&.rejected {
background-color: rgba(220, 53, 69, 0.15);
color: #dc3545;
&::before {
.m-faContent(@fa-var-thumbs-down);
}
}
}
.closed {
background-color: rgba(255, 255, 255, 0.1);
color: #cccccc;
&::before {
.m-faBase();
.m-faContent(@fa-var-lock);
}
}