Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/JohnAlbin/normalize-scss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/sass
diff options
context:
space:
mode:
authorJohnAlbin <virtually.johnalbin@gmail.com>2015-11-27 05:54:58 +0300
committerJohnAlbin <virtually.johnalbin@gmail.com>2015-11-27 06:35:18 +0300
commit9cb2a5bc1433f2e6e5a1cfd0f07af758463d92f9 (patch)
treee74a75e80a1a0cc9390283804e80aa520546ad4c /sass
parent211e3110d7667ed702fb45c3717bac84075d42c4 (diff)
Using rem units with IE8 support generates incorrect CSS. Fixes #47
Diffstat (limited to 'sass')
-rw-r--r--sass/normalize/_vertical-rhythm.scss30
1 files changed, 19 insertions, 11 deletions
diff --git a/sass/normalize/_vertical-rhythm.scss b/sass/normalize/_vertical-rhythm.scss
index efd2aa5..40c95f8 100644
--- a/sass/normalize/_vertical-rhythm.scss
+++ b/sass/normalize/_vertical-rhythm.scss
@@ -5,17 +5,17 @@
// CSS. If you are looking for a robust solution, look at the excellent Typey
// library. @see https://github.com/jptaranto/typey
-@function normalize-rhythm($value, $relative-to: $base-font-size) {
- @if unit($value) != 'px' {
+@function normalize-rhythm($value, $relative-to: $base-font-size, $unit: $base-unit) {
+ @if unit($value) != px {
@error "The normalize vertical-rhythm module only supports px inputs. The typey library is better.";
}
- @if $base-unit == rem {
+ @if $unit == rem {
@return ($value / $base-font-size) * 1rem;
}
- @else if $base-unit == em {
+ @else if $unit == em {
@return ($value / $relative-to) * 1em;
}
- @else { // $base-unit == px
+ @else { // $unit == px
@return $value;
}
}
@@ -33,18 +33,26 @@
}
@mixin normalize-rhythm($property, $values, $relative-to: $base-font-size) {
- $px-fallback: $values;
- @if type-of($values) != 'list' {
- $px-fallback: append((), $values);
+ $value-list: $values;
+ $sep: space;
+ @if type-of($values) == 'list' {
+ $sep: list-separator($values);
+ }
+ @else {
+ $value-list: append((), $values);
}
- $sep: list-separator($px-fallback);
+
$normalized-values: ();
+ $px-fallback: ();
- @each $value in $px-fallback {
+ @each $value in $value-list {
+ $px-value: $value;
@if unitless($value) and $value != 0 {
$value: $value * normalize-rhythm($base-line-height, $relative-to);
+ $px-value: $px-value * normalize-rhythm($base-line-height, $relative-to, px);
}
- $normalized-values: append($normalized-values, $value);
+ $normalized-values: append($normalized-values, $value, $sep);
+ $px-fallback: append($px-fallback, $px-value, $sep);
}
@if $base-unit == rem and support-for(ie, 8) {
#{$property}: $px-fallback;