mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-16 20:43:01 +03:00
83 lines
1.5 KiB
SCSS
83 lines
1.5 KiB
SCSS
//
|
|
// Badges
|
|
// --------------------------------------------------
|
|
|
|
|
|
// Base class
|
|
.badge {
|
|
display: inline-block;
|
|
min-width: 10px;
|
|
padding: 2px 4px;
|
|
box-shadow: 0 0 0 1px #777; // Fix due to our smaller than default button sizes
|
|
font-size: 1rem;
|
|
font-weight: inherit;
|
|
color: #FFF;
|
|
line-height: 1;
|
|
vertical-align: baseline;
|
|
white-space: nowrap;
|
|
text-align: center;
|
|
background-color: #777;
|
|
border-radius: 10px;
|
|
|
|
// Empty badges collapse automatically (not available in IE8)
|
|
&:empty {
|
|
display: none;
|
|
}
|
|
|
|
// Quick fix for badges in buttons
|
|
.btn & {
|
|
position: relative;
|
|
top: -1px;
|
|
}
|
|
.btn-xs & {
|
|
top: 0;
|
|
padding: 1px 5px;
|
|
}
|
|
|
|
// Account for badges in text tags
|
|
p & {
|
|
padding: 0px 4px 3px;
|
|
position: relative;
|
|
top: -2px;
|
|
margin-left: -1px;
|
|
}
|
|
|
|
// Account for badges in navs
|
|
a.list-group-item.active > &,
|
|
.nav-pills > .active > a > & {
|
|
color: #428BCA;
|
|
background-color: #FFF;
|
|
box-shadow: 0 0 0 1px #FFF;
|
|
}
|
|
.nav-pills > li > a > & {
|
|
margin-left: 3px;
|
|
}
|
|
.nav-item & {
|
|
margin-top: -5px;
|
|
margin-left: 3px;
|
|
}
|
|
}
|
|
|
|
// Hover state, but only for links
|
|
a.badge {
|
|
&:hover,
|
|
&:focus {
|
|
color: #fff;
|
|
text-decoration: none;
|
|
cursor: pointer;
|
|
}
|
|
}
|
|
|
|
// Colours
|
|
.badge.badge-blue {
|
|
background-color: $blue;
|
|
box-shadow: 0 0 0 1px $blue;
|
|
}
|
|
.badge.badge-green {
|
|
background-color: $green;
|
|
box-shadow: 0 0 0 1px $green;
|
|
}
|
|
.badge.badge-red {
|
|
background-color: $red;
|
|
box-shadow: 0 0 0 1px $red;
|
|
} |