summaryrefslogtreecommitdiff
path: root/www/static/dropzone.css
diff options
context:
space:
mode:
authoroweissbarth2014-07-19 16:17:49 +0200
committeroweissbarth2014-07-19 16:17:49 +0200
commit0097ccaf345cbc423df415322357e1f574e19140 (patch)
treee0d171cf1d01f457741b48bc291f05f76a07961b /www/static/dropzone.css
parent7f757321be39166ff259225c03a6793101cd921e (diff)
downloadfiles.iamfabulous.de-0097ccaf345cbc423df415322357e1f574e19140.tar.gz
added d&d multifile upload
Diffstat (limited to 'www/static/dropzone.css')
-rw-r--r--www/static/dropzone.css51
1 files changed, 51 insertions, 0 deletions
diff --git a/www/static/dropzone.css b/www/static/dropzone.css
new file mode 100644
index 0000000..7055e6c
--- /dev/null
+++ b/www/static/dropzone.css
@@ -0,0 +1,51 @@
+ #dropzone{
+ width: 400px;
+ height: 150px;
+ border: 1px solid black;
+ text-align: center;
+ display: table;
+
+
+ }
+ #dropzone p{
+ display: table-cell;
+ color: red;
+ vertical-align:middle;
+ font-size: 16pt;
+ color: grey;
+ }
+
+ #filelist tr{
+ background: white;
+ width: 400px;
+ }
+
+ #filelist tr:nth-child(odd){
+ background: #E6E6FF;
+ }
+
+ #filelist-wrapper{
+ height: 120px;
+ overflow-y: auto;
+ overflow-x: hidden;
+ margin-top: 10px;
+ }
+
+ #filelist {
+ width: 400px;
+
+ }
+
+ .progressBar{
+ width: 100px;
+ height: 20px;
+ }
+
+ .progressCol{
+ width: 100px;
+ height: 20px;
+ }
+
+ .filesize{
+ text-align: right;
+ }