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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: a59862466ab84dfedecc0b0386cffb8eb2edbb14
|
4
|
+
data.tar.gz: b16ce2b8a155461ad4d31eb9943db2ca4cbbd008
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
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
|
-
|
32
|
+
transition: border-color, .3s;
|
33
33
|
|
34
34
|
&:hover{
|
35
35
|
border-color: $form-border-color-hover;
|
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.5.
|
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-
|
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
|
-
}
|