mirror of
https://github.com/the-djmaze/snappymail.git
synced 2024-12-28 02:21:06 +08:00
e52b9abc61
and merge/cleanup/redesign composer attachments
25 lines
428 B
Text
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;
|
|
}
|
|
}
|