You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

66 lines
1.2 KiB

4 years ago
  1. //
  2. // Badges
  3. // --------------------------------------------------
  4. // Base class
  5. .badge {
  6. display: inline-block;
  7. min-width: 10px;
  8. padding: 3px 7px;
  9. font-size: @font-size-small;
  10. font-weight: @badge-font-weight;
  11. color: @badge-color;
  12. line-height: @badge-line-height;
  13. vertical-align: middle;
  14. white-space: nowrap;
  15. text-align: center;
  16. background-color: @badge-bg;
  17. border-radius: @badge-border-radius;
  18. // Empty badges collapse automatically (not available in IE8)
  19. &:empty {
  20. display: none;
  21. }
  22. // Quick fix for badges in buttons
  23. .btn & {
  24. position: relative;
  25. top: -1px;
  26. }
  27. .btn-xs &,
  28. .btn-group-xs > .btn & {
  29. top: 0;
  30. padding: 1px 5px;
  31. }
  32. // Hover state, but only for links
  33. a& {
  34. &:hover,
  35. &:focus {
  36. color: @badge-link-hover-color;
  37. text-decoration: none;
  38. cursor: pointer;
  39. }
  40. }
  41. // Account for badges in navs
  42. .list-group-item.active > &,
  43. .nav-pills > .active > a > & {
  44. color: @badge-active-color;
  45. background-color: @badge-active-bg;
  46. }
  47. .list-group-item > & {
  48. float: right;
  49. }
  50. .list-group-item > & + & {
  51. margin-right: 5px;
  52. }
  53. .nav-pills > li > a > & {
  54. margin-left: 3px;
  55. }
  56. }