Skip to content

Commit

Permalink
- fixed vertical layout: wrong color for current step and hovering of…
Browse files Browse the repository at this point in the history
… default steps
  • Loading branch information
madoar committed May 7, 2017
1 parent e6caf1c commit 9edf66d
Showing 1 changed file with 10 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -103,11 +103,11 @@

// default steps shouldn't change when hovered, because they aren't clickable
li.default a:hover {
.state-circle-with-background(@wz-color-default);
color: @wz-color-current;
}

li.current:after {
.state-circle-with-background(@wz-color-default);
.state-circle-with-background(@wz-color-current);
}

li.done:after {
Expand Down Expand Up @@ -143,11 +143,11 @@

// default steps shouldn't change when hovered, because they aren't clickable
li.default a:hover {
.state-circle-with-background(@wz-color-default);
color: @wz-color-current;
}

li.current:after {
.state-circle-with-background(@wz-color-default);
.state-circle-with-background(@wz-color-current);
}

li.done:after {
Expand Down Expand Up @@ -183,11 +183,11 @@

// default steps shouldn't change when hovered, because they aren't clickable
li.default a:hover {
.state-circle-with-border(@dot-border-width, @wz-color-default);
color: @wz-color-current;
}

li.current:after {
.state-circle-with-border(@dot-border-width, @wz-color-default);
.state-circle-with-border(@dot-border-width, @wz-color-current);
}

li.done:after {
Expand Down Expand Up @@ -225,11 +225,11 @@

// default steps shouldn't change when hovered, because they aren't clickable
li.default a:hover {
.state-circle-with-background-and-content(@wz-color-default);
color: @wz-color-current;
}

li.current:after {
.state-circle-with-background-and-content(@wz-color-default);
.state-circle-with-background-and-content(@wz-color-current);
}

li.done:after {
Expand Down Expand Up @@ -267,11 +267,11 @@

// default steps shouldn't change when hovered, because they aren't clickable
li.default a:hover {
.state-circle-with-border-and-content(@dot-border-width, @wz-color-default);
color: @wz-color-current;
}

li.current:after {
.state-circle-with-border-and-content(@dot-border-width, @wz-color-default);
.state-circle-with-border-and-content(@dot-border-width, @wz-color-current);
}

li.done:after {
Expand Down

0 comments on commit 9edf66d

Please sign in to comment.