Commit a7dd1088 authored by Chris Rebert's avatar Chris Rebert
Browse files

extract .label-variant mix-in

parent 95655e72
Showing with 16 additions and 28 deletions
+16 -28
...@@ -30,41 +30,17 @@ ...@@ -30,41 +30,17 @@
// Colors // Colors
// Contextual variations (linked labels get darker on :hover) // Contextual variations (linked labels get darker on :hover)
.label-danger { .label-danger {
background-color: @label-danger-bg; .label-variant(@label-danger-bg);
&[href] {
&:hover,
&:focus {
background-color: darken(@label-danger-bg, 10%);
}
}
} }
.label-success { .label-success {
background-color: @label-success-bg; .label-variant(@label-success-bg);
&[href] {
&:hover,
&:focus {
background-color: darken(@label-success-bg, 10%);
}
}
} }
.label-warning { .label-warning {
background-color: @label-warning-bg; .label-variant(@label-warning-bg);
&[href] {
&:hover,
&:focus {
background-color: darken(@label-warning-bg, 10%);
}
}
} }
.label-info { .label-info {
background-color: @label-info-bg; .label-variant(@label-info-bg);
&[href] {
&:hover,
&:focus {
background-color: darken(@label-info-bg, 10%);
}
}
} }
...@@ -392,6 +392,18 @@ ...@@ -392,6 +392,18 @@
} }
} }
// Labels
// -------------------------
.label-variant(@color) {
background-color: @color;
&[href] {
&:hover,
&:focus {
background-color: darken(@color, 10%);
}
}
}
// Navbar vertical align // Navbar vertical align
// ------------------------- // -------------------------
// Vertically center elements in the navbar. // Vertically center elements in the navbar.
......
Supports Markdown
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