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.

55 lines
1.1 KiB

10 years ago
  1. //
  2. // Badges
  3. // --------------------------------------------------
  4. // Base classes
  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: baseline;
  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. top: 0;
  29. padding: 1px 5px;
  30. }
  31. }
  32. // Hover state, but only for links
  33. a.badge {
  34. &:hover,
  35. &:focus {
  36. color: @badge-link-hover-color;
  37. text-decoration: none;
  38. cursor: pointer;
  39. }
  40. }
  41. // Account for counters in navs
  42. a.list-group-item.active > .badge,
  43. .nav-pills > .active > a > .badge {
  44. color: @badge-active-color;
  45. background-color: @badge-active-bg;
  46. }
  47. .nav-pills > li > a > .badge {
  48. margin-left: 3px;
  49. }