twbs--bootstrap/less/_badge.less

57 lines
1.0 KiB
Plaintext
Raw Normal View History

2012-06-29 04:46:45 +00:00
//
// Badges
2012-06-29 04:46:45 +00:00
// --------------------------------------------------
2014-03-07 17:54:53 +00:00
// Base class
.badge {
2014-07-09 07:15:20 +00:00
position: relative;
top: -.1em;
display: inline-block;
2014-07-09 07:15:20 +00:00
padding-left: .6em;
padding-right: .6em;
font-size: .75em;
font-weight: @badge-font-weight;
color: @badge-color;
text-align: center;
2014-07-09 07:15:20 +00:00
white-space: nowrap;
background-color: @badge-bg;
.border-radius(@badge-border-radius);
// Empty badges collapse automatically
&:empty {
display: none;
}
2014-07-09 07:15:20 +00:00
&.pull-left,
&.pull-right {
top: .2em;
}
2014-03-07 17:54:53 +00:00
// Hover state, but only for links
a& {
&:hover,
&:focus {
color: @badge-link-hover-color;
text-decoration: none;
cursor: pointer;
}
}
2014-03-07 17:54:53 +00:00
// Account for badges in navs
.list-group-item.active > &,
2014-03-07 17:54:53 +00:00
.nav-pills > .active > a > & {
color: @badge-active-color;
background-color: @badge-active-bg;
}
.list-group-item > & {
float: right;
}
.list-group-item > & + & {
margin-right: 5px;
}
2014-03-07 17:54:53 +00:00
.nav-pills > li > a > & {
margin-left: 3px;
}
}