Ivan - Solve disable button color issue [skip ci]

This commit is contained in:
ivan 2016-10-13 18:04:17 -03:00
parent cc4858715d
commit 01c1c6bfd6
1 changed files with 16 additions and 4 deletions

View File

@ -20,19 +20,31 @@
background-color: lighten($primary-red, 5%);
outline: none;
}
&.button_disabled,
&.button_disabled:hover {
background-color: lighten($primary-red, 15%);
}
}
&_secondary {
background-color: $primary-green;
&.button_disabled,
&.button_disabled:hover {
background-color: lighten($primary-green, 15%);
}
}
&_tertiary {
background-color: $secondary-blue;
}
&_disabled,
&_disabled:hover {
background-color: #ec9696;
&.button_disabled,
&.button_disabled:hover {
background-color: lighten($secondary-blue, 15%);
}
}
&_small {