42 lines
681 B
CSS
42 lines
681 B
CSS
|
|
|
|
|
|
.file_upload input {
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
margin: 0;
|
|
border: 300px solid transparent;
|
|
opacity: 0;
|
|
-ms-filter: 'alpha(opacity=0)';
|
|
filter: alpha(opacity=0);
|
|
-o-transform: translate(-300px, -300px) scale(10);
|
|
-moz-transform: translate(-800px, 0) scale(10);
|
|
cursor: pointer;
|
|
height: 100%;
|
|
}
|
|
|
|
:root .file_upload input {
|
|
height: auto;
|
|
}
|
|
|
|
.file_upload iframe, .file_upload button {
|
|
display: none;
|
|
}
|
|
|
|
.file_upload_preview img {
|
|
width: 80px;
|
|
}
|
|
|
|
.file_upload_progress .ui-progressbar-value {
|
|
background: url(pbar-ani.gif);
|
|
}
|
|
|
|
.file_upload_progress div {
|
|
width: 150px;
|
|
height: 15px;
|
|
}
|
|
|
|
.file_upload_cancel button {
|
|
cursor: pointer;
|
|
} |