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",
"version": "6.0.7",
"version": "6.0.8",
"homepage": "http://www.knacss.com/",
"authors": [
"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)
- application de `$font-stack-headings` uniquement si différent de `$font-stack-common`

View File

@ -1,6 +1,6 @@
{
"name": "knacss",
"version": "6.0.7",
"version": "6.0.8",
"homepage": "http://www.knacss.com/",
"bugs": "https://github.com/alsacreations/KNACSS/issues",
"author": [

View File

@ -79,14 +79,14 @@ figure {
h1, .#{$kna-namespace}h1-like {
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;
}
}
h2, .#{$kna-namespace}h2-like {
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;
}
}

View File

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

View File

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