| 12345678910111213141516171819202122 |
- //
- // Labels and badges
- // --------------------------------------------------
- .label,
- .badge {
- // Important (red)
- &-important { background-color: @errorBackground; color: @errorText; }
- &-important[href] { background-color: darken(@errorBackground, 10%); }
- // Warnings (orange)
- &-warning { background-color: @warningBackground; color: @warningText; }
- &-warning[href] { background-color: darken(@warningBackground, 10%); }
- // Success (green)
- &-success { background-color: @successBackground; color: @successText; }
- &-success[href] { background-color: darken(@successBackground, 10%); }
- // Info (turquoise)
- &-info { background-color: @infoBackground; color: @infoText; }
- &-info[href] { background-color: darken(@infoBackground, 10%); }
- // Inverse (black)
- &-inverse { background-color: @grayDark; }
- &-inverse[href] { background-color: darken(@grayDark, 10%); }
- }
|