link-hover-color
application de `$link-hover-color` uniquement si différent de `$link-color`
This commit is contained in:
parent
366af95681
commit
ad445246dd
6 changed files with 9 additions and 4 deletions
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "KNACSS",
|
||||
"version": "6.0.7",
|
||||
"version": "6.0.8",
|
||||
"homepage": "http://www.knacss.com/",
|
||||
"authors": [
|
||||
"Raphaël GOETTER, Alsacreations"
|
||||
|
|
|
@ -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`
|
||||
|
||||
|
|
|
@ -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": [
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
/* Autogrid object */
|
||||
/* see http://codepen.io/raphaelgoetter/pen/KMgBJd */
|
||||
@media (min-width: ($tiny + 1)) {
|
||||
[class^="autogrid"],
|
||||
[class*=" autogrid"] {
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
/* Media object */
|
||||
/* see http://codepen.io/raphaelgoetter/pen/KMWWwj */
|
||||
@media (min-width: ($tiny + 1)) {
|
||||
.o-media {
|
||||
display: flex;
|
||||
|
|
Loading…
Reference in a new issue