diff options
Diffstat (limited to 'less/labels.less')
| -rw-r--r-- | less/labels.less | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/less/labels.less b/less/labels.less new file mode 100644 index 000000000..c0f427750 --- /dev/null +++ b/less/labels.less @@ -0,0 +1,16 @@ +// LABELS +// ------ + +.label { + padding: 1px 3px 2px; + font-size: @baseFontSize * .75; + font-weight: bold; + color: @white; + text-transform: uppercase; + background-color: @grayLight; + .border-radius(3px); +} +.label-important { background-color: @errorText; } +.label-warning { background-color: @orange; } +.label-success { background-color: @successText; } +.label-info { background-color: @infoText; } |
