2015-08-18 03:33:34 +02:00
|
|
|
// Base class
|
2013-02-18 07:20:49 +01:00
|
|
|
//
|
2015-08-18 03:33:34 +02:00
|
|
|
// Requires one of the contextual, color modifier classes for `color` and
|
|
|
|
// `background-color`.
|
2015-04-18 20:38:47 +02:00
|
|
|
|
2013-04-22 15:34:23 +02:00
|
|
|
.label {
|
2014-12-06 09:33:36 +01:00
|
|
|
display: inline-block;
|
|
|
|
padding: .25em .4em;
|
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;
|
2014-12-02 23:02:35 +01: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;
|
2014-12-02 23:02:35 +01:00
|
|
|
@include border-radius();
|
2013-08-11 21:43:43 +02:00
|
|
|
|
2014-07-09 04:20:45 +02:00
|
|
|
// Empty labels collapse automatically
|
2013-08-11 21:43:43 +02:00
|
|
|
&:empty {
|
|
|
|
display: none;
|
|
|
|
}
|
2013-10-23 22:14:34 +02:00
|
|
|
|
|
|
|
// Quick fix for labels in buttons
|
|
|
|
.btn & {
|
|
|
|
position: relative;
|
|
|
|
top: -1px;
|
|
|
|
}
|
2013-04-19 21:31:55 +02:00
|
|
|
}
|
|
|
|
|
2014-12-02 23:02:35 +01:00
|
|
|
// Add hover effects, but only for links
|
|
|
|
a.label {
|
2015-01-01 10:05:01 +01:00
|
|
|
@include hover-focus {
|
2014-12-02 23:02:35 +01:00
|
|
|
color: $label-link-hover-color;
|
|
|
|
text-decoration: none;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-08-05 09:45:41 +02:00
|
|
|
// Pill labels
|
|
|
|
//
|
|
|
|
// Make them extra rounded with a modifier to replace v3's badges.
|
|
|
|
|
|
|
|
.label-pill {
|
|
|
|
padding-left: .6em;
|
|
|
|
padding-right: .6em;
|
|
|
|
border-radius: 1rem;
|
|
|
|
}
|
|
|
|
|
2015-04-18 20:38:47 +02:00
|
|
|
|
2013-04-22 15:34:23 +02:00
|
|
|
// Colors
|
2015-04-18 20:38:47 +02:00
|
|
|
//
|
|
|
|
// Contextual variations (linked labels get darker on :hover).
|
2013-08-06 00:30:28 +02:00
|
|
|
|
|
|
|
.label-default {
|
2014-12-02 23:02:35 +01:00
|
|
|
@include label-variant($label-default-bg);
|
2013-08-06 00:30:28 +02:00
|
|
|
}
|
|
|
|
|
2013-08-15 20:31:26 +02:00
|
|
|
.label-primary {
|
2014-12-02 23:02:35 +01:00
|
|
|
@include label-variant($label-primary-bg);
|
2013-04-19 21:31:55 +02:00
|
|
|
}
|
|
|
|
|
2013-04-22 15:34:23 +02:00
|
|
|
.label-success {
|
2014-12-02 23:02:35 +01:00
|
|
|
@include label-variant($label-success-bg);
|
2013-04-19 21:31:55 +02:00
|
|
|
}
|
|
|
|
|
2013-08-15 20:31:26 +02:00
|
|
|
.label-info {
|
2014-12-02 23:02:35 +01:00
|
|
|
@include label-variant($label-info-bg);
|
2013-08-15 20:31:26 +02:00
|
|
|
}
|
|
|
|
|
2013-04-22 15:34:23 +02:00
|
|
|
.label-warning {
|
2014-12-02 23:02:35 +01:00
|
|
|
@include label-variant($label-warning-bg);
|
2013-02-18 07:20:49 +01:00
|
|
|
}
|
|
|
|
|
2013-08-15 20:31:26 +02:00
|
|
|
.label-danger {
|
2014-12-02 23:02:35 +01:00
|
|
|
@include label-variant($label-danger-bg);
|
2013-07-02 02:32:07 +02:00
|
|
|
}
|