diff options
| author | Mark Otto <[email protected]> | 2013-02-17 22:20:49 -0800 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2013-02-17 22:20:49 -0800 |
| commit | acdffe696cf29f51c659a18eeca304512ff47048 (patch) | |
| tree | 978b61ac4f776eb56a02d181d4180a383a76885c /less/labels.less | |
| parent | f6ec2c5dac371b0b1d56abd65be548ee5ed075c8 (diff) | |
| download | bootstrap-acdffe696cf29f51c659a18eeca304512ff47048.tar.xz bootstrap-acdffe696cf29f51c659a18eeca304512ff47048.zip | |
Bring back the label, make it scale somewhat with the font-size of the parent using percentages and ems
Diffstat (limited to 'less/labels.less')
| -rw-r--r-- | less/labels.less | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/less/labels.less b/less/labels.less new file mode 100644 index 000000000..2592d0444 --- /dev/null +++ b/less/labels.less @@ -0,0 +1,46 @@ +// +// Labels +// -------------------------------------------------- + + +// Base classes +.label { + padding: .25em .6em; + font-size: 75%; + font-weight: 500; + color: #fff; + line-height: 1; + vertical-align: middle; + white-space: nowrap; + text-align: center; + background-color: @grayLight; + border-radius: .25em; +} + +// Hover state, but only for links +a.label { + &:hover, + &:focus { + color: #fff; + text-decoration: none; + cursor: pointer; + } +} + +// Colors +// Only give background-color difference to links (and to simplify, we don't qualifty with `a` but [href] attribute) +.label { + // Danger (red) + &-danger { background-color: @label-danger-background; } + &-danger[href] { background-color: darken(@label-danger-background, 10%); } + // Warnings (orange) + &-warning { background-color: @label-warning-background; } + &-warning[href] { background-color: darken(@label-warning-background, 10%); } + // Success (green) + &-success { background-color: @label-success-background; } + &-success[href] { background-color: darken(@label-success-background, 10%); } + // Info (turquoise) + &-info { background-color: @label-info-background; } + &-info[href] { background-color: darken(@label-info-background, 10%); } +} + |
