2012-06-29 00:46:45 -04:00
|
|
|
//
|
2013-02-18 00:06:20 -05:00
|
|
|
// Badges
|
2012-06-29 00:46:45 -04:00
|
|
|
// --------------------------------------------------
|
|
|
|
|
2012-03-22 19:02:00 -04:00
|
|
|
|
|
|
|
// Base classes
|
2013-02-18 00:06:20 -05:00
|
|
|
.badge {
|
2012-10-01 15:04:10 -04:00
|
|
|
display: inline-block;
|
2013-01-19 21:53:41 -05:00
|
|
|
min-width: 10px;
|
|
|
|
padding: 3px 7px;
|
2013-04-23 18:41:06 -04:00
|
|
|
font-size: @font-size-small;
|
2012-03-22 19:02:00 -04:00
|
|
|
font-weight: bold;
|
2013-07-19 09:29:19 -04:00
|
|
|
color: @badge-color;
|
2013-01-19 21:53:41 -05:00
|
|
|
line-height: 1;
|
|
|
|
vertical-align: middle;
|
2012-03-22 19:02:00 -04:00
|
|
|
white-space: nowrap;
|
2013-01-19 21:53:41 -05:00
|
|
|
text-align: center;
|
2013-04-21 22:35:36 -04:00
|
|
|
background-color: @gray-light;
|
2013-01-18 16:35:23 -05:00
|
|
|
border-radius: 10px;
|
2012-03-22 19:02:00 -04:00
|
|
|
|
2012-12-20 00:18:32 -05:00
|
|
|
// Empty labels/badges collapse
|
2012-11-03 16:18:23 -04:00
|
|
|
&:empty {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-03-22 19:02:00 -04:00
|
|
|
// Hover state, but only for links
|
2013-02-18 00:06:20 -05:00
|
|
|
a.badge {
|
2013-02-05 22:53:44 -05:00
|
|
|
&:hover,
|
|
|
|
&:focus {
|
2013-07-19 09:29:19 -04:00
|
|
|
color: @badge-link-hover-color;
|
2012-03-22 19:02:00 -04:00
|
|
|
text-decoration: none;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-07-30 16:25:27 -04:00
|
|
|
// Quick fix for labels/badges in buttons
|
2013-07-07 01:02:58 -04:00
|
|
|
.btn .badge {
|
|
|
|
position: relative;
|
|
|
|
top: -1px;
|
2012-07-30 16:25:27 -04:00
|
|
|
}
|
2013-01-19 21:53:41 -05:00
|
|
|
|
|
|
|
// Account for counters in navs
|
2013-03-30 19:56:49 -04:00
|
|
|
a.list-group-item.active > .badge,
|
2013-02-18 00:06:20 -05:00
|
|
|
.nav-pills > .active > a > .badge {
|
2013-01-19 21:53:41 -05:00
|
|
|
color: @link-color;
|
2013-07-19 14:14:13 -04:00
|
|
|
background-color: @badge-active-bg;
|
2013-01-19 21:53:41 -05:00
|
|
|
}
|
2013-02-18 00:06:20 -05:00
|
|
|
.nav-pills > li > a > .badge {
|
2013-01-19 21:53:41 -05:00
|
|
|
margin-left: 3px;
|
|
|
|
}
|