3 // --------------------------------------------------
11 font-size: @baseFontSize * .846;
13 line-height: 14px; // ensure proper line-height if floated
15 vertical-align: baseline;
17 text-shadow: 0 -1px 0 rgba(0,0,0,.25);
18 background-color: @grayLight;
20 // Set unique padding and border-radii
30 // Empty labels/badges collapse
38 // Hover/focus state, but only for links
45 text-decoration: none;
51 // Only give background-color difference to links (and to simplify, we don't qualifty with `a` but [href] attribute)
55 &-important { background-color: @errorText; }
56 &-important[href] { background-color: darken(@errorText, 10%); }
58 &-warning { background-color: @orange; }
59 &-warning[href] { background-color: darken(@orange, 10%); }
61 &-success { background-color: @successText; }
62 &-success[href] { background-color: darken(@successText, 10%); }
64 &-info { background-color: @infoText; }
65 &-info[href] { background-color: darken(@infoText, 10%); }
67 &-inverse { background-color: @grayDark; }
68 &-inverse[href] { background-color: darken(@grayDark, 10%); }
71 // Quick fix for labels/badges in buttons