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 }} p {{ template.description }}
fieldset 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") section.wizard-step.create-step2.active(data-step="step2")
div.title div.title

View File

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