bullet_train-themes-light 1.0.24 → 1.0.25

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
  SHA256:
3
- metadata.gz: 62876938f237b59152f1a3615cfa11eab6f99b5a8f019a2ea5ce2f474bddfd93
4
- data.tar.gz: a60919cb5fa7ddde111e579b2dcda6153a18af2ae2f559e5ccbf8091eb076b12
3
+ metadata.gz: 1ba656f462e3dba514368333ccf9c22da6ecabef4607cf7ff200032685e30b87
4
+ data.tar.gz: e01fdde3114a66b5bee9505d4a3e3b895897c39a66ce8a59e5201a49de5af100
5
5
  SHA512:
6
- metadata.gz: bb63d3b24365d86bef9efc547a94e2fd32baaea77db3d8875efeb8e782ab042540db70f3ca38899470868b05ffc4ff27e979aeeda5feeacb98fb8816ff37fe6c
7
- data.tar.gz: 84daffe16622fb1279926d52e32c25ba9b4b49b0243f1b0276095029dfb11ee4d67daec0f8d9621367b688e298ff1a0480500faf956f6400e48b720bcd25bd5d
6
+ metadata.gz: c39c016335ec4ef90a44f0fff17b1f8537c9ac8d865c63fa5587602391a34c746c6be52f3be5a44caa9df83e92ae26ded6e3e0e4c810a0010058421f989041c1
7
+ data.tar.gz: 647121a245e504cd38ae19ad8690e8e5c95472e314a4ae8f50f6e6e69d04c658449592ebd04072bc60f9cdff5a40954976f445de0ba0609882f1a783b1f89600
@@ -5,6 +5,7 @@
5
5
 
6
6
  @import "./electron";
7
7
  @import './fields';
8
+ @import './turn';
8
9
 
9
10
  /* TODO there is probably a better way to do this. */
10
11
  .hover-indent-child {
@@ -0,0 +1,44 @@
1
+ [data-turn-exit],
2
+ [data-turn-enter] {
3
+ animation-timing-function: cubic-bezier(0.65, 0.05, 0.35, 1);
4
+ animation-fill-mode: forwards;
5
+ }
6
+
7
+ html.turn-exit [data-turn-exit] {
8
+ animation-name: fade-out-up;
9
+ animation-duration: .3s;
10
+ }
11
+
12
+ html.turn-enter [data-turn-enter] {
13
+ animation-name: fade-in-up;
14
+ animation-duration: .6s;
15
+ }
16
+
17
+ html.turn-before-exit [data-turn-exit],
18
+ html.turn-exit [data-turn-exit] {
19
+ will-change: transform, opacity;
20
+ }
21
+
22
+ @keyframes fade-out-up {
23
+ 0% {
24
+ opacity: 1;
25
+ transform: translateZ(0)
26
+ }
27
+
28
+ 100% {
29
+ opacity: 0;
30
+ transform: translate3d(0, -4rem, 0)
31
+ }
32
+ }
33
+
34
+ @keyframes fade-in-up {
35
+ 0% {
36
+ opacity: 0;
37
+ transform: translate3d(0, 4rem, 0)
38
+ }
39
+
40
+ 100% {
41
+ opacity: 1;
42
+ transform: translateZ(0)
43
+ }
44
+ }
@@ -4,7 +4,7 @@
4
4
  <%= render 'shared/layouts/head' %>
5
5
  </head>
6
6
  <body class="bg-light-gradient text-gray-700 text-sm font-normal electron-draggable dark:bg-dark-gradient dark:text-darkPrimary-300">
7
- <div data-turbo="false">
7
+ <div data-turn-enter data-turn-exit>
8
8
  <%= yield %>
9
9
  </div>
10
10
  </body>
@@ -1,7 +1,7 @@
1
1
  module BulletTrain
2
2
  module Themes
3
3
  module Light
4
- VERSION = "1.0.24"
4
+ VERSION = "1.0.25"
5
5
  end
6
6
  end
7
7
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bullet_train-themes-light
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.24
4
+ version: 1.0.25
5
5
  platform: ruby
6
6
  authors:
7
7
  - Andrew Culver
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-05-31 00:00:00.000000000 Z
11
+ date: 2022-06-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails
@@ -65,6 +65,7 @@ files:
65
65
  - app/assets/stylesheets/light/tailwind/components.css
66
66
  - app/assets/stylesheets/light/tailwind/dark-mode.css
67
67
  - app/assets/stylesheets/light/tailwind/utilities.css
68
+ - app/assets/stylesheets/light/turn.css
68
69
  - app/assets/stylesheets/tailwindcss/base.css
69
70
  - app/assets/stylesheets/tailwindcss/components.css
70
71
  - app/assets/stylesheets/tailwindcss/utilities.css
@@ -124,7 +125,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
124
125
  - !ruby/object:Gem::Version
125
126
  version: '0'
126
127
  requirements: []
127
- rubygems_version: 3.2.22
128
+ rubygems_version: 3.3.7
128
129
  signing_key:
129
130
  specification_version: 4
130
131
  summary: 'Bullet Train Themes: Light'