ezservermonitor-web/web/css/libs/_labels.scss

25 lines
545 B
SCSS

@import "compass";
span.label {
padding: 1px 3px 2px;
font-size: $label-font-size;
font-weight: bold;
color: #fff;
text-transform: uppercase;
white-space: nowrap;
background-color: $label-default;
@include border-radius($label-border-radius);
&.success {
background-color: $label-success;
}
&.warning {
background-color: $label-warning;
}
&.important, &.error {
background-color: $label-important;
}
&.notice {
background-color: $label-notice;
}
}