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:
raphaelgoettter 2015-04-14 10:04:17 +02:00
parent e99a63b038
commit b2a6485dac
11 changed files with 133 additions and 10 deletions

View file

@ -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/
*/
/*! normalize.css v3.0.2 | MIT License | github.com/necolas/normalize.css */
@ -1105,7 +1105,29 @@ button:focus {
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
background-image: none;
}
/* unstyled forms */
button.unstyled,
input[type="button"].unstyled,
input[type="submit"].unstyled,
input[type="reset"].unstyled {
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;
}
button.unstyled:focus,
input[type="button"].unstyled:focus,
input[type="submit"].unstyled:focus,
input[type="reset"].unstyled:focus {
box-shadow: none;
outline: none;
}
/* ---------------------------------- */
/* ==visual helpers */

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long