source/styles/staple/buttons.scss in staple-0.4.4 vs source/styles/staple/buttons.scss in staple-0.4.5
- old
+ new
@@ -1,19 +1,20 @@
//DEFAULT
-.button, input[type="submit"]{
+.button, input[type="submit"], button{
+ cursor: pointer;
background-color: $primary-color;
color: set-text-color($primary-color);
font-weight: 200;
letter-spacing: 1px;
margin-right: 5px;
outline: none;
transition: background-color 150ms ease-out;//&*default
}
-.button:hover{
+.button:hover, input[type="submit"]:hover, button:hover{
background-color: lighten($primary-color, $transition-brighten);//&*hover
}//&*append
//BUTTON CLASSES TO GENERATE: (look in colors)
-$button-classes: primary compliment secondary tertiary;
+$button-classes: primary complement secondary tertiary;
$button-define: $primary-color $complement-color $secondary-color $tertiary-color;
@import 'builders/build_buttons'
\ No newline at end of file