Unstyled pour les boutons

This commit is contained in:
CreativeJuiz 2015-04-02 17:42:19 +02:00
parent 3b7e87829e
commit 1e31ab50a7
8 changed files with 127 additions and 16 deletions

View file

@ -77,3 +77,27 @@ button:focus {
user-select: none;
background-image: none;
}
/* unstyled forms */
.unstyled {
button&,
input[type="button"]&,
input[type="submit"]&,
input[type="reset"]& {
padding: 0;
border: none;
line-height: 1;
text-align: left;
background: none;
border-radius: 0;
box-shadow: none;
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
&:focus {
box-shadow: none;
outline: none;
}
}
}