From dc2deb9a1b1995bbabee91bfd579d9b466fe78f2 Mon Sep 17 00:00:00 2001 From: Jacob Thornton Date: Thu, 26 Jan 2012 21:48:46 -0800 Subject: moving structure around + more work on builder... --- less/labels.less | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 less/labels.less (limited to 'less/labels.less') diff --git a/less/labels.less b/less/labels.less new file mode 100644 index 000000000..06dc7f3c0 --- /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); + &.important { background-color: @errorText; } + &.warning { background-color: @orange; } + &.success { background-color: @successText; } + &.info { background-color: @infoText; } +} -- cgit v1.2.3 From 487dbfdda4692e3212f13d5e6282d7818b4c9934 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Sat, 28 Jan 2012 22:14:51 -0800 Subject: namespace progress bars and labels classes --- less/labels.less | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'less/labels.less') diff --git a/less/labels.less b/less/labels.less index 06dc7f3c0..c0f427750 100644 --- a/less/labels.less +++ b/less/labels.less @@ -9,8 +9,8 @@ text-transform: uppercase; background-color: @grayLight; .border-radius(3px); - &.important { background-color: @errorText; } - &.warning { background-color: @orange; } - &.success { background-color: @successText; } - &.info { background-color: @infoText; } } +.label-important { background-color: @errorText; } +.label-warning { background-color: @orange; } +.label-success { background-color: @successText; } +.label-info { background-color: @infoText; } -- cgit v1.2.3