Corrections issues 121 à 124
- mise en commentaire des sauts de page print avant un h1 - correction d'anomalie sur les input (user-select: none) - correction d'erreur de compilation Sass
This commit is contained in:
parent
490f9f328e
commit
aa951801fe
9 changed files with 36 additions and 29 deletions
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "KNACSS",
|
||||
"version": "4.1.4",
|
||||
"version": "4.1.6",
|
||||
"homepage": "http://www.knacss.com/",
|
||||
"authors": [
|
||||
"Raphaël GOETTER, Alsacreations"
|
||||
|
|
|
@ -1,3 +1,9 @@
|
|||
# changelog v4.1.6 (17 avril 2015)
|
||||
|
||||
- mise en commentaire des sauts de page print avant un h1
|
||||
- correction d'anomalie sur les input (user-select: none)
|
||||
- correction d'erreur de compilation Sass
|
||||
|
||||
# changelog v4.1.4 (14 avril 2015)
|
||||
|
||||
- ajout de node_modules dans le .gitignore
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*!
|
||||
* www.KNACSS.com V4.1.5 (2015-04-14) @author: Raphael Goetter, Alsacreations
|
||||
* www.KNACSS.com V4.1.6 (2015-04-17) @author: Raphael Goetter, Alsacreations
|
||||
* Licence WTFPL http://www.wtfpl.net/
|
||||
*/
|
||||
|
||||
|
|
|
@ -75,7 +75,7 @@ textarea:-moz-placeholder {
|
|||
}
|
||||
|
||||
.btn:focus,
|
||||
input:focus,
|
||||
input[type="button"]:focus,
|
||||
button:focus {
|
||||
outline: 0;
|
||||
-webkit-tap-highlight-color: transparent;
|
||||
|
@ -99,8 +99,8 @@ button:focus {
|
|||
border-radius: 0;
|
||||
box-shadow: none;
|
||||
-webkit-appearance: none;
|
||||
-moz-appearance: none;
|
||||
appearance: none;
|
||||
-moz-appearance: none;
|
||||
appearance: none;
|
||||
|
||||
&:focus {
|
||||
box-shadow: none;
|
||||
|
|
|
@ -60,11 +60,12 @@
|
|||
page-break-inside: avoid;
|
||||
}
|
||||
|
||||
/* page break before main headers */
|
||||
/* page break before main headers
|
||||
h1,
|
||||
.h1-like {
|
||||
page-break-before: always;
|
||||
}
|
||||
*/
|
||||
|
||||
/* no breaks after these elements */
|
||||
h1,
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "knacss",
|
||||
"version": "4.1.4",
|
||||
"version": "4.1.6",
|
||||
"homepage": "http://www.knacss.com/",
|
||||
"bugs": "https://github.com/raphaelgoetter/KNACSS/issues",
|
||||
"author": [
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
/*!
|
||||
* www.KNACSS.com V4.1.5 (2015-04-14) @author: Raphael Goetter, Alsacreations
|
||||
* www.KNACSS.com V4.1.6 (2015-04-17) @author: Raphael Goetter, Alsacreations
|
||||
* Licence WTFPL http://www.wtfpl.net/
|
||||
*/
|
||||
|
||||
|
|
|
@ -75,7 +75,7 @@ textarea:-moz-placeholder {
|
|||
}
|
||||
|
||||
.btn:focus,
|
||||
input:focus,
|
||||
input[type="button"]:focus,
|
||||
button:focus {
|
||||
outline: 0;
|
||||
-webkit-tap-highlight-color: transparent;
|
||||
|
@ -86,25 +86,24 @@ button:focus {
|
|||
}
|
||||
|
||||
/* 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;
|
||||
}
|
||||
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;
|
||||
|
||||
&:focus {
|
||||
box-shadow: none;
|
||||
outline: none;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -59,11 +59,12 @@
|
|||
page-break-inside: avoid;
|
||||
}
|
||||
|
||||
/* page break before main headers */
|
||||
/* page break before main headers
|
||||
h1,
|
||||
.h1-like {
|
||||
page-break-before: always;
|
||||
}
|
||||
*/
|
||||
|
||||
/* no breaks after these elements */
|
||||
h1,
|
||||
|
|
Loading…
Reference in a new issue