snappymail/vendors/bootstrap/less/labels-badges.less
djmaze e52b9abc61 Cleanup more CSS and JS
and merge/cleanup/redesign composer attachments
2021-02-22 15:16:33 +01:00

25 lines
428 B
Text

//
// Labels and badges
// --------------------------------------------------
// Base classes
.badge {
background-color: @grayLight;
border-radius: 9px;
color: @white;
font-size: 80%;
min-width: 1em;
padding: 1px 4px;
text-align: center;
text-shadow: 0 -1px 0 rgba(0,0,0,.25);
}
// Hover state, but only for links
a {
&.badge:hover {
color: @white;
text-decoration: none;
cursor: pointer;
}
}