suppression de white-space: nowrap
sur les éléments de formulaire
This commit is contained in:
parent
d8cd5eedd3
commit
245992c566
7 changed files with 794 additions and 805 deletions
|
@ -1,3 +1,6 @@
|
||||||
|
# changelog v7.0.8 (20 septembre 2018)
|
||||||
|
- suppression de `white-space: nowrap` sur les éléments de formulaire
|
||||||
|
|
||||||
# changelog v7.0.7 (3 juillet 2018)
|
# changelog v7.0.7 (3 juillet 2018)
|
||||||
- cohérence de renommage pour les classes utilitaires (ajout du préfixe `.u-` uniformément)
|
- cohérence de renommage pour les classes utilitaires (ajout du préfixe `.u-` uniformément)
|
||||||
|
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
@charset "UTF-8";
|
@charset "UTF-8";
|
||||||
/*!
|
/*!
|
||||||
* www.KNACSS.com v7.0.7 (july, 3 2018) @author: Alsacreations, Raphael Goetter
|
* www.KNACSS.com v7.0.8 (september, 20 2018) @author: Alsacreations, Raphael Goetter
|
||||||
* Licence WTFPL http://www.wtfpl.net/
|
* Licence WTFPL http://www.wtfpl.net/
|
||||||
*/
|
*/
|
||||||
/* ----------------------------- */
|
/* ----------------------------- */
|
||||||
|
@ -361,6 +361,7 @@ template {
|
||||||
[hidden] {
|
[hidden] {
|
||||||
display: none !important;
|
display: none !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* ----------------------------- */
|
/* ----------------------------- */
|
||||||
/* ==Base (basic styles) */
|
/* ==Base (basic styles) */
|
||||||
/* ----------------------------- */
|
/* ----------------------------- */
|
||||||
|
@ -1995,7 +1996,6 @@ label {
|
||||||
[type="week"],
|
[type="week"],
|
||||||
select,
|
select,
|
||||||
textarea {
|
textarea {
|
||||||
white-space: nowrap;
|
|
||||||
font-family: inherit;
|
font-family: inherit;
|
||||||
font-size: inherit;
|
font-size: inherit;
|
||||||
border: 0;
|
border: 0;
|
||||||
|
|
File diff suppressed because one or more lines are too long
1577
package-lock.json
generated
1577
package-lock.json
generated
File diff suppressed because it is too large
Load diff
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "knacss",
|
"name": "knacss",
|
||||||
"version": "7.0.7",
|
"version": "7.0.8",
|
||||||
"homepage": "http://www.knacss.com/",
|
"homepage": "http://www.knacss.com/",
|
||||||
"bugs": "https://github.com/alsacreations/KNACSS/issues",
|
"bugs": "https://github.com/alsacreations/KNACSS/issues",
|
||||||
"author": "Raphaël GOETTER, Alsacreations",
|
"author": "Raphaël GOETTER, Alsacreations",
|
||||||
|
@ -27,10 +27,10 @@
|
||||||
"dependencies": {},
|
"dependencies": {},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"gulp": "^3.9.1",
|
"gulp": "^3.9.1",
|
||||||
"gulp-autoprefixer": "latest",
|
"gulp-autoprefixer": "^6.0.0",
|
||||||
"gulp-clean-css": "^3.9.4",
|
"gulp-clean-css": "^3.10.0",
|
||||||
"gulp-concat": "latest",
|
"gulp-concat": "latest",
|
||||||
"gulp-rename": "^1.2.3",
|
"gulp-rename": "^1.4.0",
|
||||||
"gulp-sass": "^4.0.1"
|
"gulp-sass": "^4.0.1"
|
||||||
},
|
},
|
||||||
"engines": {}
|
"engines": {}
|
||||||
|
|
|
@ -40,7 +40,6 @@ label {
|
||||||
[type="week"],
|
[type="week"],
|
||||||
select,
|
select,
|
||||||
textarea {
|
textarea {
|
||||||
white-space: nowrap;
|
|
||||||
font-family: inherit;
|
font-family: inherit;
|
||||||
font-size: inherit;
|
font-size: inherit;
|
||||||
border: 0;
|
border: 0;
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
/*!
|
/*!
|
||||||
* www.KNACSS.com v7.0.7 (july, 3 2018) @author: Alsacreations, Raphael Goetter
|
* www.KNACSS.com v7.0.8 (september, 20 2018) @author: Alsacreations, Raphael Goetter
|
||||||
* Licence WTFPL http://www.wtfpl.net/
|
* Licence WTFPL http://www.wtfpl.net/
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue