fix create project step button color
parent
570c3aa469
commit
931120f88d
|
@ -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
|
||||||
|
|
|
@ -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;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue