berkshelf-store 0.2.0
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 +15 -0
- data/.gitignore +2 -0
- data/Gemfile +5 -0
- data/README.md +83 -0
- data/Rakefile +44 -0
- data/berkshelf-store.gemspec +26 -0
- data/bin/berkshelf-store +49 -0
- data/lib/berkshelf-store/backends/filesystem.rb +138 -0
- data/lib/berkshelf-store/backends.rb +5 -0
- data/lib/berkshelf-store/webservice.rb +100 -0
- data/lib/berkshelf-store.rb +5 -0
- data/test/data/arbo/cookbooks/apache2/1.10.4/data.json +1 -0
- data/test/data/arbo/cookbooks/couchbase/1.1.0/data.json +1 -0
- data/test/data/arbo/cookbooks/couchbase/1.2.0/data.json +1 -0
- data/test/data/catalog.json +69 -0
- data/test/data/tarballs/apache2-v1.10.4.tar.gz +0 -0
- data/test/data/tarballs/couchbase-v1.1.0.tar.gz +0 -0
- data/test/data/tarballs/couchbase-v1.2.0.tar.gz +0 -0
- data/test/data/tarballs/not_a_cookbook.tgz +0 -0
- data/test/test_berkshelf-store_backends_filesystem.rb +76 -0
- data/ui/static/bootstrap/css/bootstrap-theme.css +347 -0
- data/ui/static/bootstrap/css/bootstrap-theme.css.map +1 -0
- data/ui/static/bootstrap/css/bootstrap-theme.min.css +7 -0
- data/ui/static/bootstrap/css/bootstrap.css +5785 -0
- data/ui/static/bootstrap/css/bootstrap.css.map +1 -0
- data/ui/static/bootstrap/css/bootstrap.min.css +7 -0
- data/ui/static/bootstrap/fonts/glyphicons-halflings-regular.eot +0 -0
- data/ui/static/bootstrap/fonts/glyphicons-halflings-regular.svg +229 -0
- data/ui/static/bootstrap/fonts/glyphicons-halflings-regular.ttf +0 -0
- data/ui/static/bootstrap/fonts/glyphicons-halflings-regular.woff +0 -0
- data/ui/static/bootstrap/js/bootstrap.js +1951 -0
- data/ui/static/bootstrap/js/bootstrap.min.js +6 -0
- data/ui/static/jquery/jquery.min.js +4 -0
- data/ui/static/jquery_file_upload/CONTRIBUTING.md +42 -0
- data/ui/static/jquery_file_upload/Gruntfile.js +37 -0
- data/ui/static/jquery_file_upload/README.md +123 -0
- data/ui/static/jquery_file_upload/angularjs.html +211 -0
- data/ui/static/jquery_file_upload/basic-plus.html +226 -0
- data/ui/static/jquery_file_upload/basic.html +136 -0
- data/ui/static/jquery_file_upload/blueimp-file-upload.jquery.json +50 -0
- data/ui/static/jquery_file_upload/bower.json +85 -0
- data/ui/static/jquery_file_upload/cors/postmessage.html +75 -0
- data/ui/static/jquery_file_upload/cors/result.html +24 -0
- data/ui/static/jquery_file_upload/css/demo-ie8.css +21 -0
- data/ui/static/jquery_file_upload/css/demo.css +67 -0
- data/ui/static/jquery_file_upload/css/jquery.fileupload-noscript.css +22 -0
- data/ui/static/jquery_file_upload/css/jquery.fileupload-ui-noscript.css +17 -0
- data/ui/static/jquery_file_upload/css/jquery.fileupload-ui.css +57 -0
- data/ui/static/jquery_file_upload/css/jquery.fileupload.css +36 -0
- data/ui/static/jquery_file_upload/css/style.css +15 -0
- data/ui/static/jquery_file_upload/img/loading.gif +0 -0
- data/ui/static/jquery_file_upload/img/progressbar.gif +0 -0
- data/ui/static/jquery_file_upload/index.html +255 -0
- data/ui/static/jquery_file_upload/jquery-ui.html +250 -0
- data/ui/static/jquery_file_upload/js/app.js +101 -0
- data/ui/static/jquery_file_upload/js/cors/jquery.postmessage-transport.js +117 -0
- data/ui/static/jquery_file_upload/js/cors/jquery.xdr-transport.js +86 -0
- data/ui/static/jquery_file_upload/js/jquery.fileupload-angular.js +429 -0
- data/ui/static/jquery_file_upload/js/jquery.fileupload-audio.js +106 -0
- data/ui/static/jquery_file_upload/js/jquery.fileupload-image.js +315 -0
- data/ui/static/jquery_file_upload/js/jquery.fileupload-jquery-ui.js +152 -0
- data/ui/static/jquery_file_upload/js/jquery.fileupload-process.js +172 -0
- data/ui/static/jquery_file_upload/js/jquery.fileupload-ui.js +699 -0
- data/ui/static/jquery_file_upload/js/jquery.fileupload-validate.js +119 -0
- data/ui/static/jquery_file_upload/js/jquery.fileupload-video.js +106 -0
- data/ui/static/jquery_file_upload/js/jquery.fileupload.js +1426 -0
- data/ui/static/jquery_file_upload/js/jquery.iframe-transport.js +214 -0
- data/ui/static/jquery_file_upload/js/main.js +75 -0
- data/ui/static/jquery_file_upload/js/vendor/jquery.ui.widget.js +530 -0
- data/ui/static/jquery_file_upload/package.json +54 -0
- data/ui/static/jquery_file_upload/server/gae-go/app/main.go +296 -0
- data/ui/static/jquery_file_upload/server/gae-go/app.yaml +12 -0
- data/ui/static/jquery_file_upload/server/gae-go/static/favicon.ico +0 -0
- data/ui/static/jquery_file_upload/server/gae-go/static/robots.txt +2 -0
- data/ui/static/jquery_file_upload/server/gae-python/app.yaml +16 -0
- data/ui/static/jquery_file_upload/server/gae-python/main.py +170 -0
- data/ui/static/jquery_file_upload/server/gae-python/static/favicon.ico +0 -0
- data/ui/static/jquery_file_upload/server/gae-python/static/robots.txt +2 -0
- data/ui/static/jquery_file_upload/server/node/package.json +41 -0
- data/ui/static/jquery_file_upload/server/node/server.js +292 -0
- data/ui/static/jquery_file_upload/server/php/UploadHandler.php +1330 -0
- data/ui/static/jquery_file_upload/server/php/index.php +15 -0
- data/ui/static/jquery_file_upload/test/index.html +166 -0
- data/ui/static/jquery_file_upload/test/test.js +1288 -0
- data/ui/views/catalog.erb +20 -0
- data/ui/views/doc.erb +23 -0
- data/ui/views/layout.erb +47 -0
- data/ui/views/upload.erb +46 -0
- metadata +210 -0
@@ -0,0 +1,85 @@
|
|
1
|
+
{
|
2
|
+
"name": "blueimp-file-upload",
|
3
|
+
"version": "9.5.7",
|
4
|
+
"title": "jQuery File Upload",
|
5
|
+
"description": "File Upload widget with multiple file selection, drag&drop support, progress bar, validation and preview images, audio and video for jQuery. Supports cross-domain, chunked and resumable file uploads. Works with any server-side platform (Google App Engine, PHP, Python, Ruby on Rails, Java, etc.) that supports standard HTML form file uploads.",
|
6
|
+
"keywords": [
|
7
|
+
"jquery",
|
8
|
+
"file",
|
9
|
+
"upload",
|
10
|
+
"widget",
|
11
|
+
"multiple",
|
12
|
+
"selection",
|
13
|
+
"drag",
|
14
|
+
"drop",
|
15
|
+
"progress",
|
16
|
+
"preview",
|
17
|
+
"cross-domain",
|
18
|
+
"cross-site",
|
19
|
+
"chunk",
|
20
|
+
"resume",
|
21
|
+
"gae",
|
22
|
+
"go",
|
23
|
+
"python",
|
24
|
+
"php",
|
25
|
+
"bootstrap"
|
26
|
+
],
|
27
|
+
"homepage": "https://github.com/blueimp/jQuery-File-Upload",
|
28
|
+
"author": {
|
29
|
+
"name": "Sebastian Tschan",
|
30
|
+
"url": "https://blueimp.net"
|
31
|
+
},
|
32
|
+
"maintainers": [
|
33
|
+
{
|
34
|
+
"name": "Sebastian Tschan",
|
35
|
+
"url": "https://blueimp.net"
|
36
|
+
}
|
37
|
+
],
|
38
|
+
"repository": {
|
39
|
+
"type": "git",
|
40
|
+
"url": "git://github.com/blueimp/jQuery-File-Upload.git"
|
41
|
+
},
|
42
|
+
"bugs": "https://github.com/blueimp/jQuery-File-Upload/issues",
|
43
|
+
"licenses": [
|
44
|
+
{
|
45
|
+
"type": "MIT",
|
46
|
+
"url": "http://www.opensource.org/licenses/MIT"
|
47
|
+
}
|
48
|
+
],
|
49
|
+
"dependencies": {
|
50
|
+
"jquery": ">=1.6",
|
51
|
+
"blueimp-tmpl": ">=2.5.3",
|
52
|
+
"blueimp-load-image": ">=1.11.0",
|
53
|
+
"blueimp-canvas-to-blob": ">=2.1.0"
|
54
|
+
},
|
55
|
+
"main": [
|
56
|
+
"css/jquery.fileupload.css",
|
57
|
+
"css/jquery.fileupload-ui.css",
|
58
|
+
"css/jquery.fileupload-noscript.css",
|
59
|
+
"css/jquery.fileupload-ui-noscript.css",
|
60
|
+
"js/cors/jquery.postmessage-transport.js",
|
61
|
+
"js/cors/jquery.xdr-transport.js",
|
62
|
+
"js/vendor/jquery.ui.widget.js",
|
63
|
+
"js/jquery.fileupload.js",
|
64
|
+
"js/jquery.fileupload-process.js",
|
65
|
+
"js/jquery.fileupload-validate.js",
|
66
|
+
"js/jquery.fileupload-image.js",
|
67
|
+
"js/jquery.fileupload-audio.js",
|
68
|
+
"js/jquery.fileupload-video.js",
|
69
|
+
"js/jquery.fileupload-ui.js",
|
70
|
+
"js/jquery.fileupload-jquery-ui.js",
|
71
|
+
"js/jquery.fileupload-angular.js",
|
72
|
+
"js/jquery.iframe-transport.js"
|
73
|
+
],
|
74
|
+
"ignore": [
|
75
|
+
"/*.*",
|
76
|
+
"/cors",
|
77
|
+
"css/demo-ie8.css",
|
78
|
+
"css/demo.css",
|
79
|
+
"css/style.css",
|
80
|
+
"js/app.js",
|
81
|
+
"js/main.js",
|
82
|
+
"server",
|
83
|
+
"test"
|
84
|
+
]
|
85
|
+
}
|
@@ -0,0 +1,75 @@
|
|
1
|
+
<!DOCTYPE HTML>
|
2
|
+
<!--
|
3
|
+
/*
|
4
|
+
* jQuery File Upload Plugin postMessage API 1.2.1
|
5
|
+
* https://github.com/blueimp/jQuery-File-Upload
|
6
|
+
*
|
7
|
+
* Copyright 2011, Sebastian Tschan
|
8
|
+
* https://blueimp.net
|
9
|
+
*
|
10
|
+
* Licensed under the MIT license:
|
11
|
+
* http://www.opensource.org/licenses/MIT
|
12
|
+
*/
|
13
|
+
-->
|
14
|
+
<html lang="en">
|
15
|
+
<head>
|
16
|
+
<meta charset="utf-8">
|
17
|
+
<title>jQuery File Upload Plugin postMessage API</title>
|
18
|
+
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js"></script>
|
19
|
+
</head>
|
20
|
+
<body>
|
21
|
+
<script>
|
22
|
+
/*jslint unparam: true, regexp: true */
|
23
|
+
/*global $, Blob, FormData, location */
|
24
|
+
'use strict';
|
25
|
+
var origin = /^http:\/\/example.org/,
|
26
|
+
target = new RegExp('^(http(s)?:)?\\/\\/' + location.host + '\\/');
|
27
|
+
$(window).on('message', function (e) {
|
28
|
+
e = e.originalEvent;
|
29
|
+
var s = e.data,
|
30
|
+
xhr = $.ajaxSettings.xhr(),
|
31
|
+
f;
|
32
|
+
if (!origin.test(e.origin)) {
|
33
|
+
throw new Error('Origin "' + e.origin + '" does not match ' + origin);
|
34
|
+
}
|
35
|
+
if (!target.test(e.data.url)) {
|
36
|
+
throw new Error('Target "' + e.data.url + '" does not match ' + target);
|
37
|
+
}
|
38
|
+
$(xhr.upload).on('progress', function (ev) {
|
39
|
+
ev = ev.originalEvent;
|
40
|
+
e.source.postMessage({
|
41
|
+
id: s.id,
|
42
|
+
type: ev.type,
|
43
|
+
timeStamp: ev.timeStamp,
|
44
|
+
lengthComputable: ev.lengthComputable,
|
45
|
+
loaded: ev.loaded,
|
46
|
+
total: ev.total
|
47
|
+
}, e.origin);
|
48
|
+
});
|
49
|
+
s.xhr = function () {
|
50
|
+
return xhr;
|
51
|
+
};
|
52
|
+
if (!(s.data instanceof Blob)) {
|
53
|
+
f = new FormData();
|
54
|
+
$.each(s.data, function (i, v) {
|
55
|
+
f.append(v.name, v.value);
|
56
|
+
});
|
57
|
+
s.data = f;
|
58
|
+
}
|
59
|
+
$.ajax(s).always(function (result, statusText, jqXHR) {
|
60
|
+
if (!jqXHR.done) {
|
61
|
+
jqXHR = result;
|
62
|
+
result = null;
|
63
|
+
}
|
64
|
+
e.source.postMessage({
|
65
|
+
id: s.id,
|
66
|
+
status: jqXHR.status,
|
67
|
+
statusText: statusText,
|
68
|
+
result: result,
|
69
|
+
headers: jqXHR.getAllResponseHeaders()
|
70
|
+
}, e.origin);
|
71
|
+
});
|
72
|
+
});
|
73
|
+
</script>
|
74
|
+
</body>
|
75
|
+
</html>
|
@@ -0,0 +1,24 @@
|
|
1
|
+
<!DOCTYPE HTML>
|
2
|
+
<!--
|
3
|
+
/*
|
4
|
+
* jQuery Iframe Transport Plugin Redirect Page 2.0.1
|
5
|
+
* https://github.com/blueimp/jQuery-File-Upload
|
6
|
+
*
|
7
|
+
* Copyright 2010, Sebastian Tschan
|
8
|
+
* https://blueimp.net
|
9
|
+
*
|
10
|
+
* Licensed under the MIT license:
|
11
|
+
* http://www.opensource.org/licenses/MIT
|
12
|
+
*/
|
13
|
+
-->
|
14
|
+
<html lang="en">
|
15
|
+
<head>
|
16
|
+
<meta charset="utf-8">
|
17
|
+
<title>jQuery Iframe Transport Plugin Redirect Page</title>
|
18
|
+
</head>
|
19
|
+
<body>
|
20
|
+
<script>
|
21
|
+
document.body.innerText=document.body.textContent=decodeURIComponent(window.location.search.slice(1));
|
22
|
+
</script>
|
23
|
+
</body>
|
24
|
+
</html>
|
@@ -0,0 +1,21 @@
|
|
1
|
+
@charset "UTF-8";
|
2
|
+
/*
|
3
|
+
* jQuery File Upload Demo CSS Fixes for IE<9 1.0.0
|
4
|
+
* https://github.com/blueimp/jQuery-File-Upload
|
5
|
+
*
|
6
|
+
* Copyright 2013, Sebastian Tschan
|
7
|
+
* https://blueimp.net
|
8
|
+
*
|
9
|
+
* Licensed under the MIT license:
|
10
|
+
* http://www.opensource.org/licenses/MIT
|
11
|
+
*/
|
12
|
+
|
13
|
+
.navigation {
|
14
|
+
list-style: none;
|
15
|
+
padding: 0;
|
16
|
+
margin: 1em 0;
|
17
|
+
}
|
18
|
+
.navigation li {
|
19
|
+
display: inline;
|
20
|
+
margin-right: 10px;
|
21
|
+
}
|
@@ -0,0 +1,67 @@
|
|
1
|
+
@charset "UTF-8";
|
2
|
+
/*
|
3
|
+
* jQuery File Upload Demo CSS 1.1.0
|
4
|
+
* https://github.com/blueimp/jQuery-File-Upload
|
5
|
+
*
|
6
|
+
* Copyright 2013, Sebastian Tschan
|
7
|
+
* https://blueimp.net
|
8
|
+
*
|
9
|
+
* Licensed under the MIT license:
|
10
|
+
* http://www.opensource.org/licenses/MIT
|
11
|
+
*/
|
12
|
+
|
13
|
+
body {
|
14
|
+
max-width: 750px;
|
15
|
+
margin: 0 auto;
|
16
|
+
padding: 1em;
|
17
|
+
font-family: "Lucida Grande", "Lucida Sans Unicode", Arial, sans-serif;
|
18
|
+
font-size: 1em;
|
19
|
+
line-height: 1.4em;
|
20
|
+
background: #222;
|
21
|
+
color: #fff;
|
22
|
+
-webkit-text-size-adjust: 100%;
|
23
|
+
-ms-text-size-adjust: 100%;
|
24
|
+
}
|
25
|
+
a {
|
26
|
+
color: orange;
|
27
|
+
text-decoration: none;
|
28
|
+
}
|
29
|
+
img {
|
30
|
+
border: 0;
|
31
|
+
vertical-align: middle;
|
32
|
+
}
|
33
|
+
h1 {
|
34
|
+
line-height: 1em;
|
35
|
+
}
|
36
|
+
blockquote {
|
37
|
+
padding: 0 0 0 15px;
|
38
|
+
margin: 0 0 20px;
|
39
|
+
border-left: 5px solid #eee;
|
40
|
+
}
|
41
|
+
table {
|
42
|
+
width: 100%;
|
43
|
+
margin: 10px 0;
|
44
|
+
}
|
45
|
+
|
46
|
+
.fileupload-progress {
|
47
|
+
margin: 10px 0;
|
48
|
+
}
|
49
|
+
.fileupload-progress .progress-extended {
|
50
|
+
margin-top: 5px;
|
51
|
+
}
|
52
|
+
.error {
|
53
|
+
color: red;
|
54
|
+
}
|
55
|
+
|
56
|
+
@media (min-width: 481px) {
|
57
|
+
.navigation {
|
58
|
+
list-style: none;
|
59
|
+
padding: 0;
|
60
|
+
}
|
61
|
+
.navigation li {
|
62
|
+
display: inline-block;
|
63
|
+
}
|
64
|
+
.navigation li:not(:first-child):before {
|
65
|
+
content: "| ";
|
66
|
+
}
|
67
|
+
}
|
@@ -0,0 +1,22 @@
|
|
1
|
+
@charset "UTF-8";
|
2
|
+
/*
|
3
|
+
* jQuery File Upload Plugin NoScript CSS 1.2.0
|
4
|
+
* https://github.com/blueimp/jQuery-File-Upload
|
5
|
+
*
|
6
|
+
* Copyright 2013, Sebastian Tschan
|
7
|
+
* https://blueimp.net
|
8
|
+
*
|
9
|
+
* Licensed under the MIT license:
|
10
|
+
* http://www.opensource.org/licenses/MIT
|
11
|
+
*/
|
12
|
+
|
13
|
+
.fileinput-button input {
|
14
|
+
position: static;
|
15
|
+
opacity: 1;
|
16
|
+
filter: none;
|
17
|
+
font-size: inherit;
|
18
|
+
direction: inherit;
|
19
|
+
}
|
20
|
+
.fileinput-button span {
|
21
|
+
display: none;
|
22
|
+
}
|
@@ -0,0 +1,17 @@
|
|
1
|
+
@charset "UTF-8";
|
2
|
+
/*
|
3
|
+
* jQuery File Upload UI Plugin NoScript CSS 8.8.5
|
4
|
+
* https://github.com/blueimp/jQuery-File-Upload
|
5
|
+
*
|
6
|
+
* Copyright 2012, Sebastian Tschan
|
7
|
+
* https://blueimp.net
|
8
|
+
*
|
9
|
+
* Licensed under the MIT license:
|
10
|
+
* http://www.opensource.org/licenses/MIT
|
11
|
+
*/
|
12
|
+
|
13
|
+
.fileinput-button i,
|
14
|
+
.fileupload-buttonbar .delete,
|
15
|
+
.fileupload-buttonbar .toggle {
|
16
|
+
display: none;
|
17
|
+
}
|
@@ -0,0 +1,57 @@
|
|
1
|
+
@charset "UTF-8";
|
2
|
+
/*
|
3
|
+
* jQuery File Upload UI Plugin CSS 9.0.0
|
4
|
+
* https://github.com/blueimp/jQuery-File-Upload
|
5
|
+
*
|
6
|
+
* Copyright 2010, Sebastian Tschan
|
7
|
+
* https://blueimp.net
|
8
|
+
*
|
9
|
+
* Licensed under the MIT license:
|
10
|
+
* http://www.opensource.org/licenses/MIT
|
11
|
+
*/
|
12
|
+
|
13
|
+
.fileupload-buttonbar .btn,
|
14
|
+
.fileupload-buttonbar .toggle {
|
15
|
+
margin-bottom: 5px;
|
16
|
+
}
|
17
|
+
.progress-animated .progress-bar,
|
18
|
+
.progress-animated .bar {
|
19
|
+
background: url("../img/progressbar.gif") !important;
|
20
|
+
filter: none;
|
21
|
+
}
|
22
|
+
.fileupload-process {
|
23
|
+
float: right;
|
24
|
+
display: none;
|
25
|
+
}
|
26
|
+
.fileupload-processing .fileupload-process,
|
27
|
+
.files .processing .preview {
|
28
|
+
display: block;
|
29
|
+
width: 32px;
|
30
|
+
height: 32px;
|
31
|
+
background: url("../img/loading.gif") center no-repeat;
|
32
|
+
background-size: contain;
|
33
|
+
}
|
34
|
+
.files audio,
|
35
|
+
.files video {
|
36
|
+
max-width: 300px;
|
37
|
+
}
|
38
|
+
|
39
|
+
@media (max-width: 767px) {
|
40
|
+
.fileupload-buttonbar .toggle,
|
41
|
+
.files .toggle,
|
42
|
+
.files .btn span {
|
43
|
+
display: none;
|
44
|
+
}
|
45
|
+
.files .name {
|
46
|
+
width: 80px;
|
47
|
+
word-wrap: break-word;
|
48
|
+
}
|
49
|
+
.files audio,
|
50
|
+
.files video {
|
51
|
+
max-width: 80px;
|
52
|
+
}
|
53
|
+
.files img,
|
54
|
+
.files canvas {
|
55
|
+
max-width: 100%;
|
56
|
+
}
|
57
|
+
}
|
@@ -0,0 +1,36 @@
|
|
1
|
+
@charset "UTF-8";
|
2
|
+
/*
|
3
|
+
* jQuery File Upload Plugin CSS 1.3.0
|
4
|
+
* https://github.com/blueimp/jQuery-File-Upload
|
5
|
+
*
|
6
|
+
* Copyright 2013, Sebastian Tschan
|
7
|
+
* https://blueimp.net
|
8
|
+
*
|
9
|
+
* Licensed under the MIT license:
|
10
|
+
* http://www.opensource.org/licenses/MIT
|
11
|
+
*/
|
12
|
+
|
13
|
+
.fileinput-button {
|
14
|
+
position: relative;
|
15
|
+
overflow: hidden;
|
16
|
+
}
|
17
|
+
.fileinput-button input {
|
18
|
+
position: absolute;
|
19
|
+
top: 0;
|
20
|
+
right: 0;
|
21
|
+
margin: 0;
|
22
|
+
opacity: 0;
|
23
|
+
-ms-filter: 'alpha(opacity=0)';
|
24
|
+
font-size: 200px;
|
25
|
+
direction: ltr;
|
26
|
+
cursor: pointer;
|
27
|
+
}
|
28
|
+
|
29
|
+
/* Fixes for IE < 8 */
|
30
|
+
@media screen\9 {
|
31
|
+
.fileinput-button input {
|
32
|
+
filter: alpha(opacity=0);
|
33
|
+
font-size: 100%;
|
34
|
+
height: 100%;
|
35
|
+
}
|
36
|
+
}
|
@@ -0,0 +1,15 @@
|
|
1
|
+
@charset "UTF-8";
|
2
|
+
/*
|
3
|
+
* jQuery File Upload Plugin CSS Example 8.8.2
|
4
|
+
* https://github.com/blueimp/jQuery-File-Upload
|
5
|
+
*
|
6
|
+
* Copyright 2013, Sebastian Tschan
|
7
|
+
* https://blueimp.net
|
8
|
+
*
|
9
|
+
* Licensed under the MIT license:
|
10
|
+
* http://www.opensource.org/licenses/MIT
|
11
|
+
*/
|
12
|
+
|
13
|
+
body {
|
14
|
+
padding-top: 60px;
|
15
|
+
}
|
Binary file
|
Binary file
|