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.

labels.less 414B

12345678910111213141516
  1. // LABELS
  2. // ------
  3. .label {
  4. padding: 1px 3px 2px;
  5. font-size: @baseFontSize * .75;
  6. font-weight: bold;
  7. color: @white;
  8. text-transform: uppercase;
  9. background-color: @grayLight;
  10. .border-radius(3px);
  11. }
  12. .label-important { background-color: @errorText; }
  13. .label-warning { background-color: @orange; }
  14. .label-success { background-color: @successText; }
  15. .label-info { background-color: @infoText; }