Commit 270db6f5 authored by Artur Kwiatkowski's avatar Artur Kwiatkowski

- changed comments

- added hover and focus state for [href] color variations
parent 8311ad51
...@@ -7,51 +7,64 @@ ...@@ -7,51 +7,64 @@
padding: .25em .6em; padding: .25em .6em;
font-size: 75%; font-size: 75%;
font-weight: 500; font-weight: 500;
color: #fff;
line-height: 1; line-height: 1;
vertical-align: middle; color: #fff;
white-space: nowrap;
text-align: center; text-align: center;
white-space: nowrap;
vertical-align: middle;
background-color: @gray-light; background-color: @gray-light;
border-radius: .25em; border-radius: .25em;
// Nuke the hover effects for a.label and for label[href] - for anchors // Add hover effects, but only for links
&[href], a& { &[href] {
&:hover, &:hover,
&:focus { &:focus {
color: #fff; color: #fff;
text-decoration: none; text-decoration: none;
cursor: pointer; cursor: pointer;
background-color: darken(@gray-light, 10%);
} }
} }
} }
// Colors // Colors
// Varying the background-color - if the a has href, then deploy darker color // Contextual variations (linked labels get darker on :hover)
.label-danger { .label-danger {
background-color: @label-danger-bg; background-color: @label-danger-bg;
&[href] { &[href] {
&:hover,
&:focus {
background-color: darken(@label-danger-bg, 10%); background-color: darken(@label-danger-bg, 10%);
} }
}
} }
.label-success { .label-success {
background-color: @label-success-bg; background-color: @label-success-bg;
&[href] { &[href] {
&:hover,
&:focus {
background-color: darken(@label-success-bg, 10%); background-color: darken(@label-success-bg, 10%);
} }
}
} }
.label-warning { .label-warning {
background-color: @label-warning-bg; background-color: @label-warning-bg;
&[href] { &[href] {
&:hover,
&:focus {
background-color: darken(@label-warning-bg, 10%); background-color: darken(@label-warning-bg, 10%);
} }
}
} }
.label-info { .label-info {
background-color: @label-info-bg; background-color: @label-info-bg;
&[href] { &[href] {
&:hover,
&:focus {
background-color: darken(@label-info-bg, 10%); background-color: darken(@label-info-bg, 10%);
} }
}
} }
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment