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
|
|
|
|
2014-03-07 18:54:53 +01:00
|
|
|
// Base class
|
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;
|
2014-07-09 01:25:01 +02:00
|
|
|
.border-radius(@badge-border-radius);
|
2012-03-23 00:02:00 +01:00
|
|
|
|
2014-07-09 04:20:45 +02:00
|
|
|
// Empty badges collapse automatically
|
2012-11-03 21:18:23 +01:00
|
|
|
&:empty {
|
|
|
|
display: none;
|
|
|
|
}
|
2013-10-23 22:14:34 +02:00
|
|
|
|
|
|
|
// Quick fix for badges in buttons
|
|
|
|
.btn & {
|
|
|
|
position: relative;
|
|
|
|
top: -1px;
|
|
|
|
}
|
2014-01-15 06:44:38 +01:00
|
|
|
.btn-xs & {
|
|
|
|
top: 0;
|
|
|
|
padding: 1px 5px;
|
|
|
|
}
|
2012-11-03 21:18:23 +01: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;
|
|
|
|
}
|
2012-03-23 00:02:00 +01:00
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
}
|
2013-01-20 03:53:41 +01:00
|
|
|
}
|