Stackedit/js/libs/bootstrap/less/badges.less

52 lines
1007 B
Plaintext
Raw Normal View History

2013-08-04 00:54:25 +00:00
//
// Badges
// --------------------------------------------------
// Base classes
.badge {
display: inline-block;
min-width: 10px;
padding: 3px 7px;
font-size: @font-size-small;
2013-08-14 23:44:51 +00:00
font-weight: @badge-font-weight;
2013-08-04 00:54:25 +00:00
color: @badge-color;
2013-08-14 23:44:51 +00:00
line-height: @badge-line-height;
vertical-align: baseline;
2013-08-04 00:54:25 +00:00
white-space: nowrap;
text-align: center;
background-color: @badge-bg;
2013-08-14 23:44:51 +00:00
border-radius: @badge-border-radius;
2013-08-04 00:54:25 +00:00
2013-08-14 23:44:51 +00:00
// Empty badges collapse automatically (not available in IE8)
2013-08-04 00:54:25 +00:00
&:empty {
display: none;
}
}
// Hover state, but only for links
a.badge {
&:hover,
&:focus {
color: @badge-link-hover-color;
text-decoration: none;
cursor: pointer;
}
}
// Quick fix for labels/badges in buttons
.btn .badge {
position: relative;
top: -1px;
}
// Account for counters in navs
a.list-group-item.active > .badge,
.nav-pills > .active > a > .badge {
color: @badge-active-color;
background-color: @badge-active-bg;
}
.nav-pills > li > a > .badge {
margin-left: 3px;
}