Skip to content

Commit

Permalink
correctifs du tag (le 7.1.3 annule le 7.1.2 erroné)
Browse files Browse the repository at this point in the history
  • Loading branch information
raphaelgoetter committed Feb 12, 2020
1 parent feac71a commit 43ae752
Show file tree
Hide file tree
Showing 7 changed files with 133 additions and 39 deletions.
14 changes: 11 additions & 3 deletions bower.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,22 @@
{
"name": "KNACSS",
"version": "7.1.2",
"version": "7.1.3",
"homepage": "http://www.knacss.com/",
"authors": [
"Raphaël GOETTER, Alsacreations"
],
"description": "KNACSS is a minimalist, responsive and extensible style sheet to kick-start your HTML / CSS projects. It relies on common best practices and experience on the topic.",
"main": "css/knacss.css",
"keywords": [
"css", "framework", "reset", "responsive", "less", "sass", "rwd", "boilerplate", "workflow"
"css",
"framework",
"reset",
"responsive",
"less",
"sass",
"rwd",
"boilerplate",
"workflow"
],
"license": "WTFPL",
"ignore": [
Expand All @@ -20,4 +28,4 @@
"tests",
"README.md"
]
}
}
7 changes: 7 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## Changelog v7.1.3 (12 février 2020)

- correctif :
- ce présent tag `7.1.3` corrige le tag précédent
- tag erroné : `7.1.2` (correspondant partiellement à la branche `v8` en développement) = ne pas utiliser !
- précédent tag correct : `7.1.0`

## Changelog v7.1.2 (30 janvier 2019)

- ajout de la règle `@media (prefers-reduced-motion: reduce)`
Expand Down
19 changes: 8 additions & 11 deletions css/knacss-unminified.css
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
@charset "UTF-8";
/*!
* www.KNACSS.com v7.1.1 (december, 10 2018) @author: Alsacreations, Raphael Goetter
* www.KNACSS.com v7.1.3 (february, 12 2020) @author: Alsacreations, Raphael Goetter
* Licence WTFPL http://www.wtfpl.net/
*/
/* ----------------------------- */
Expand Down Expand Up @@ -42,7 +42,7 @@ html {
-moz-text-size-adjust: 100%;
-ms-text-size-adjust: 100%;
text-size-adjust: 100%;
overflow-style: scrollbar;
-ms-overflow-style: scrollbar;
-webkit-tap-highlight-color: transparent;
}

Expand Down Expand Up @@ -967,7 +967,8 @@ http://www.alsacreations.com/tuto/lire/1493-css3-flexbox-layout-module.html
}

/* simple blocks alignment */
.left .u-left {
.left,
.u-left {
margin-right: auto;
}

Expand Down Expand Up @@ -2167,23 +2168,19 @@ textarea {
color: #777;
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
color: #777;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
input::-moz-placeholder, textarea::-moz-placeholder {
color: #777;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
input:-ms-input-placeholder, textarea:-ms-input-placeholder {
color: #777;
}

input::-ms-input-placeholder,
textarea::-ms-input-placeholder {
input::-ms-input-placeholder, textarea::-ms-input-placeholder {
color: #777;
}

Expand Down
4 changes: 2 additions & 2 deletions css/knacss.css

Large diffs are not rendered by default.

112 changes: 97 additions & 15 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 7 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "knacss",
"version": "7.1.1",
"version": "7.1.3",
"homepage": "http://www.knacss.com/",
"bugs": "https://github.com/alsacreations/KNACSS/issues",
"author": "Raphaël GOETTER, Alsacreations",
Expand All @@ -26,15 +26,15 @@
"license": "WTFPL",
"dependencies": {},
"devDependencies": {
"autoprefixer": "^9.7.4",
"cssnano": "latest",
"gulp": "^3.x",
"gulp-postcss": "latest",
"autoprefixer": "latest",
"postcss-unprefix": "latest",
"postcss-flexbugs-fixes": "latest",
"gulp-rename": "^2.0.0",
"gulp-sass": "latest",
"postcss-flexbugs-fixes": "^4.2.0",
"postcss-gap-properties": "latest",
"cssnano": "latest",
"gulp-rename": "latest",
"gulp-sass": "latest"
"postcss-unprefix": "latest"
},
"engines": {}
}
2 changes: 1 addition & 1 deletion sass/knacss.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*!
* www.KNACSS.com v7.1.2 (january, 30 2019) @author: Alsacreations, Raphael Goetter
* www.KNACSS.com v7.1.3 (february, 12 2020) @author: Alsacreations, Raphael Goetter
* Licence WTFPL http://www.wtfpl.net/
*/

Expand Down

0 comments on commit 43ae752

Please sign in to comment.