flint-gs 1.3.1 → 1.3.2
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +4 -0
- data/lib/flint.rb +2 -2
- data/stylesheets/flint/mixins/lib/_flint-calculate.scss +1 -1
- data/stylesheets/flint/mixins/lib/_flint-main.scss +4 -6
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 990764b2978eec1f7ab24118804c08e54e69bcc3
|
4
|
+
data.tar.gz: 7ac80e47c010571f308eafc7923ed369ffe4612f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9c39256af2c1067b72cf87212426123abd1a455331d107b2b4f06fde7d61e15614c3a6bb3ccde51b68e4f53d84a7297091af725c1c4e2352e041f5a23155eefc
|
7
|
+
data.tar.gz: 2a147be38c26fa08cefa065f0eb52979d15b8a25a2f1bc9f56c2efb120fb49b1ab3668578f021d7c67c243cc121771b61c4d2c4fef7e1d0b6fc35d78a7447628
|
data/README.md
CHANGED
@@ -823,6 +823,10 @@ This will allow the instance functions to properly fallback from `.block .block_
|
|
823
823
|
|
824
824
|
Going to start keeping a log of changes starting (4/11/14).**
|
825
825
|
|
826
|
+
####5/19/14
|
827
|
+
* Fixed issue with comma seperated parent selectors causing errors and other issues.
|
828
|
+
* Added small clean up functions for comma seperated selector strings for various functions.
|
829
|
+
|
826
830
|
####5/16/14
|
827
831
|
* Added `$context: auto` to for fixed grids. It will automatically get the parent instance's width, and calculate on that instead of the base breakpoint.
|
828
832
|
* This fixes issues where parents couldn't contain children of the same span, and the further you would nest, the worse the issue would get.
|
data/lib/flint.rb
CHANGED
@@ -5,8 +5,8 @@ Compass::Frameworks.register('flint', :path => extension_path)
|
|
5
5
|
# Version is a number. If a version contains alphas, it will be created as a prerelease version
|
6
6
|
# Date is in the form of YYYY-MM-DD
|
7
7
|
module Flint
|
8
|
-
VERSION = "1.3.
|
9
|
-
DATE = "2014-05-
|
8
|
+
VERSION = "1.3.2"
|
9
|
+
DATE = "2014-05-20"
|
10
10
|
end
|
11
11
|
|
12
12
|
# Custom functions
|
@@ -162,7 +162,7 @@
|
|
162
162
|
@if $calcShift != NULL {
|
163
163
|
@if $calcGutter == NULL or $calcGutter == "normal" or $calcGutter == "default" or $calcGutter == "regular" and get-value(settings, gutter) != false {
|
164
164
|
// Check if context is set to auto
|
165
|
-
@if $calcContext == "auto"{
|
165
|
+
@if $calcContext == "auto" {
|
166
166
|
// Does parent exist?
|
167
167
|
@if $exists != false {
|
168
168
|
@if get-value(settings, grid) == "fluid" {
|
@@ -736,7 +736,7 @@
|
|
736
736
|
@for $i from 1 through length($key) {
|
737
737
|
@if exists($flint, nth($key, $i)) {
|
738
738
|
@if get-value(settings, grid) == "fluid" {
|
739
|
-
@if is-highest-breakpoint(nth($key, $i))
|
739
|
+
@if is-highest-breakpoint(nth($key, $i)) {
|
740
740
|
@media only screen and ( min-width: (calc-breakpoint(next, nth($key, $i), get-index(nth($key, $i))) + 1) ) {
|
741
741
|
@content;
|
742
742
|
}
|
@@ -745,10 +745,8 @@
|
|
745
745
|
@content;
|
746
746
|
}
|
747
747
|
}
|
748
|
-
}
|
749
|
-
|
750
|
-
@if get-value(settings, grid) == "fluid" {
|
751
|
-
@if is-highest-breakpoint(nth($key, $i)) == true {
|
748
|
+
} @else if get-value(settings, grid) == "fixed" {
|
749
|
+
@if is-highest-breakpoint(nth($key, $i)) {
|
752
750
|
@media only screen and ( min-width: calc-breakpoint(alias, nth($key, $i), get-index(nth($key, $i))) ) {
|
753
751
|
@content;
|
754
752
|
}
|
@@ -762,4 +760,4 @@
|
|
762
760
|
}
|
763
761
|
}
|
764
762
|
}
|
765
|
-
}
|
763
|
+
}
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: flint-gs
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.3.
|
4
|
+
version: 1.3.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ezekiel Gabrielse
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2014-05-
|
11
|
+
date: 2014-05-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: sass
|