Added #timeline ... :hover and :focus styles.

- Legacy-Id: 10642
This commit is contained in:
Henrik Levkowetz 2016-01-12 15:09:03 +00:00
parent bce152b2b9
commit 6b6a3a6b43
11 changed files with 35 additions and 14 deletions

View file

@ -132,11 +132,19 @@ fieldset[disabled] .btn-pass.focus {
}
/* like label-success */
#timeline .bar:nth-child(odd) rect {
fill: #78b53a;
fill: #78cd22;
}
#timeline .bar:nth-child(odd) rect:hover,
#timeline .bar:nth-child(odd) rect:focus {
fill: #52a300;
}
/* like label-primary */
#timeline .bar:nth-child(even) rect {
fill: #6b5bad;
fill: #7a6cb6;
}
#timeline .bar:nth-child(even) rect:hover,
#timeline .bar:nth-child(even) rect:focus {
fill: #54478e;
}
/* like label-warning */
#timeline .gradient.left {

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View file

@ -132,11 +132,19 @@ fieldset[disabled] .btn-pass.focus {
}
/* like label-success */
#timeline .bar:nth-child(odd) rect {
fill: #78b53a;
fill: #78cd22;
}
#timeline .bar:nth-child(odd) rect:hover,
#timeline .bar:nth-child(odd) rect:focus {
fill: #52a300;
}
/* like label-primary */
#timeline .bar:nth-child(even) rect {
fill: #6b5bad;
fill: #7a6cb6;
}
#timeline .bar:nth-child(even) rect:hover,
#timeline .bar:nth-child(even) rect:focus {
fill: #54478e;
}
/* like label-warning */
#timeline .gradient.left {

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View file

@ -1,6 +1,6 @@
/*!
* Bootstrap v3.3.6 (http://getbootstrap.com)
* Copyright 2011-2015 Twitter, Inc.
* Copyright 2011-2016 Twitter, Inc.
* Licensed under the MIT license
*/

File diff suppressed because one or more lines are too long

View file

@ -142,10 +142,15 @@
/* like label-success */
#timeline .bar:nth-child(odd) rect { fill: desaturate(@label-success-bg, 30%); }
#timeline .bar:nth-child(odd) rect { fill: desaturate(@label-success-bg, 10%); }
#timeline .bar:nth-child(odd) rect:hover,
#timeline .bar:nth-child(odd) rect:focus { fill: darken(saturate(@label-success-bg, 20%), 15%); }
/* like label-primary */
#timeline .bar:nth-child(even) rect { fill: lighten(@label-primary-bg, 10%); }
#timeline .bar:nth-child(even) rect { fill: lighten(@label-primary-bg, 15%); }
#timeline .bar:nth-child(even) rect:hover,
#timeline .bar:nth-child(even) rect:focus { fill: @label-primary-bg; }
/* like label-warning */
#timeline .gradient.left { stop-color: @label-warning-bg; }