multiupload.css 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. .mini-upload
  2. {
  3. width: 120px;
  4. height: 22px;
  5. position: absolute;
  6. left: 0;
  7. top: 3px;
  8. cursor: pointer;
  9. background: transparent;
  10. }
  11. .mini-upload-placeholder,.mini-upload-placeholder .webuploader-pick
  12. {
  13. display: inline-block;
  14. width: 100%;
  15. height: 100%;
  16. }
  17. .mini-upload-placeholder .webuploader-element-invisible
  18. {
  19. display:none;
  20. }
  21. .mini-upload-button
  22. {
  23. position: absolute;
  24. left: 5px;
  25. height: 100%;
  26. line-height: 20px;
  27. }
  28. .upicon-remove
  29. {
  30. width: 20px;
  31. height: 20px;
  32. display: inline-block;
  33. background: url("cancel.gif") no-repeat 50% 50%;
  34. cursor: pointer;
  35. }
  36. /*上传表格上传进度样式*/
  37. .progressbar
  38. {
  39. position: relative;
  40. background: #bbb;
  41. width: 100%;
  42. height: 16px;
  43. overflow: hidden;
  44. }
  45. .progressbar-percent
  46. {
  47. position: absolute;
  48. height: 18px;
  49. background: blue;
  50. left: 0;
  51. top: 0px;
  52. overflow: hidden;
  53. z-index: 1;
  54. }
  55. .progressbar-label
  56. {
  57. position: absolute;
  58. left: 0;
  59. top: 0;
  60. width: 100%;
  61. font-size: 13px;
  62. color: White;
  63. z-index: 10;
  64. text-align: center;
  65. height: 16px;
  66. line-height: 16px;
  67. }