blob: 726cb7ed44d936d7b471e9255d5763c0c41d116e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
@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;
}
}
|