Anyone know how to change a twitter bootstrap badge (or label) from solid to outlined?
Add this CSS class to your badge :
.badge-outline {
color: black;
border: 1px solid #999;
background-color: transparent;
}
Create overriden classes for other colors :
.badge-outline.badge-success {
border-color: #468847;
}