bootstrap/less/labels.less

21 lines
485 B
Plaintext
Raw Normal View History

// LABELS
// ------
.label {
2012-02-05 10:01:28 +00:00
padding: 2px 4px 3px;
font-size: @baseFontSize * .85;
font-weight: bold;
color: @white;
2012-02-05 10:01:28 +00:00
text-shadow: 0 -1px 0 rgba(0,0,0,.25);
background-color: @grayLight;
.border-radius(3px);
}
.label-important { background-color: @errorText; }
.label-warning { background-color: @orange; }
.label-success { background-color: @successText; }
.label-info { background-color: @infoText; }
2012-02-01 10:59:38 +00:00
.label:hover {
color: @white;
text-decoration: none;
}