fix create project step button color

stable
Juanfran 2015-05-20 08:21:52 +02:00
parent 570c3aa469
commit 931120f88d
2 changed files with 7 additions and 2 deletions

View File

@ -15,7 +15,7 @@ form
p {{ template.description }}
fieldset
a.button-next.button.button-green(href="", title="{{'PAGINATION.NEXT' | translate}}", translate="PAGINATION.NEXT")
a.button-next.button-green(href="", title="{{'PAGINATION.NEXT' | translate}}", translate="PAGINATION.NEXT")
section.wizard-step.create-step2.active(data-step="step2")
div.title

View File

@ -16,6 +16,9 @@
color: $white;
transition: all .3s linear;
}
&:visited {
color: $white;
}
&.loading {
span {
animation: loading .5s linear;
@ -53,12 +56,14 @@
width: 100%;
}
.button-green {
.button-green,
a.button-green {
@extend %button;
background: $green-taiga;
&:hover,
&.active {
background: $fresh-taiga;
color: $white;
}
}