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
|
|
|
|
2014-03-07 12:54:53 -05:00
|
|
|
// Base class
|
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;
|
2013-07-28 08:32:08 -04:00
|
|
|
font-weight: @badge-font-weight;
|
2013-07-19 09:29:19 -04:00
|
|
|
color: @badge-color;
|
2013-07-28 08:32:08 -04:00
|
|
|
line-height: @badge-line-height;
|
2013-07-30 11:23:25 -04:00
|
|
|
vertical-align: baseline;
|
2012-03-22 19:02:00 -04:00
|
|
|
white-space: nowrap;
|
2013-01-19 21:53:41 -05:00
|
|
|
text-align: center;
|
2013-07-20 03:03:08 -04:00
|
|
|
background-color: @badge-bg;
|
2013-07-28 08:32:08 -04:00
|
|
|
border-radius: @badge-border-radius;
|
2012-03-22 19:02:00 -04:00
|
|
|
|
2013-08-11 15:43:43 -04:00
|
|
|
// Empty badges collapse automatically (not available in IE8)
|
2012-11-03 16:18:23 -04:00
|
|
|
&:empty {
|
|
|
|
display: none;
|
|
|
|
}
|
2013-10-23 16:14:34 -04:00
|
|
|
|
|
|
|
// Quick fix for badges in buttons
|
|
|
|
.btn & {
|
|
|
|
position: relative;
|
|
|
|
top: -1px;
|
|
|
|
}
|
2015-01-16 15:44:27 -05:00
|
|
|
|
2014-01-15 00:44:38 -05:00
|
|
|
.btn-xs & {
|
|
|
|
top: 0;
|
|
|
|
padding: 1px 5px;
|
|
|
|
}
|
2012-11-03 16:18:23 -04:00
|
|
|
|
2014-03-07 12:54:53 -05:00
|
|
|
// Hover state, but only for links
|
|
|
|
a& {
|
|
|
|
&:hover,
|
|
|
|
&:focus {
|
|
|
|
color: @badge-link-hover-color;
|
|
|
|
text-decoration: none;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
2012-03-22 19:02:00 -04:00
|
|
|
}
|
|
|
|
|
2014-03-07 12:54:53 -05:00
|
|
|
// Account for badges in navs
|
2014-11-08 05:00:37 -05:00
|
|
|
.list-group-item.active > &,
|
2014-03-07 12:54:53 -05:00
|
|
|
.nav-pills > .active > a > & {
|
|
|
|
color: @badge-active-color;
|
|
|
|
background-color: @badge-active-bg;
|
|
|
|
}
|
2015-01-16 15:44:27 -05:00
|
|
|
|
2014-11-08 05:00:37 -05:00
|
|
|
.list-group-item > & {
|
|
|
|
float: right;
|
|
|
|
}
|
2015-01-16 15:44:27 -05:00
|
|
|
|
2014-11-08 05:00:37 -05:00
|
|
|
.list-group-item > & + & {
|
|
|
|
margin-right: 5px;
|
|
|
|
}
|
2015-01-16 15:44:27 -05:00
|
|
|
|
2014-03-07 12:54:53 -05:00
|
|
|
.nav-pills > li > a > & {
|
|
|
|
margin-left: 3px;
|
|
|
|
}
|
2013-01-19 21:53:41 -05:00
|
|
|
}
|