kentucky 1.0.5 → 1.1.0

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: 44e0524d75e052fdad885d0fc8552e849d6e40a7
4
- data.tar.gz: fd1a4673620bd9a732fbb3e38a527beb13a7153b
3
+ metadata.gz: 3590765d3c7c74b8fb7d2b2065d73a7b58c531bc
4
+ data.tar.gz: 0ff0c3dc8f6e47240511498ffb7ee468fdb915f6
5
5
  SHA512:
6
- metadata.gz: 1b64902133c3f1f426b979f42d7d267e13fc7fe71c8c5783730ee273d9941db10c162d130dcadab193ce94e015e78c7859dda9adda1d4d96695e7e25dedbfece
7
- data.tar.gz: de9bdfedb53dbe6427fed3be6a08728540db75318e29c51a976e96f881e34fec8da22b2a96a594fcd1aab8b6304f3b808df4dc409383f1925f5e97e7f730f128
6
+ metadata.gz: 13c50615879c704998211742f8e3fd3ea05dee422c28fa99e96aaf0660281dc8af017117434785c2937f7def3fafac210fc8c6da95e3a8b34a57c8ae8bf1b378
7
+ data.tar.gz: 10aecf47faac94fc70bcebd7afcfe89b27eb8920acdb3c8fe8d741d3dd22797c5715dc8c090dd4cbde19409901c50ee6465cd5544c9982930eb714b9515bbc05
data/.gitignore CHANGED
@@ -6,3 +6,5 @@ demo/
6
6
  tmp/
7
7
  tags
8
8
  app/assets/stylesheets/kentucky/config.codekit
9
+
10
+ /app/assets/config.codekit
data/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # 1.0.5
2
2
 
3
+ ### Feature
4
+
5
+ * Added row mixin that pulls content left/right to allow content to touch container edges
6
+ * Added clearfix to outer-container mixin
7
+
8
+ ---
9
+ # 1.0.5
10
+
3
11
  ### Bug fixes
4
12
 
5
13
  * Resolve spelling error in antialias helper
@@ -33,4 +41,4 @@
33
41
  * Initial release
34
42
  * Full addition of standalone grid system
35
43
  * Shifted gutters from using rems to pixels
36
- * Relocated all project variables to project-settings
44
+ * Relocated all project variables to project-settings
@@ -12,38 +12,21 @@ $column: $max-width / $grid-columns !default;
12
12
  // ------------------------------------------------------------------- //
13
13
 
14
14
  @mixin outer-container {
15
+ @include clearfix;
15
16
  max-width: $max-width;
16
17
  width: 100%;
17
18
  margin: 0 auto;
18
19
  }
19
20
 
20
21
  // ------------------------------------------------------------------- //
21
- // Set Rows
22
+ // Set Full Width Row
22
23
  // ------------------------------------------------------------------- //
23
24
 
24
- @mixin row($items){
25
- display: block;
25
+ @mixin row{
26
26
  @include clearfix;
27
-
28
- & > *{
29
- padding: 0 $grid-gutter;
30
- }
31
-
32
- & > *:nth-child(#{$items}n+1){
33
- padding-left: 0;
34
- padding-right: ($grid-gutter * 2);
35
- }
36
- & > *:nth-child(#{$items}n+2){
37
- padding-left: 0;
38
- }
39
-
40
- & > *:nth-child(#{$items}n-1){
41
- padding-right: 0;
42
- }
43
- & > *:nth-child(#{$items}n){
44
- padding-left: ($grid-gutter * 2);
45
- padding-right: 0;
46
- }
27
+ position: relative;
28
+ display: block;
29
+ margin: 0 -#{$grid-gutter};
47
30
  }
48
31
 
49
32
  // ------------------------------------------------------------------- //
@@ -1,3 +1,3 @@
1
1
  module Kentucky
2
- VERSION = "1.0.5"
2
+ VERSION = "1.1.0"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: kentucky
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.5
4
+ version: 1.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Aaron Clemmer
@@ -10,7 +10,7 @@ authors:
10
10
  autorequire:
11
11
  bindir: bin
12
12
  cert_chain: []
13
- date: 2014-05-01 00:00:00.000000000 Z
13
+ date: 2014-05-27 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: sass