Skip to content

Commit

Permalink
Use display:none to hide the fileupload-loading element.
Browse files Browse the repository at this point in the history
height:0 causes IE6 to still display parts of the element.
  • Loading branch information
blueimp committed Feb 14, 2012
1 parent 1f8c243 commit 67b9dcd
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions css/jquery.fileupload-ui.css
@@ -1,6 +1,6 @@
@charset 'UTF-8';
/*
* jQuery File Upload UI Plugin CSS 6.2
* jQuery File Upload UI Plugin CSS 6.2.1
* https://github.com/blueimp/jQuery-File-Upload
*
* Copyright 2010, Sebastian Tschan
Expand Down Expand Up @@ -44,11 +44,12 @@
position: absolute;
left: 50%;
width: 128px;
height: 0;
height: 128px;
background: url(../img/loading.gif) center no-repeat;
display: none;
}
.fileupload-processing .fileupload-loading {
height: 128px;
display: block;
}

/* Fix for IE 6: */
Expand Down

0 comments on commit 67b9dcd

Please sign in to comment.