| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- .mini-upload
- {
- width: 120px;
- height: 22px;
- position: absolute;
- left: 0;
- top: 3px;
- cursor: pointer;
- background: transparent;
- }
- .mini-upload-placeholder,.mini-upload-placeholder .webuploader-pick
- {
- display: inline-block;
- width: 100%;
- height: 100%;
-
- }
- .mini-upload-placeholder .webuploader-element-invisible
- {
- display:none;
- }
- .mini-upload-button
- {
- position: absolute;
- left: 5px;
- height: 100%;
- line-height: 20px;
- }
- .upicon-remove
- {
- width: 20px;
- height: 20px;
- display: inline-block;
- background: url("cancel.gif") no-repeat 50% 50%;
- cursor: pointer;
- }
- /*上传表格上传进度样式*/
- .progressbar
- {
- position: relative;
- background: #bbb;
- width: 100%;
- height: 16px;
- overflow: hidden;
- }
- .progressbar-percent
- {
- position: absolute;
- height: 18px;
- background: blue;
- left: 0;
- top: 0px;
- overflow: hidden;
- z-index: 1;
- }
- .progressbar-label
- {
- position: absolute;
- left: 0;
- top: 0;
- width: 100%;
- font-size: 13px;
- color: White;
- z-index: 10;
- text-align: center;
- height: 16px;
- line-height: 16px;
- }
|