changelog v4.1.4 (14 avril 2015)
- ajout de node_modules dans le .gitignore - ajout d'un gulpfile.js et des dépendances dans package.json - ajout de la classe .unstyled destinée aux éléments de formulaires
This commit is contained in:
parent
e99a63b038
commit
b2a6485dac
11 changed files with 133 additions and 10 deletions
|
@ -1,5 +1,5 @@
|
|||
/*!
|
||||
* www.KNACSS.com V4.1.3 (2015-04-13) @author: Raphael Goetter, Alsacreations
|
||||
* www.KNACSS.com V4.1.4 (2015-04-14) @author: Raphael Goetter, Alsacreations
|
||||
* Licence WTFPL http://www.wtfpl.net/
|
||||
*/
|
||||
|
||||
|
|
|
@ -75,5 +75,28 @@ button:focus {
|
|||
-moz-user-select: none;
|
||||
-ms-user-select: none;
|
||||
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;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue