0
0
mirror of https://github.com/twbs/bootstrap.git synced 2025-01-18 10:52:19 +01:00
Bootstrap/less/badges.less

62 lines
1.1 KiB
Plaintext
Raw Normal View History

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