This repository has been archived on 2026-07-19. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
espocrm-base/frontend/less/espo/bootstrap/labels.less
T
Yuri Kuznetsov 8afe22f637 theme colors
2021-12-20 15:47:34 +02:00

65 lines
1.2 KiB
Plaintext

//
// Labels
// --------------------------------------------------
.label {
display: inline;
padding: .2em .6em .3em;
font-size: 75%;
font-weight: bold;
line-height: 1;
color: @label-color;
text-align: center;
white-space: nowrap;
vertical-align: baseline;
border-radius: .25em;
// Add hover effects, but only for links
a& {
&:hover,
&:focus {
color: @label-link-hover-color;
text-decoration: none;
cursor: pointer;
}
}
// Empty labels collapse automatically (not available in IE8)
&:empty {
display: none;
}
// Quick fix for labels in buttons
.btn & {
position: relative;
top: -1px;
}
}
// Colors
// Contextual variations (linked labels get darker on :hover)
.label-default {
.label-variant-espo(@label-default-bg; var(--gray-light-10));
}
.label-primary {
.label-variant-espo(@label-primary-bg; @brand-primary-10);
}
.label-success {
.label-variant-espo(@label-success-bg; @brand-success-10);
}
.label-info {
.label-variant-espo(@label-info-bg; @brand-info-10);
}
.label-warning {
.label-variant-espo(@label-warning-bg; @brand-warning-10);
}
.label-danger {
.label-variant-espo(@label-danger-bg; @brand-danger-10);
}