fileuploader.css 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. .qq-uploader { position:relative; width: 100%;}
  2. .qq-uploader a {
  3. display: inline-block;
  4. margin-top: 10px;
  5. text-decoration: none;
  6. }
  7. .qq-upload-button {
  8. display:block; /* or inline-block */
  9. padding: 7px 0;
  10. text-align:center;
  11. background:#666666;
  12. border-bottom:1px solid #ddd;
  13. color:#CCC;
  14. text-shadow: 1px -1px 0 #1F1F1F;
  15. margin-top: 10px;
  16. font-weight: bold;
  17. }
  18. /* 2.3 style fixes */
  19. .qq-upload-button.x-btn {
  20. border: 0;
  21. padding: 10px 15px;
  22. text-shadow: none;
  23. }
  24. .qq-upload-button-hover {background:#5C7F17;}
  25. .qq-upload-button-focus {outline:1px dotted black;}
  26. .qq-upload-drop-area {
  27. position:absolute; top:0; left:0; width:100%; height:100%; min-height: 70px; z-index:2;
  28. background:#5C7F17; text-align:center;
  29. }
  30. .qq-upload-drop-area span {
  31. display:block; position:absolute; top: 50%; width:100%; margin-top:-8px; font-size:16px;
  32. }
  33. .qq-upload-drop-area-active {background: #336600;}
  34. .qq-upload-list {
  35. margin: 15px 0 0 5px;
  36. padding: 0;
  37. list-style: none;
  38. }
  39. .qq-upload-list li {
  40. font-size: 12px;
  41. float: left;
  42. margin: 0 1% 1%;
  43. line-height: 15px;
  44. padding: 1%;
  45. width: 45%;
  46. border: 1px solid #000;
  47. }
  48. li.qq-upload-success {
  49. background-color: #009933;
  50. }
  51. li.qq-upload-fail {
  52. background-color: #ff0000;
  53. }
  54. .qq-upload-file, .qq-upload-spinner, .qq-upload-size, .qq-upload-cancel, .qq-upload-failed-text {
  55. margin-right: 0;
  56. }
  57. .qq-upload-file {
  58. display: block;
  59. overflow: hidden;
  60. text-overflow: ellipsis;
  61. white-space: nowrap;
  62. width: 75%
  63. }
  64. .qq-upload-spinner {
  65. display: block;
  66. background: url("loading.gif");
  67. width:15px;
  68. height:15px;
  69. vertical-align:text-bottom;
  70. float: right;
  71. }
  72. .qq-upload-cancel {
  73. font-size: 11px;
  74. }
  75. .qq-upload-size {
  76. padding-right: 10px;
  77. float: right;
  78. }
  79. .qq-upload-failed-text {display:none;}
  80. .qq-upload-fail .qq-upload-failed-text {display:inline;}