olay-rails 0.1.3 → 0.1.4

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
  SHA512:
3
- data.tar.gz: d576d4327eef3314aa28bf00da03c5bfbfe3370daf7bc3642540d008f3967367d56af1a359e397dde23e9889ebc554dd22f074294d3f8981e8debd5ef5c5f66a
4
- metadata.gz: 7aaf0cac7596d0f11294d80eec703a20440d04d8db385b1aceb14d833d8d0ca5664e2df8f5561a286d20e2c5be5a725fda89dbe202a51f2cab733219b090395c
3
+ metadata.gz: 001159fb1812f1bf0989aa239b5c607ea999ce20d58d034a8f4ace8faf10f409d61d2d842ad4b908551a6cceb785813a04957b92c224ebb66b5b7b993a644426
4
+ data.tar.gz: 90f92fece5782e56261e1b404a262ff2231e27552382c5948f5a5bec61d40df6896eb87843637f5b862706afcbbffebaf6ca875564333e9288e08cabb2fa1e0e
5
5
  SHA1:
6
- data.tar.gz: c64677dd3c9b336c88c72ec0bd1493a236f2a383
7
- metadata.gz: f7067c70f35fcce6a569f03e37c5d945cc893e4a
6
+ metadata.gz: 6986f1c388b29ed89aa0a22ce0a70c13d04a6588
7
+ data.tar.gz: dfb57902d6aa600617640b457b7d37397749eaf6
@@ -1,6 +1,6 @@
1
1
  module Olay
2
- VERSION = '0.1.2'
2
+ VERSION = '0.1.3'
3
3
  module Rails
4
- VERSION = '0.1.3'
4
+ VERSION = '0.1.4'
5
5
  end
6
6
  end
@@ -50,7 +50,7 @@
50
50
  // What transition should be used? This simply refers to a class that will
51
51
  // be added to the `$container` when shown. Use this to style different
52
52
  // transitions with CSS.
53
- transition: 'js-olay-flip',
53
+ transition: 'js-olay-scale-up',
54
54
 
55
55
  // How long should the olay take to transition in or out?
56
56
  // `0` means instantly.
@@ -35,8 +35,8 @@ body.js-olay-visible {
35
35
 
36
36
  .js-olay-scale-up.js-olay-container,
37
37
  .js-olay-scale-down.js-olay-container,
38
- .js-olay-flip.js-olay-container,
39
- .js-olay-slide.js-olay-container {
38
+ .js-olay-slide.js-olay-container,
39
+ .js-olay-flip.js-olay-container {
40
40
  opacity: 0;
41
41
  -webkit-transition: all .25s cubic-bezier(.5, 0, .5, 1);
42
42
  -moz-transition: all .25s cubic-bezier(.5, 0, .5, 1);
@@ -47,8 +47,8 @@ body.js-olay-visible {
47
47
 
48
48
  .js-olay-scale-up.js-olay-show.js-olay-container,
49
49
  .js-olay-scale-down.js-olay-show.js-olay-container,
50
- .js-olay-flip.js-olay-show.js-olay-container,
51
- .js-olay-slide.js-olay-show.js-olay-container {
50
+ .js-olay-slide.js-olay-show.js-olay-container,
51
+ .js-olay-flip.js-olay-show.js-olay-container {
52
52
  opacity: 1;
53
53
  }
54
54
 
@@ -62,8 +62,8 @@ body.js-olay-visible {
62
62
 
63
63
  .js-olay-scale-up .js-olay-content,
64
64
  .js-olay-scale-down .js-olay-content,
65
- .js-olay-flip .js-olay-content,
66
- .js-olay-slide .js-olay-content {
65
+ .js-olay-slide .js-olay-content,
66
+ .js-olay-flip .js-olay-content {
67
67
  -webkit-transition: all .25s cubic-bezier(.5, 0, .5, 1);
68
68
  -moz-transition: all .25s cubic-bezier(.5, 0, .5, 1);
69
69
  -ms-transition: all .25s cubic-bezier(.5, 0, .5, 1);
@@ -96,22 +96,6 @@ body.js-olay-visible {
96
96
  transform: scale(1);
97
97
  }
98
98
 
99
- .js-olay-flip .js-olay-content {
100
- -webkit-transform: rotateX(90deg);
101
- -moz-transform: rotateX(90deg);
102
- -ms-transform: rotateX(90deg);
103
- -o-transform: rotateX(90deg);
104
- transform: rotateX(90deg);
105
- }
106
-
107
- .js-olay-flip.js-olay-show .js-olay-content {
108
- -webkit-transform: rotateX(0);
109
- -moz-transform: rotateX(0);
110
- -ms-transform: rotateX(0);
111
- -o-transform: rotateX(0);
112
- transform: rotateX(0);
113
- }
114
-
115
99
  .js-olay-slide .js-olay-content {
116
100
  -webkit-transform: translate(0, -100%);
117
101
  -moz-transform: translate(0, -100%);
@@ -127,3 +111,19 @@ body.js-olay-visible {
127
111
  -o-transform: translate(0, 0);
128
112
  transform: translate(0, 0);
129
113
  }
114
+
115
+ .js-olay-flip .js-olay-content {
116
+ -webkit-transform: rotateX(90deg);
117
+ -moz-transform: rotateX(90deg);
118
+ -ms-transform: rotateX(90deg);
119
+ -o-transform: rotateX(90deg);
120
+ transform: rotateX(90deg);
121
+ }
122
+
123
+ .js-olay-flip.js-olay-show .js-olay-content {
124
+ -webkit-transform: rotateX(0);
125
+ -moz-transform: rotateX(0);
126
+ -ms-transform: rotateX(0);
127
+ -o-transform: rotateX(0);
128
+ transform: rotateX(0);
129
+ }
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: olay-rails
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.3
4
+ version: 0.1.4
5
5
  platform: ruby
6
6
  authors:
7
7
  - Casey Foster
@@ -22,7 +22,7 @@ dependencies:
22
22
  version: "3.1"
23
23
  type: :runtime
24
24
  version_requirements: *id001
25
- description: Places Olay 0.1.2 in the Rails asset pipeline.
25
+ description: Places Olay 0.1.3 in the Rails asset pipeline.
26
26
  email:
27
27
  - c@sey.me
28
28
  executables: []