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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 0b91ab49f37148e9d4d5861bd6e5fe3b1ddad1df
4
- data.tar.gz: d026c5cd4cbacde91ab291f635bf15725c1156ea
3
+ metadata.gz: 990764b2978eec1f7ab24118804c08e54e69bcc3
4
+ data.tar.gz: 7ac80e47c010571f308eafc7923ed369ffe4612f
5
5
  SHA512:
6
- metadata.gz: 45c53fd2dcc718423de0441256d1092ac7a1a0efc2e0dc83bea1739f82f973f45a5b45382d9c3dbe1d34ea36b39d17a1701b4dabdabc7a25c75aff26ea0affa8
7
- data.tar.gz: 9cc85ce2fc30acfd46e1609b040e259b6eef0b50fb3e2d1c2cc66876a56efc3071e6bd8d4e18f5f1097caaebcbcb7c5f6fca3fb5170c38420ed32fc610a96c7b
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.1"
9
- DATE = "2014-05-19"
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)) == true {
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
- } @else if get-value(settings, grid) == "fixed" {
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.1
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-19 00:00:00.000000000 Z
11
+ date: 2014-05-20 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: sass