Author: andrei_exadel
Date: 2008-03-25 10:24:56 -0400 (Tue, 25 Mar 2008)
New Revision: 7171
Modified:
trunk/ui/fileUpload/src/main/resources/org/richfaces/renderkit/html/css/fileUpload.xcss
trunk/ui/fileUpload/src/main/resources/org/richfaces/renderkit/html/js/FileUpload.js
Log:
RF-2739
Modified:
trunk/ui/fileUpload/src/main/resources/org/richfaces/renderkit/html/css/fileUpload.xcss
===================================================================
---
trunk/ui/fileUpload/src/main/resources/org/richfaces/renderkit/html/css/fileUpload.xcss 2008-03-25
14:11:50 UTC (rev 7170)
+++
trunk/ui/fileUpload/src/main/resources/org/richfaces/renderkit/html/css/fileUpload.xcss 2008-03-25
14:24:56 UTC (rev 7171)
@@ -7,7 +7,7 @@
<f:verbatim><![CDATA[
-.upload_list_overflow{overflow : hidden;}
+.upload_list_overflow{overflow: auto; overflow-y: auto; overflow-x: hidden;}
.upload_name{ width : 100%; height : 58px; padding : 2px 10px 2px 10px;}
.upload_del{ width : 90px; text-align : center; padding-top : 3; padding-bottom : 3;}
.upload_scroll{ width : 10px; text-align : center;}
Modified:
trunk/ui/fileUpload/src/main/resources/org/richfaces/renderkit/html/js/FileUpload.js
===================================================================
---
trunk/ui/fileUpload/src/main/resources/org/richfaces/renderkit/html/js/FileUpload.js 2008-03-25
14:11:50 UTC (rev 7170)
+++
trunk/ui/fileUpload/src/main/resources/org/richfaces/renderkit/html/js/FileUpload.js 2008-03-25
14:24:56 UTC (rev 7171)
@@ -444,9 +444,9 @@
initFileEntryWidth: function () {
var w;
if (this.element.getWidth() != 0) {
- w = this.element.getWidth() - 115;
+ w = this.element.getWidth() - 122;
} else {
- w = this.element.style.width - 115;
+ w = this.element.style.width - 122;
}
this.fileEntryWidth = w;
var progressW = this._progressBar.style.width;