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.

29 lines
624 B

  1. // Base class
  2. //
  3. // Requires one of the contextual, color modifier classes for `color` and
  4. // `background-color`.
  5. .badge {
  6. display: inline-block;
  7. padding: $badge-padding-y $badge-padding-x;
  8. @include font-size($badge-font-size);
  9. font-weight: $badge-font-weight;
  10. line-height: 1;
  11. color: $badge-color;
  12. text-align: center;
  13. white-space: nowrap;
  14. vertical-align: baseline;
  15. @include border-radius($badge-border-radius);
  16. @include gradient-bg();
  17. // Empty badges collapse automatically
  18. &:empty {
  19. display: none;
  20. }
  21. }
  22. // Quick fix for badges in buttons
  23. .btn .badge {
  24. position: relative;
  25. top: -1px;
  26. }