bullet_train-themes-light 1.0.24 → 1.0.27

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
  SHA256:
3
- metadata.gz: 62876938f237b59152f1a3615cfa11eab6f99b5a8f019a2ea5ce2f474bddfd93
4
- data.tar.gz: a60919cb5fa7ddde111e579b2dcda6153a18af2ae2f559e5ccbf8091eb076b12
3
+ metadata.gz: ced7678083d75ccc4b099fc7f6d3540891a48d96fcbf0556c7b4380cddef9ef9
4
+ data.tar.gz: ce97cd3e2ca0b51993bdf3d720a588332293823578c39eb335cd4a3da2976072
5
5
  SHA512:
6
- metadata.gz: bb63d3b24365d86bef9efc547a94e2fd32baaea77db3d8875efeb8e782ab042540db70f3ca38899470868b05ffc4ff27e979aeeda5feeacb98fb8816ff37fe6c
7
- data.tar.gz: 84daffe16622fb1279926d52e32c25ba9b4b49b0243f1b0276095029dfb11ee4d67daec0f8d9621367b688e298ff1a0480500faf956f6400e48b720bcd25bd5d
6
+ metadata.gz: 102d6281899fbe10830b9b1f738ec2b6f96deb15afa903c40da1a1f35667cd71a4f3d203c6a2711e375d4659d4c23189e47784f330634a0dc86c436b75b352ed
7
+ data.tar.gz: 7e2c0ba00aaed186f510195e58d18408b17ddfc8dc566dd8ad48525337038d2b8e00e67cec53c4649b52d99a3304f02419614b8ebbb1a10114b7008e637a963f
@@ -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.27"
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.27
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-16 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