labels.less 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. //
  2. // Labels
  3. // --------------------------------------------------
  4. .label {
  5. display: inline;
  6. padding: 0.2em 0.6em 0.3em;
  7. font-size: @labels-font-size;
  8. font-weight: bold;
  9. line-height: 1;
  10. color: @label-color;
  11. text-align: center;
  12. white-space: nowrap;
  13. vertical-align: baseline;
  14. border-radius: 0.25em;
  15. // Add hover effects, but only for links
  16. &[href] {
  17. &:hover,
  18. &:focus {
  19. color: @label-link-hover-color;
  20. text-decoration: none;
  21. cursor: pointer;
  22. }
  23. }
  24. // Empty labels collapse automatically (not available in IE8)
  25. &:empty {
  26. display: none;
  27. }
  28. // Quick fix for labels in buttons
  29. .btn & {
  30. position: relative;
  31. top: -1px;
  32. }
  33. }
  34. .label {
  35. padding: 0.3em 0.6em;
  36. display: inline-flex;
  37. align-items: center;
  38. max-width: 100%;
  39. }
  40. // Colors
  41. // Contextual variations (linked labels get darker on :hover)
  42. .label-default {
  43. .label-variant(@label-default-bg);
  44. }
  45. .label-primary {
  46. .label-variant(@label-primary-bg);
  47. }
  48. .label-success {
  49. .label-variant(@label-success-bg);
  50. }
  51. .label-info {
  52. .label-variant(@label-info-bg);
  53. }
  54. .label-warning {
  55. .label-variant(@label-warning-bg);
  56. }
  57. .label-danger {
  58. .label-variant(@label-danger-bg);
  59. }
  60. .label-text {
  61. color: @ol-type-color;
  62. font-size: 100%;
  63. }
  64. .label-premium {
  65. background-color: @neutral-20;
  66. background-image: url('../../../public/img/material-icons/star-gradient.svg');
  67. background-repeat: no-repeat;
  68. background-position: 2px 2px;
  69. border-radius: 4px;
  70. color: @neutral-90;
  71. display: inline-block;
  72. font-size: 12px;
  73. font-family: @font-family-sans-serif;
  74. margin-left: 10px;
  75. padding: 4px 4px 4px 20px;
  76. vertical-align: middle;
  77. }