kentucky 1.0.5 → 1.1.0
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/.gitignore +2 -0
- data/CHANGELOG.md +9 -1
- data/app/assets/stylesheets/kentucky/grid/_grid.scss +6 -23
- data/lib/kentucky/version.rb +1 -1
- 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: 3590765d3c7c74b8fb7d2b2065d73a7b58c531bc
|
|
4
|
+
data.tar.gz: 0ff0c3dc8f6e47240511498ffb7ee468fdb915f6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 13c50615879c704998211742f8e3fd3ea05dee422c28fa99e96aaf0660281dc8af017117434785c2937f7def3fafac210fc8c6da95e3a8b34a57c8ae8bf1b378
|
|
7
|
+
data.tar.gz: 10aecf47faac94fc70bcebd7afcfe89b27eb8920acdb3c8fe8d741d3dd22797c5715dc8c090dd4cbde19409901c50ee6465cd5544c9982930eb714b9515bbc05
|
data/.gitignore
CHANGED
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
|
|
22
|
+
// Set Full Width Row
|
|
22
23
|
// ------------------------------------------------------------------- //
|
|
23
24
|
|
|
24
|
-
@mixin row
|
|
25
|
-
display: block;
|
|
25
|
+
@mixin row{
|
|
26
26
|
@include clearfix;
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
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
|
// ------------------------------------------------------------------- //
|
data/lib/kentucky/version.rb
CHANGED
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
|
|
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-
|
|
13
|
+
date: 2014-05-27 00:00:00.000000000 Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: sass
|