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