2013-02-18 07:20:49 +01:00
|
|
|
//
|
|
|
|
// Labels
|
|
|
|
// --------------------------------------------------
|
|
|
|
|
2013-04-22 15:34:23 +02:00
|
|
|
.label {
|
2013-04-19 21:31:55 +02:00
|
|
|
display: inline;
|
2013-08-19 09:36:39 +02:00
|
|
|
padding: .2em .6em .3em;
|
2013-02-18 07:20:49 +01:00
|
|
|
font-size: 75%;
|
2013-08-12 03:10:42 +02:00
|
|
|
font-weight: bold;
|
2013-02-18 07:20:49 +01:00
|
|
|
line-height: 1;
|
2013-07-20 10:38:27 +02:00
|
|
|
color: @label-color;
|
2013-02-18 07:20:49 +01:00
|
|
|
text-align: center;
|
2013-04-24 13:54:17 +02:00
|
|
|
white-space: nowrap;
|
2013-07-30 17:23:25 +02:00
|
|
|
vertical-align: baseline;
|
2013-02-18 07:20:49 +01:00
|
|
|
border-radius: .25em;
|
|
|
|
|
2013-07-02 02:32:07 +02:00
|
|
|
// Add hover effects, but only for links
|
2013-04-24 13:54:17 +02:00
|
|
|
&[href] {
|
2013-04-19 21:31:55 +02:00
|
|
|
&:hover,
|
|
|
|
&:focus {
|
2013-07-20 10:38:27 +02:00
|
|
|
color: @label-link-hover-color;
|
2013-04-19 21:31:55 +02:00
|
|
|
text-decoration: none;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
}
|
2013-08-11 21:43:43 +02:00
|
|
|
|
|
|
|
// Empty labels collapse automatically (not available in IE8)
|
|
|
|
&:empty {
|
|
|
|
display: none;
|
|
|
|
}
|
2013-04-19 21:31:55 +02:00
|
|
|
}
|
|
|
|
|
2013-04-22 15:34:23 +02:00
|
|
|
// Colors
|
2013-04-24 13:54:17 +02:00
|
|
|
// Contextual variations (linked labels get darker on :hover)
|
2013-08-06 00:30:28 +02:00
|
|
|
|
|
|
|
.label-default {
|
|
|
|
.label-variant(@label-default-bg);
|
|
|
|
}
|
|
|
|
|
2013-08-15 20:31:26 +02:00
|
|
|
.label-primary {
|
|
|
|
.label-variant(@label-primary-bg);
|
2013-04-19 21:31:55 +02:00
|
|
|
}
|
|
|
|
|
2013-04-22 15:34:23 +02:00
|
|
|
.label-success {
|
2013-07-07 23:26:51 +02:00
|
|
|
.label-variant(@label-success-bg);
|
2013-04-19 21:31:55 +02:00
|
|
|
}
|
|
|
|
|
2013-08-15 20:31:26 +02:00
|
|
|
.label-info {
|
|
|
|
.label-variant(@label-info-bg);
|
|
|
|
}
|
|
|
|
|
2013-04-22 15:34:23 +02:00
|
|
|
.label-warning {
|
2013-07-07 23:26:51 +02:00
|
|
|
.label-variant(@label-warning-bg);
|
2013-02-18 07:20:49 +01:00
|
|
|
}
|
|
|
|
|
2013-08-15 20:31:26 +02:00
|
|
|
.label-danger {
|
|
|
|
.label-variant(@label-danger-bg);
|
2013-07-02 02:32:07 +02:00
|
|
|
}
|