kentucky 1.5.0 → 1.5.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 51b0f8fe505ec01d74c0cf3082d0c0fb8d6882d2
4
- data.tar.gz: c1b8f04d0d092944191bc1a5dcf7aa3a06d0b019
3
+ metadata.gz: a59862466ab84dfedecc0b0386cffb8eb2edbb14
4
+ data.tar.gz: b16ce2b8a155461ad4d31eb9943db2ca4cbbd008
5
5
  SHA512:
6
- metadata.gz: 3a967d715a10bfb29e864e4557b1543ec8a751338abb4f4eff301fd983dd2c77ba9511bb92ac77333b4bcc47904bdc983172cf36277b597324d9668520b164ef
7
- data.tar.gz: b9ff2c1920faa0cb5b0741124fb75c5bf3378850960ecd4faf3d2a809236572593e4f74e001a84a9023ddf54d79cb016dc2bd99115cc99e9dcd8099e6b9584d6
6
+ metadata.gz: e5dc584dc299de9dd4a6f4bb03088a247fc3823d40ccc6738fe6fb13888058e771db095b317dcc84f6e05546f164d824e16ebc12b7ed1042487c8505a2822c8d
7
+ data.tar.gz: e6c98487308e57c454ec9dfe6a0cc50bf561e7bd383a92a463127abef9146323e07b3e9de00beec858728a5c34aed6f144658392262a01facae5372502b9ae65
@@ -29,7 +29,7 @@ textarea{
29
29
  border-radius: $form-border-radius;
30
30
  box-shadow: $form-box-shadow;
31
31
  font: $form-font-size / $base-line-height $form-font-family;
32
- @include transition(border-color);
32
+ transition: border-color, .3s;
33
33
 
34
34
  &:hover{
35
35
  border-color: $form-border-color-hover;
@@ -21,7 +21,6 @@
21
21
  @import "helpers/position";
22
22
  @import "helpers/radial-gradient";
23
23
  @import "helpers/size";
24
- @import "helpers/transitions";
25
24
  @import "helpers/truncate";
26
25
 
27
26
  // Extends
@@ -1,3 +1,3 @@
1
1
  module Kentucky
2
- VERSION = "1.5.0"
2
+ VERSION = "1.5.1"
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.5.0
4
+ version: 1.5.1
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-09-03 00:00:00.000000000 Z
13
+ date: 2014-09-10 00:00:00.000000000 Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: sass
@@ -107,7 +107,6 @@ files:
107
107
  - app/assets/stylesheets/kentucky/helpers/_radial-gradient.scss
108
108
  - app/assets/stylesheets/kentucky/helpers/_size.scss
109
109
  - app/assets/stylesheets/kentucky/helpers/_strip-unit.scss
110
- - app/assets/stylesheets/kentucky/helpers/_transitions.scss
111
110
  - app/assets/stylesheets/kentucky/helpers/_triangle.scss
112
111
  - app/assets/stylesheets/kentucky/helpers/_truncate.scss
113
112
  - bin/kentucky
@@ -1,34 +0,0 @@
1
- // Shorthand mixin. Supports multiple parentheses-deliminated values for each variable.
2
- // Example: @include transition (all 2s ease-in-out);
3
- // @include transition (opacity 1s ease-in 2s, width 2s ease-out);
4
- // @include transition-property (transform, opacity);
5
-
6
- @mixin transition ($properties...) {
7
- @if length($properties) >= 1 {
8
- @include prefixer(transition, $properties, webkit moz spec);
9
- }
10
-
11
- @else {
12
- $properties: all 0.15s ease-out 0s;
13
- @include prefixer(transition, $properties, webkit moz spec);
14
- }
15
- }
16
-
17
- @mixin transition-property ($properties...) {
18
- -webkit-transition-property: transition-property-names($properties, 'webkit');
19
- -moz-transition-property: transition-property-names($properties, 'moz');
20
- transition-property: transition-property-names($properties, false);
21
- }
22
-
23
- @mixin transition-duration ($times...) {
24
- @include prefixer(transition-duration, $times, webkit moz spec);
25
- }
26
-
27
- @mixin transition-timing-function ($motions...) {
28
- // ease | linear | ease-in | ease-out | ease-in-out | cubic-bezier()
29
- @include prefixer(transition-timing-function, $motions, webkit moz spec);
30
- }
31
-
32
- @mixin transition-delay ($times...) {
33
- @include prefixer(transition-delay, $times, webkit moz spec);
34
- }