flashgrid 3.3.0 → 3.3.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: 30927f439da1c0f4a5972e27e9260fc9d2a76f6c
4
- data.tar.gz: f7c6d592f41e1c436fa89c2345708a0aa1761e9a
3
+ metadata.gz: 2cf631bd6583e975afd1f2c75f77697e7f366992
4
+ data.tar.gz: b6e36b293c8e194482b2c33e4c48768ca2e6fb06
5
5
  SHA512:
6
- metadata.gz: bfb98838ed6930a4272e823ebaa71dede8ebf9640ab82b333373378bc096ae3bf0c921eaf7a96305e2eebb88860cf50d9f05432ddc5c3bdff07e399e738d5065
7
- data.tar.gz: 19e4e88dd1f1286b59130fdb59955d94097a894e676ed12dece5656ca9252bb7c6112c1b3cfca49e3700e3dd6caf989d4f0bb683641ba934c19e6c1c069dede8
6
+ metadata.gz: 0db7b62cb3ff4e36644f5f40ab4ff50e119e35e6843dd11e2e15728d0a8526e56d63e126c2fd4789953a0037dda54f5b8c57be6ad9ad6bf041092a359ee30b4f
7
+ data.tar.gz: d5e1dc4f4ff6ef5263c52d69ba7e32bb82d2996d3ef8fcf713fc158f8636885a167abcb8f867469ada6cc5e6ad1c01c421a017347855093dd05a02a663460edc
@@ -1,3 +1,3 @@
1
1
  module Flashgrid
2
- VERSION = "3.3.0"
2
+ VERSION = "3.3.1"
3
3
  end
@@ -1,17 +1,27 @@
1
1
  /* Table of Contents
2
2
  ==================================================
3
- #Animate */
3
+ #Animation
4
+ #Animation Delay
5
+ #Animation Duration */
4
6
 
5
- /* #Animate
7
+ /* #Animation
6
8
  ================================================== */
7
9
  .animated {
8
10
  -webkit-animation-duration: 1s;
9
11
  animation-duration: 1s;
10
12
  -webkit-animation-fill-mode: both;
11
13
  animation-fill-mode: both;
14
+ -webkit-backface-visibility: hidden !important;
15
+ backface-visibility: hidden !important;
16
+ -webkit-perspective: 1000;
17
+ perspective: 1000;
12
18
  position: relative;
13
- z-index: 1;
19
+ z-index: 1 !important;
14
20
  }
21
+ .animated:active,
22
+ .animated.active,
23
+ .animated:hover,
24
+ .animated:focus { z-index: 2 !important; }
15
25
  .animated.hinge {
16
26
  -webkit-animation-duration: 2s;
17
27
  animation-duration: 2s;
@@ -2318,4 +2328,66 @@
2318
2328
  .rollOut {
2319
2329
  -webkit-animation-name: rollOut;
2320
2330
  animation-name: rollOut;
2331
+ }
2332
+
2333
+ /* #Animation Delay
2334
+ ================================================== */
2335
+ .animated.animated-delay-shortest {
2336
+ -webkit-animation-delay: 0.25s;
2337
+ animation-delay: 0.25s;
2338
+ }
2339
+ .animated.animated-delay-shorter {
2340
+ -webkit-animation-delay: 0.5s;
2341
+ animation-delay: 0.5s;
2342
+ }
2343
+ .animated.animated-delay-short {
2344
+ -webkit-animation-delay: 0.75s;
2345
+ animation-delay: 0.75s;
2346
+ }
2347
+ .animated.animated-delay-default {
2348
+ -webkit-animation-delay: 1s;
2349
+ animation-delay: 1s;
2350
+ }
2351
+ .animated.animated-delay-long {
2352
+ -webkit-animation-delay: 1.25s;
2353
+ animation-delay: 1.25s;
2354
+ }
2355
+ .animated.animated-delay-longer {
2356
+ -webkit-animation-delay: 1.5s;
2357
+ animation-delay: 1.5s;
2358
+ }
2359
+ .animated.animated-delay-longest {
2360
+ -webkit-animation-delay: 1.75s;
2361
+ animation-delay: 1.75s;
2362
+ }
2363
+
2364
+ /* #Animation Duration
2365
+ ================================================== */
2366
+ .animated.animated-duration-fastest {
2367
+ -webkit-animation-duration: 0.25s;
2368
+ animation-duration: 0.25s;
2369
+ }
2370
+ .animated.animated-duration-faster {
2371
+ -webkit-animation-duration: 0.5s;
2372
+ animation-duration: 0.5s;
2373
+ }
2374
+ .animated.animated-duration-fast {
2375
+ -webkit-animation-duration: 0.75s;
2376
+ animation-duration: 0.75s;
2377
+ }
2378
+ .animated.animated-duration-default {
2379
+ -webkit-animation-duration: 1s;
2380
+ animation-duration: 1s;
2381
+ }
2382
+ .animated.animated-duration-slow {
2383
+ -webkit-animation-duration: 1.25s;
2384
+ animation-duration: 1.25s;
2385
+ }
2386
+ .animated.animated-duration-slower {
2387
+ -webkit-animation-duration: 1.5s;
2388
+ animation-duration: 1.5s;
2389
+ }
2390
+ .animated.animated-duration-slowest {
2391
+ -webkit-animation-duration: 1.75s;
2392
+ animation-duration: 1.75s;
2321
2393
  }
@@ -16,6 +16,10 @@
16
16
  .spinner {
17
17
  -webkit-animation-fill-mode: both;
18
18
  animation-fill-mode: both;
19
+ -webkit-backface-visibility: hidden !important;
20
+ backface-visibility: hidden !important;
21
+ -webkit-perspective: 1000;
22
+ perspective: 1000;
19
23
  margin: 15% auto 0 auto;
20
24
  position: relative;
21
25
  text-align: center;
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: flashgrid
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.3.0
4
+ version: 3.3.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Juan Gomez
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-11-07 00:00:00.000000000 Z
11
+ date: 2014-11-08 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler