Skip to content
GitLab
Explore
Projects
Groups
Snippets
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Bootstrap
bootstrap
Commits
270db6f5
Commit
270db6f5
authored
12 years ago
by
Artur Kwiatkowski
Browse files
Options
Download
Email Patches
Plain Diff
- changed comments
- added hover and focus state for [href] color variations
parent
8311ad51
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
less/labels.less
+23
-10
less/labels.less
with
23 additions
and
10 deletions
+23
-10
less/labels.less
+
23
-
10
View file @
270db6f5
...
...
@@ -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
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment
Menu
Explore
Projects
Groups
Snippets