/* 
    Document   : uploader_form
    Created on : 11-gen-2013, 16.09.19
    Author     : Cristiano Magro
    Description:
        wrapper per la form di upload dei file
*/

root { 
    display: block;
}

/* Reset */
.upload-form,
.upload-form div,
/*.upload-form span,*/
.upload-form input,
/*.upload-form a,*/
.upload-form h1,
.upload-form p {
    margin: 0;
    padding: 0;
    border: none;
    outline: none;
}
 
/* Form Container */
.upload-form {
    /*border: 3px, solid, blue;*/
    /*width: 90%;*/
    /*margin-right: 12px;*/
    min-height: 40px;
    /*padding: 15px 20px 15px 25px;*/
}
 
/* Clear Floats */
.upload-form .cb { clear: both; }

/* Paragraph */
.upload-form p {
    padding: 10px 0;
    font-family: sans-serif;
    font-size: 12px;
    color: black;
}

/* Select & Upload Buttons */
 
.upload-form #pulsanti {
    padding-bottom: 5px;
    height: 35px;
} 

.upload-form #pickfiles,
.upload-form #pickfiles2
{
    padding-right: 5px;
    float: left;
}
 
.upload-form #uploadfiles {
    /*width: 100px;*/
    float: left;
}

/* Added Files */
.upload-form .addedFile {
    position: relative;
    display: block;
    overflow: hidden;
    word-break: break-all;
    margin-bottom: 5px;
    padding: 0 0 0 35px;
    height: 30px;
 
    font-family: sans-serif;
    font-size: 12px;
    line-height: 30px;
    color: #646464;
 
    background: #f6f6f6 url(../img/uploader/text-x-generic.png) no-repeat 5px center;
}
 
/* Remove File Button */
.upload-form a.removeFile {
    position: absolute;
    display: block;
    width: 22px;
    height: 22px;
    top: 2px;
    right: 2px;
    background: url(../img/uploader/emblem-unreadable.png) no-repeat 0px center;
}


/* Progress Bar */
.upload-form .ui-progressbar,
.upload-form .ui-progressbar-value {
    position: relative;
    height: 4px;
 
    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    border-radius: 1px;
}
 
.upload-form .ui-progressbar {
    cursor: pointer;
    margin: 15px 0 20px 0;
    background: #242424;
 
    -webkit-box-shadow: 0px 1px 0px rgba(255,255,255, .1);
    -moz-box-shadow: 0px 1px 0px rgba(255,255,255, .1);
    box-shadow: 0px 1px 0px rgba(255,255,255, .1);
}
 
.upload-form .ui-progressbar-value {
    background: #82d344;
    background: -webkit-linear-gradient(top, #82d344 0%, #51af34 100%);
    background: -moz-linear-gradient(top, #82d344 0%, #51af34 100%);
    background: -o-linear-gradient(top, #82d344 0%, #51af34 100%);
    background: -ms-linear-gradient(top, #82d344 0%, #51af34 100%);
    background: linear-gradient(top, #82d344 0%, #51af34 100%);
}

.upload-form .ui-progressbar-value span.progressTooltip {
    position: absolute;
    display: block;
    width: 36px;
    height: 14px;
    padding: 5px 0 4px 0;
    top: 10px;
    right: -18px;
 
    font-family: sans-serif;
    font-weight: bold;
    line-height: 14px;
    text-align: center;
    font-size: 12px;
    color: #646464;
 
    background: transparent url(../img/uploader/tooltip.png) no-repeat;
}

