bootstrap-material-design 0.0.0 → 0.0.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 +4 -4
- data/.gitignore +18 -0
- data/Gemfile +3 -0
- data/LICENSE +32 -0
- data/README.md +53 -0
- data/Rakefile +1 -0
- data/app/assets/fonts/LICENSE.txt +27 -0
- data/app/assets/fonts/Material-Design.eot +0 -0
- data/app/assets/fonts/Material-Design.svg +515 -0
- data/app/assets/fonts/Material-Design.ttf +0 -0
- data/app/assets/fonts/Material-Design.woff +0 -0
- data/app/assets/javascripts/bootstrap-material-design/index.js +4 -0
- data/app/assets/javascripts/bootstrap-material-design/jquery.nouislider.min.js +2 -0
- data/app/assets/javascripts/bootstrap-material-design/material.js +84 -0
- data/app/assets/javascripts/bootstrap-material-design/ripples.js +130 -0
- data/app/assets/javascripts/bootstrap-material-design/snackbar.min.js +3 -0
- data/app/assets/stylesheets/bootstrap-material-design/icons-material-design.css.scss.erb +1499 -0
- data/app/assets/stylesheets/bootstrap-material-design/index.css +6 -0
- data/app/assets/stylesheets/bootstrap-material-design/material-wfont.css +2896 -0
- data/app/assets/stylesheets/bootstrap-material-design/material.css +2895 -0
- data/app/assets/stylesheets/bootstrap-material-design/ripples.css +34 -0
- data/app/assets/stylesheets/bootstrap-material-design/snackbar.css +2 -0
- data/bootstrap-material-design.gemspec +21 -0
- data/lib/bootstrap-material-design.rb +2 -7
- data/lib/bootstrap-material-design/engine.rb +4 -0
- metadata +41 -4
@@ -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
|
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.
|
4
|
+
version: 0.0.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
|
-
-
|
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
|
-
|
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: {}
|