diff options
| author | Artur Kwiatkowski <[email protected]> | 2013-04-24 13:54:17 +0200 |
|---|---|---|
| committer | Artur Kwiatkowski <[email protected]> | 2013-04-24 14:38:53 +0200 |
| commit | 270db6f55e4c86b0375e32fa3d6eba4038aa15fb (patch) | |
| tree | 2cf1b79d76555fbf0d4492a302175feb8bdfb90c | |
| parent | 8311ad513f4300ddc3360305d2831c6310f1b71a (diff) | |
| download | bootstrap-270db6f55e4c86b0375e32fa3d6eba4038aa15fb.tar.xz bootstrap-270db6f55e4c86b0375e32fa3d6eba4038aa15fb.zip | |
- changed comments
- added hover and focus state for [href] color variations
| -rw-r--r-- | less/labels.less | 33 |
1 files changed, 23 insertions, 10 deletions
diff --git a/less/labels.less b/less/labels.less index d6ffc8105..92fe8f89e 100644 --- a/less/labels.less +++ b/less/labels.less @@ -7,51 +7,64 @@ padding: .25em .6em; font-size: 75%; font-weight: 500; - color: #fff; line-height: 1; - vertical-align: middle; - white-space: nowrap; + color: #fff; text-align: center; + white-space: nowrap; + vertical-align: middle; background-color: @gray-light; border-radius: .25em; - // Nuke the hover effects for a.label and for label[href] - for anchors - &[href], a& { + // Add hover effects, but only for links + &[href] { &:hover, &:focus { color: #fff; text-decoration: none; cursor: pointer; + background-color: darken(@gray-light, 10%); } } } // Colors -// Varying the background-color - if the a has href, then deploy darker color +// Contextual variations (linked labels get darker on :hover) .label-danger { background-color: @label-danger-bg; &[href] { - background-color: darken(@label-danger-bg, 10%); + &:hover, + &:focus { + background-color: darken(@label-danger-bg, 10%); + } } } .label-success { background-color: @label-success-bg; &[href] { - background-color: darken(@label-success-bg, 10%); + &:hover, + &:focus { + background-color: darken(@label-success-bg, 10%); + } } } .label-warning { background-color: @label-warning-bg; &[href] { - background-color: darken(@label-warning-bg, 10%); + &:hover, + &:focus { + background-color: darken(@label-warning-bg, 10%); + } } } .label-info { background-color: @label-info-bg; &[href] { - background-color: darken(@label-info-bg, 10%); + &:hover, + &:focus { + background-color: darken(@label-info-bg, 10%); + } } }
\ No newline at end of file |
