bootstrap-material-design 0.0.0 → 0.0.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,34 @@
1
+ .withripple {
2
+ position: relative;
3
+ }
4
+ .ripple-wrapper {
5
+ position: absolute;
6
+ top: 0;
7
+ left: 0;
8
+ z-index: 1;
9
+ width: 100%;
10
+ height: 100%;
11
+ overflow: hidden;
12
+ border-radius: 2px;
13
+ }
14
+ .ripple {
15
+ position: absolute;
16
+ width: 20px;
17
+ height: 20px;
18
+ margin-left: -10px;
19
+ margin-top: -10px;
20
+ border-radius: 100%;
21
+ background-color: rgba(0, 0, 0, 0.05);
22
+ transform: scale(1);
23
+ transform-origin: 50%;
24
+ opacity: 0;
25
+ pointer-events: none;
26
+ }
27
+ .ripple.ripple-on {
28
+ transition: opacity 0.15s ease-in 0s, transform 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
29
+ opacity: 1;
30
+ }
31
+ .ripple.ripple-out {
32
+ transition: opacity 0.1s linear 0s !important;
33
+ opacity: 0;
34
+ }
@@ -0,0 +1,2 @@
1
+ /* SnackbarJS - MIT LICENSE (https://github.com/FezVrasta/snackbarjs/blob/master/LICENSE.md) */
2
+ #snackbar-container{position:fixed;left:20px;bottom:0;z-index:99999}.snackbar{overflow:hidden;clear:both;min-width:288px;max-width:568px;cursor:pointer;opacity:0}.snackbar.snackbar-opened{height:auto;opacity:1}@media (max-width:767px){#snackbar-container{left:0!important;right:0;width:100%}#snackbar-container .snackbar{min-width:100%}#snackbar-container [class="snackbar snackbar-opened"] ~ .snackbar.toast{margin-top: 20px}#snackbar-container [class="snackbar snackbar-opened"]{border-radius:0;margin-bottom:0}}
@@ -0,0 +1,21 @@
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+
5
+ Gem::Specification.new do |s|
6
+ s.name = 'bootstrap-material-design'
7
+ s.version = '0.0.1'
8
+ s.date = '2014-09-29'
9
+ s.summary = "Material Design for Bootstrap"
10
+ s.authors = ["Paul King"]
11
+ s.email = 'freedomlijinfa@gmail.com'
12
+ s.homepage = 'https://github.com/Aufree/bootstrap-material-design'
13
+ s.license = 'MIT'
14
+
15
+ s.files = `git ls-files -z`.split("\x0")
16
+ s.executables = s.files.grep(%r{^bin/}) { |f| File.basename(f) }
17
+ s.test_files = s.files.grep(%r{^(test|s|features)/})
18
+ s.require_paths = ['lib']
19
+
20
+ s.add_dependency 'bootstrap-sass', '3.2.0.2'
21
+ end
@@ -1,8 +1,3 @@
1
- module Bootstrap
2
- class << self
3
-
4
- def pedding
5
- puts "Pedding work."
6
- end
7
- end
1
+ module BootstrapMaterialDesign
2
+ require "bootstrap-material-design/engine"
8
3
  end
@@ -0,0 +1,4 @@
1
+ module BootstrapMaterialDesign
2
+ class Engine < ::Rails::Engine
3
+ end
4
+ end
metadata CHANGED
@@ -1,23 +1,60 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bootstrap-material-design
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.0
4
+ version: 0.0.1
5
5
  platform: ruby
6
6
  authors:
7
- - Jinfa Li
7
+ - Paul King
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
11
  date: 2014-09-29 00:00:00.000000000 Z
12
- dependencies: []
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: bootstrap-sass
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - '='
18
+ - !ruby/object:Gem::Version
19
+ version: 3.2.0.2
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - '='
25
+ - !ruby/object:Gem::Version
26
+ version: 3.2.0.2
13
27
  description:
14
28
  email: freedomlijinfa@gmail.com
15
29
  executables: []
16
30
  extensions: []
17
31
  extra_rdoc_files: []
18
32
  files:
33
+ - .gitignore
34
+ - Gemfile
35
+ - LICENSE
36
+ - README.md
37
+ - Rakefile
38
+ - app/assets/fonts/LICENSE.txt
39
+ - app/assets/fonts/Material-Design.eot
40
+ - app/assets/fonts/Material-Design.svg
41
+ - app/assets/fonts/Material-Design.ttf
42
+ - app/assets/fonts/Material-Design.woff
43
+ - app/assets/javascripts/bootstrap-material-design/index.js
44
+ - app/assets/javascripts/bootstrap-material-design/jquery.nouislider.min.js
45
+ - app/assets/javascripts/bootstrap-material-design/material.js
46
+ - app/assets/javascripts/bootstrap-material-design/ripples.js
47
+ - app/assets/javascripts/bootstrap-material-design/snackbar.min.js
48
+ - app/assets/stylesheets/bootstrap-material-design/icons-material-design.css.scss.erb
49
+ - app/assets/stylesheets/bootstrap-material-design/index.css
50
+ - app/assets/stylesheets/bootstrap-material-design/material-wfont.css
51
+ - app/assets/stylesheets/bootstrap-material-design/material.css
52
+ - app/assets/stylesheets/bootstrap-material-design/ripples.css
53
+ - app/assets/stylesheets/bootstrap-material-design/snackbar.css
54
+ - bootstrap-material-design.gemspec
19
55
  - lib/bootstrap-material-design.rb
20
- homepage: http://rubygems.org/gems/bootstrap-material-design
56
+ - lib/bootstrap-material-design/engine.rb
57
+ homepage: https://github.com/Aufree/bootstrap-material-design
21
58
  licenses:
22
59
  - MIT
23
60
  metadata: {}