bootstrap-material-design 0.0.1 → 0.0.2

Sign up to get free protection for your applications and to get access to all the features.
@@ -19,16 +19,22 @@
19
19
  margin-top: -10px;
20
20
  border-radius: 100%;
21
21
  background-color: rgba(0, 0, 0, 0.05);
22
- transform: scale(1);
23
- transform-origin: 50%;
22
+ -webkit-transform: scale(1);
23
+ -ms-transform: scale(1);
24
+ transform: scale(1);
25
+ -webkit-transform-origin: 50%;
26
+ -ms-transform-origin: 50%;
27
+ transform-origin: 50%;
24
28
  opacity: 0;
25
29
  pointer-events: none;
26
30
  }
27
31
  .ripple.ripple-on {
28
- transition: opacity 0.15s ease-in 0s, transform 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
32
+ -webkit-transition: opacity 0.15s ease-in 0s, -webkit-transform 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
33
+ transition: opacity 0.15s ease-in 0s, transform 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
29
34
  opacity: 1;
30
35
  }
31
36
  .ripple.ripple-out {
32
- transition: opacity 0.1s linear 0s !important;
37
+ -webkit-transition: opacity 0.1s linear 0s !important;
38
+ transition: opacity 0.1s linear 0s !important;
33
39
  opacity: 0;
34
- }
40
+ }
@@ -4,7 +4,7 @@ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
4
 
5
5
  Gem::Specification.new do |s|
6
6
  s.name = 'bootstrap-material-design'
7
- s.version = '0.0.1'
7
+ s.version = '0.0.2'
8
8
  s.date = '2014-09-29'
9
9
  s.summary = "Material Design for Bootstrap"
10
10
  s.authors = ["Paul King"]
@@ -18,4 +18,4 @@ Gem::Specification.new do |s|
18
18
  s.require_paths = ['lib']
19
19
 
20
20
  s.add_dependency 'bootstrap-sass', '3.2.0.2'
21
- end
21
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bootstrap-material-design
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.1
4
+ version: 0.0.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Paul King