list-style: none;
}
-.label,
.badge {
display: inline-block;
padding: 2px 4px;
white-space: nowrap;
vertical-align: baseline;
background-color: #999999;
-}
-
-.label {
border-radius: 3px;
}
-.badge {
- padding-right: 9px;
- padding-left: 9px;
- border-radius: 9px;
-}
-
-.label:empty,
.badge:empty {
display: none;
}
-a.label:hover,
a.badge:hover {
color: #fff;
text-decoration: none;
cursor: pointer;
}
-.label-danger,
.badge-danger {
background-color: #b94a48;
}
-.label-danger[href],
.badge-danger[href] {
background-color: #953b39;
}
-.label-warning,
.badge-warning {
background-color: #f89406;
}
-.label-warning[href],
.badge-warning[href] {
background-color: #c67605;
}
-.label-success,
.badge-success {
background-color: #468847;
}
-.label-success[href],
.badge-success[href] {
background-color: #356635;
}
-.label-info,
.badge-info {
background-color: #3a87ad;
}
-.label-info[href],
.badge-info[href] {
background-color: #2d6987;
}
-.label-inverse,
.badge-inverse {
background-color: #333333;
}
-.label-inverse[href],
.badge-inverse[href] {
background-color: #1a1a1a;
}
-.btn .label,
.btn .badge {
position: relative;
top: -1px;
}
-.btn-mini .label,
.btn-mini .badge {
top: 0;
}
// Base classes
-.label,
.badge {
display: inline-block;
padding: 2px 4px;
white-space: nowrap;
text-shadow: 0 -1px 0 rgba(0,0,0,.25);
background-color: @grayLight;
-}
-// Set unique padding and border-radii
-.label {
border-radius: 3px;
-}
-.badge {
- padding-left: 9px;
- padding-right: 9px;
- border-radius: 9px;
-}
-// Empty labels/badges collapse
-.label,
-.badge {
+ // Empty labels/badges collapse
&:empty {
display: none;
}
}
// Hover state, but only for links
-a {
- &.label:hover,
- &.badge:hover {
+a.badge {
+ &:hover {
color: #fff;
text-decoration: none;
cursor: pointer;
// Colors
// Only give background-color difference to links (and to simplify, we don't qualifty with `a` but [href] attribute)
-.label,
.badge {
// Important (red)
&-danger { background-color: @state-error-text; }
// Quick fix for labels/badges in buttons
.btn {
- .label,
.badge {
position: relative;
top: -1px;
}
}
.btn-mini {
- .label,
.badge {
top: 0;
}
// Components: Misc
@import "thumbnails.less";
@import "media.less";
-@import "labels-badges.less";
+@import "badges.less";
@import "progress-bars.less";
@import "accordion.less";
@import "carousel.less";