mirror of
https://github.com/SuiteCRM/SuiteCRM-Core.git
synced 2026-07-31 04:02:03 +08:00
50 lines
No EOL
990 B
Text
Executable file
50 lines
No EOL
990 B
Text
Executable file
// LABELS
|
|
// ------
|
|
|
|
// Base
|
|
.label {
|
|
padding: 2px 4px 3px;
|
|
font-size: @baseFontSize * .85;
|
|
font-weight: 400;
|
|
color: @grayDarker;
|
|
background-color: @grayLight;
|
|
.border-radius;
|
|
}
|
|
|
|
// Hover state
|
|
.label:hover {
|
|
color: @white;
|
|
text-decoration: none;
|
|
}
|
|
|
|
// Colors
|
|
|
|
.label-file {
|
|
background-color: @orange;
|
|
color: @white;
|
|
}
|
|
.label-file:hover { background-color: darken(@orange, 10%); }
|
|
|
|
.label-note { background-color: @yellow;
|
|
color: darken(@yellow, 30%);
|
|
text-shadow: 0 1px 0 rgba(255,255,255,.2);
|
|
}
|
|
.label-note:hover { background-color: darken(@yellow, 10%); }
|
|
|
|
.label-lead {
|
|
background-color: @green;
|
|
color: @white;
|
|
}
|
|
.label-lead:hover { background-color: darken(@green, 20%); }
|
|
|
|
.label-contact {
|
|
background-color: @blue;
|
|
color: @white;
|
|
}
|
|
.label-contact:hover { background-color: darken(@blue, 10%); }
|
|
|
|
.label-document {
|
|
background-color: @purple;
|
|
color: @white;
|
|
}
|
|
.label-document:hover { background-color: darken(@purple, 10%); } |