labels-badges.less 733 B

123456789101112131415161718192021
  1. // Bootstrap overrides
  2. // -------------------------
  3. .label,
  4. .badge {
  5. // Important (red)
  6. &-important { background-color: @errorText; }
  7. &-important[href] { background-color: @errorText; }
  8. // Warnings (orange)
  9. &-warning { background-color: @orange; }
  10. &-warning[href] { background-color: @orange; }
  11. // Success (green)
  12. &-success { background-color: @successText; }
  13. &-success[href] { background-color: @successText; }
  14. // Info (turquoise)
  15. &-info { background-color: @infoText; }
  16. &-info[href] { background-color: @infoText; }
  17. // Inverse (black)
  18. &-inverse { background-color: @grayDark; }
  19. &-inverse[href] { background-color: @grayDark; }
  20. }