0
0
mirror of https://github.com/twbs/bootstrap.git synced 2024-11-29 11:24:18 +01:00
Bootstrap/scss/_badge.scss

56 lines
1022 B
SCSS
Raw Normal View History

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