link-hover-color

application de `$link-hover-color` uniquement si différent de
`$link-color`
This commit is contained in:
Raphael Goetter 2017-01-10 10:28:18 +01:00
parent 366af95681
commit ad445246dd
6 changed files with 9 additions and 4 deletions

View File

@ -1,6 +1,6 @@
{ {
"name": "KNACSS", "name": "KNACSS",
"version": "6.0.7", "version": "6.0.8",
"homepage": "http://www.knacss.com/", "homepage": "http://www.knacss.com/",
"authors": [ "authors": [
"Raphaël GOETTER, Alsacreations" "Raphaël GOETTER, Alsacreations"

View File

@ -1,3 +1,6 @@
# changelog v6.0.8 (10 janvier 2017)
- application de `$link-hover-color` uniquement si différent de `$link-color`
# changelog v6.0.7 (7 décembre 2016) # changelog v6.0.7 (7 décembre 2016)
- application de `$font-stack-headings` uniquement si différent de `$font-stack-common` - application de `$font-stack-headings` uniquement si différent de `$font-stack-common`

View File

@ -1,6 +1,6 @@
{ {
"name": "knacss", "name": "knacss",
"version": "6.0.7", "version": "6.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": [ "author": [

View File

@ -79,14 +79,14 @@ figure {
h1, .#{$kna-namespace}h1-like { h1, .#{$kna-namespace}h1-like {
font-size: $h1-size; font-size: $h1-size;
@if $font-stack-headings != $font-stack-common { @if variable_exists(font-stack-headings) and $font-stack-headings != $font-stack-common {
font-family: $font-stack-headings; font-family: $font-stack-headings;
} }
} }
h2, .#{$kna-namespace}h2-like { h2, .#{$kna-namespace}h2-like {
font-size: $h2-size; font-size: $h2-size;
@if $font-stack-headings != $font-stack-common { @if variable_exists(font-stack-headings) and $font-stack-headings != $font-stack-common {
font-family: $font-stack-headings; font-family: $font-stack-headings;
} }
} }

View File

@ -1,4 +1,5 @@
/* Autogrid object */ /* Autogrid object */
/* see http://codepen.io/raphaelgoetter/pen/KMgBJd */
@media (min-width: ($tiny + 1)) { @media (min-width: ($tiny + 1)) {
[class^="autogrid"], [class^="autogrid"],
[class*=" autogrid"] { [class*=" autogrid"] {

View File

@ -1,4 +1,5 @@
/* Media object */ /* Media object */
/* see http://codepen.io/raphaelgoetter/pen/KMWWwj */
@media (min-width: ($tiny + 1)) { @media (min-width: ($tiny + 1)) {
.o-media { .o-media {
display: flex; display: flex;