jquery-uploadify-rails 1.0.1

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,92 @@
1
+ /*
2
+ Uploadify
3
+ Copyright (c) 2012 Reactive Apps, Ronnie Garcia
4
+ Released under the MIT License <http://www.opensource.org/licenses/mit-license.php>
5
+ */
6
+
7
+ .uploadify {
8
+ position: relative;
9
+ margin-bottom: 1em;
10
+ }
11
+ .uploadify-button {
12
+ background-color: #505050;
13
+ background-image: linear-gradient(bottom, #505050 0%, #707070 100%);
14
+ background-image: -o-linear-gradient(bottom, #505050 0%, #707070 100%);
15
+ background-image: -moz-linear-gradient(bottom, #505050 0%, #707070 100%);
16
+ background-image: -webkit-linear-gradient(bottom, #505050 0%, #707070 100%);
17
+ background-image: -ms-linear-gradient(bottom, #505050 0%, #707070 100%);
18
+ background-image: -webkit-gradient(
19
+ linear,
20
+ left bottom,
21
+ left top,
22
+ color-stop(0, #505050),
23
+ color-stop(1, #707070)
24
+ );
25
+ background-position: center top;
26
+ background-repeat: no-repeat;
27
+ -webkit-border-radius: 30px;
28
+ -moz-border-radius: 30px;
29
+ border-radius: 30px;
30
+ border: 2px solid #808080;
31
+ color: #FFF;
32
+ font: bold 12px Arial, Helvetica, sans-serif;
33
+ text-align: center;
34
+ text-shadow: 0 -1px 0 rgba(0,0,0,0.25);
35
+ width: 100%;
36
+ }
37
+ .uploadify:hover .uploadify-button {
38
+ background-color: #606060;
39
+ background-image: linear-gradient(top, #606060 0%, #808080 100%);
40
+ background-image: -o-linear-gradient(top, #606060 0%, #808080 100%);
41
+ background-image: -moz-linear-gradient(top, #606060 0%, #808080 100%);
42
+ background-image: -webkit-linear-gradient(top, #606060 0%, #808080 100%);
43
+ background-image: -ms-linear-gradient(top, #606060 0%, #808080 100%);
44
+ background-image: -webkit-gradient(
45
+ linear,
46
+ left bottom,
47
+ left top,
48
+ color-stop(0, #606060),
49
+ color-stop(1, #808080)
50
+ );
51
+ background-position: center bottom;
52
+ }
53
+ .uploadify-button.disabled {
54
+ background-color: #D0D0D0;
55
+ color: #808080;
56
+ }
57
+ .uploadify-queue {
58
+ margin-bottom: 1em;
59
+ }
60
+ .uploadify-queue-item {
61
+ background-color: #F5F5F5;
62
+ -webkit-border-radius: 3px;
63
+ -moz-border-radius: 3px;
64
+ border-radius: 3px;
65
+ font: 11px Verdana, Geneva, sans-serif;
66
+ margin-top: 5px;
67
+ max-width: 350px;
68
+ padding: 10px;
69
+ }
70
+ .uploadify-error {
71
+ background-color: #FDE5DD !important;
72
+ }
73
+ .uploadify-queue-item .cancel a {
74
+ background: image-url('jquery-uploadify/uploadify-cancel.png') 0 0 no-repeat;
75
+ float: right;
76
+ height: 16px;
77
+ text-indent: -9999px;
78
+ width: 16px;
79
+ }
80
+ .uploadify-queue-item.completed {
81
+ background-color: #E5E5E5;
82
+ }
83
+ .uploadify-progress {
84
+ background-color: #E5E5E5;
85
+ margin-top: 10px;
86
+ width: 100%;
87
+ }
88
+ .uploadify-progress-bar {
89
+ background-color: #0099FF;
90
+ height: 3px;
91
+ width: 1px;
92
+ }
metadata ADDED
@@ -0,0 +1,102 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: jquery-uploadify-rails
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.1
5
+ platform: ruby
6
+ authors:
7
+ - Reyes Yang
8
+ autorequire:
9
+ bindir: bin
10
+ cert_chain: []
11
+ date: 2015-03-25 00:00:00.000000000 Z
12
+ dependencies:
13
+ - !ruby/object:Gem::Dependency
14
+ name: rails
15
+ requirement: !ruby/object:Gem::Requirement
16
+ requirements:
17
+ - - ">="
18
+ - !ruby/object:Gem::Version
19
+ version: 3.1.0
20
+ type: :runtime
21
+ prerelease: false
22
+ version_requirements: !ruby/object:Gem::Requirement
23
+ requirements:
24
+ - - ">="
25
+ - !ruby/object:Gem::Version
26
+ version: 3.1.0
27
+ - !ruby/object:Gem::Dependency
28
+ name: bundler
29
+ requirement: !ruby/object:Gem::Requirement
30
+ requirements:
31
+ - - "~>"
32
+ - !ruby/object:Gem::Version
33
+ version: '1.7'
34
+ type: :development
35
+ prerelease: false
36
+ version_requirements: !ruby/object:Gem::Requirement
37
+ requirements:
38
+ - - "~>"
39
+ - !ruby/object:Gem::Version
40
+ version: '1.7'
41
+ - !ruby/object:Gem::Dependency
42
+ name: rake
43
+ requirement: !ruby/object:Gem::Requirement
44
+ requirements:
45
+ - - "~>"
46
+ - !ruby/object:Gem::Version
47
+ version: '10.0'
48
+ type: :development
49
+ prerelease: false
50
+ version_requirements: !ruby/object:Gem::Requirement
51
+ requirements:
52
+ - - "~>"
53
+ - !ruby/object:Gem::Version
54
+ version: '10.0'
55
+ description: Package jQuery Uploadify plugin's javascript, stylesheet and images for
56
+ Rails asset pipeline
57
+ email:
58
+ - reyes.yang@gmail.com
59
+ executables: []
60
+ extensions: []
61
+ extra_rdoc_files: []
62
+ files:
63
+ - ".gitignore"
64
+ - Gemfile
65
+ - LICENSE.txt
66
+ - README.md
67
+ - Rakefile
68
+ - VERSIONS.md
69
+ - jquery-uploadify-rails.gemspec
70
+ - lib/jquery-uploadify-rails.rb
71
+ - lib/jquery/uploadify/rails.rb
72
+ - lib/jquery/uploadify/rails/engine.rb
73
+ - lib/jquery/uploadify/rails/version.rb
74
+ - vendor/assets/images/jquery-uploadify/uploadify-cancel.png
75
+ - vendor/assets/images/jquery-uploadify/uploadify.swf
76
+ - vendor/assets/javascripts/jquery.uploadify.js.erb
77
+ - vendor/assets/stylesheets/jquery.uploadify.css.scss
78
+ homepage: https://github.com/reyesyang/jquery-uploadify-rails
79
+ licenses:
80
+ - MIT
81
+ metadata: {}
82
+ post_install_message:
83
+ rdoc_options: []
84
+ require_paths:
85
+ - lib
86
+ required_ruby_version: !ruby/object:Gem::Requirement
87
+ requirements:
88
+ - - ">="
89
+ - !ruby/object:Gem::Version
90
+ version: '0'
91
+ required_rubygems_version: !ruby/object:Gem::Requirement
92
+ requirements:
93
+ - - ">="
94
+ - !ruby/object:Gem::Version
95
+ version: '0'
96
+ requirements: []
97
+ rubyforge_project:
98
+ rubygems_version: 2.4.5
99
+ signing_key:
100
+ specification_version: 4
101
+ summary: Package jQuery Uploadify plugin for Rails asset pipeline
102
+ test_files: []