kentucky 1.2.1 → 1.4.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: d36a21a735b09f5064b287dcca57466f86e5b654
4
- data.tar.gz: fc977564db765ac99e22f8504f956ad717c18562
3
+ metadata.gz: 4678f526941d462632806f7671099b8c69d38333
4
+ data.tar.gz: 72663f91824860f48961e1028295febe756fe216
5
5
  SHA512:
6
- metadata.gz: 5597bede8b51b3201d07761b8c27f67ae0e798f079e957a7781eb834bf19815fc3dde568090e2eaf20c06ecf1f357764f8671858c8d0bee58ceb2272767c9b59
7
- data.tar.gz: d6251f351cc695bd83735e51c59ff0a56e7e581b843350e5877a84f65e39213ba9927b518e24ca17219495803590f72c719c98f64097d70c7e8a2b01709f64b2
6
+ metadata.gz: 64c30094a91871cd4793c2f1acba4530b62d4f63c3bf959f6cbb2001b7af41f8c0813992dc2cbe32a6bbc93e3a0caa93fc651eeecd9b2eb346cd6226dc323cc9
7
+ data.tar.gz: 9392a98270a1dc98ae8e74b224dae597961543d76f55498eafce0b18ad308b5e3228bd2d882d1e2d25cd6044fa650089581f1abf890bca963901249a5f8508f3
data/.gitignore CHANGED
@@ -6,7 +6,6 @@ demo/
6
6
  tmp/
7
7
  tags
8
8
  app/assets/stylesheets/kentucky/config.codekit
9
-
10
9
  /app/assets/config.codekit
11
-
12
10
  /app/assets/stylesheets/kentucky/.DS_Store
11
+ app/assets/stylesheets/.DS_Store
@@ -1,4 +1,3 @@
1
- ---
2
1
  # 1.2.1
3
2
 
4
3
  ### Bug Fix
@@ -10,6 +10,7 @@ fieldset{
10
10
  }
11
11
 
12
12
  label{
13
+ display: block;
13
14
  margin-bottom: $base-line-height / 4;
14
15
  font-weight: bold;
15
16
 
@@ -19,7 +19,6 @@
19
19
  @import "helpers/headings";
20
20
  @import "helpers/linear-gradient";
21
21
  @import "helpers/position";
22
- @import "helpers/prefixer";
23
22
  @import "helpers/radial-gradient";
24
23
  @import "helpers/size";
25
24
  @import "helpers/transitions";
@@ -42,17 +42,24 @@ $column: $max-width / $grid-columns !default;
42
42
  }
43
43
 
44
44
  @else {
45
- float: left;
46
- width: $col-width;
47
- padding: 0 $grid-gutter;
45
+
46
+ @if $flow == left {
47
+ float: left;
48
+ width: $col-width;
49
+ padding: 0 $grid-gutter;
50
+ }
48
51
 
49
52
  @if $flow == "right"{
50
53
  float: right;
54
+ width: $col-width;
55
+ padding: 0 $grid-gutter;
51
56
  }
52
57
 
53
58
  @else if $flow == "center" {
54
59
  float: none;
60
+ width: $col-width;
55
61
  margin: 0 auto;
62
+ padding: 0 $grid-gutter;
56
63
  }
57
64
  }
58
65
  }
@@ -34,7 +34,7 @@
34
34
  @if $height == auto{
35
35
  height: $height;
36
36
  }
37
- @if unitless($height){
37
+ @else if unitless($height){
38
38
  height: $height + px;
39
39
  }
40
40
  @else if not(unitless($height)){
@@ -1,3 +1,3 @@
1
1
  module Kentucky
2
- VERSION = "1.2.1"
2
+ VERSION = "1.4.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.2.1
4
+ version: 1.4.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-06-20 00:00:00.000000000 Z
13
+ date: 2014-08-28 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: sass
@@ -104,7 +104,6 @@ files:
104
104
  - app/assets/stylesheets/kentucky/helpers/_linear-gradient.scss
105
105
  - app/assets/stylesheets/kentucky/helpers/_mute.scss
106
106
  - app/assets/stylesheets/kentucky/helpers/_position.scss
107
- - app/assets/stylesheets/kentucky/helpers/_prefixer.scss
108
107
  - app/assets/stylesheets/kentucky/helpers/_radial-gradient.scss
109
108
  - app/assets/stylesheets/kentucky/helpers/_size.scss
110
109
  - app/assets/stylesheets/kentucky/helpers/_strip-unit.scss
@@ -1,34 +0,0 @@
1
- // ------------------------------------------------------------------- //
2
- // Browser prefixing
3
- //
4
- // @include prefixer(border-radius, 5px, webkit ms spec);
5
- // ------------------------------------------------------------------- //
6
-
7
- $prefix-webkit: true !default;
8
- $prefix-mozilla: true !default;
9
- $prefix-ms: true !default;
10
- $prefix-opera: true !default;
11
- $prefix-spec: true !default;
12
-
13
- @mixin prefixer($property, $value, $prefixes){
14
- @each $prefix in $prefixes{
15
- @if $prefix == webkit{
16
- -webkit-#{$property}: $value;
17
- }
18
- @else if $prefix == moz{
19
- -moz-#{$property}: $value;
20
- }
21
- @else if $prefix == ms{
22
- -ms-#{$property}: $value;
23
- }
24
- @else if $prefix == o{
25
- -o-#{$property}: $value;
26
- }
27
- @else if $prefix == spec{
28
- #{$property}: $value;
29
- }
30
- @else{
31
- @warn "Unrecognized prefix: #{$prefix}";
32
- }
33
- }
34
- }