flint-gs 1.0.0 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +4 -6
- data/lib/flint.rb +1 -1
- data/stylesheets/flint/mixins/lib/_flint-calculate.scss +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ffa15e67840d1a11e700e630a816fba23acb1368
|
4
|
+
data.tar.gz: 0db073df8809750b99dc3908c0ad9b04330257c6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4d6741f6773afcee8a100af2ad20506562f2ce0fa6dc62ee7283871d8f426e9a0a097ced5f40cfb1f4d2674ea466374900b0c362e3f2fab2f8e2485952552538
|
7
|
+
data.tar.gz: 888b736329d51b65aed8829c08428901d5d29d211bb0b7ddef5128b10e2c9f6e71dc88a63d065524b88a449c1dc1f8cfa4af3da84823082d33d345de1e362141
|
data/README.md
CHANGED
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
**Flint is designed to be a flexible layout toolkit that developers can use for any responsive grid-based project.** Built on *Sass 3.3*, Flint is capable of complex responsive layouts customized at each breakpoint; all while using a single mixin, having minimal output, as well as being completely semantic. All of your layout settings are housed in a simple config file and is immensely customizable. Flint will only output the code you need, and nothing else. We handle the hard stuff, so you can focus on the rest.
|
4
4
|
|
5
|
-
Here's a small [demo on Sassmeister](http://sassmeister.com/gist/9657552) *(older version : v0.0.3)* to show what Flint is capable of.
|
5
|
+
Here's a small [demo on Sassmeister](http://sassmeister.com/gist/9657552) *(older version : v0.0.3)* to show what Flint is capable of.
|
6
6
|
|
7
7
|
Enjoy.
|
8
8
|
|
@@ -11,12 +11,10 @@ Enjoy.
|
|
11
11
|
###Installation
|
12
12
|
|
13
13
|
[1] `gem install flint-gs`
|
14
|
-
[2] Add `require
|
15
|
-
[3] Import it in your stylesheets with `@import flint
|
14
|
+
[2] Add `require "flint"` to your `config.rb`
|
15
|
+
[3] Import it in your stylesheets with `@import "flint";`
|
16
16
|
|
17
|
-
If you don't want to install the gem,
|
18
|
-
|
19
|
-
*If something is broken, I apologize But, I work on this from 2 locations, so sometimes the files are a work in progress and not always stable. Feel free to open an issue though, just so I can keep a record of things that break.*
|
17
|
+
If you don't want to install the gem, download/clone the current build files and use the starter `config.rb` to require any custom functions Flint uses. Currently this is required, as we're making use of custom SassScript functions until the 'script `&`' [returns to Sass](https://gist.github.com/nex3/8050187). Adjust the paths according to your project.
|
20
18
|
|
21
19
|
###Config
|
22
20
|
|
data/lib/flint.rb
CHANGED
@@ -5,7 +5,7 @@ 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.0.
|
8
|
+
VERSION = "1.0.1"
|
9
9
|
DATE = "2014-04-21"
|
10
10
|
end
|
11
11
|
|
@@ -142,7 +142,7 @@
|
|
142
142
|
} @else {
|
143
143
|
|
144
144
|
$outputWidth: (calc-width($calcKey, $calcSpan, $calcContext)) - ((calc-margin($calcKey, $calcSpan, $calcContext))*2);
|
145
|
-
$outputMarginRight: calc-margin($calcKey, $calcSpan,
|
145
|
+
$outputMarginRight: calc-margin($calcKey, $calcSpan, $calcContext);
|
146
146
|
$outputMarginLeft: ( if( $calcShift > 0,
|
147
147
|
(calc-margin($calcKey, $calcSpan, $calcContext)) + (calc-width($calcKey, $calcShift, $calcContext)),
|
148
148
|
(calc-margin($calcKey, -$calcSpan, $calcContext)) + (calc-width($calcKey, $calcShift, $calcContext))
|