jquery.plupload.queue.css 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186
  1. /*
  2. Plupload
  3. ------------------------------------------------------------------- */
  4. .plupload_wrapper * {
  5. box-sizing: content-box;
  6. }
  7. .plupload_button {
  8. display: -moz-inline-box; /* FF < 3*/
  9. display: inline-block;
  10. font: normal 12px sans-serif;
  11. text-decoration: none;
  12. color: #42454a;
  13. border: 1px solid #bababa;
  14. padding: 2px 8px 3px 20px;
  15. margin-right: 4px;
  16. background: #f3f3f3 url('../img/buttons.png') no-repeat 0 center;
  17. outline: 0;
  18. /* Optional rounded corners for browsers that support it */
  19. -moz-border-radius: 3px;
  20. -khtml-border-radius: 3px;
  21. -webkit-border-radius: 3px;
  22. border-radius: 3px;
  23. }
  24. .plupload_button:hover {
  25. color: #000;
  26. text-decoration: none;
  27. }
  28. .plupload_disabled, a.plupload_disabled:hover {
  29. color: #737373;
  30. border-color: #c5c5c5;
  31. background: #ededed url('../img/buttons-disabled.png') no-repeat 0 center;
  32. cursor: default;
  33. }
  34. .plupload_add {
  35. background-position: -181px center;
  36. }
  37. .plupload_wrapper {
  38. font: normal 11px Verdana,sans-serif;
  39. width: 100%;
  40. }
  41. .plupload_container {
  42. padding: 8px;
  43. background: url('../img/transp50.png');
  44. /*-moz-border-radius: 5px;*/
  45. }
  46. .plupload_container input {
  47. border: 1px solid #DDD;
  48. font: normal 11px Verdana,sans-serif;
  49. width: 98%;
  50. }
  51. .plupload_header {background: #2A2C2E url('../img/backgrounds.gif') repeat-x;}
  52. .plupload_header_content {
  53. background: url('../img/backgrounds.gif') no-repeat 0 -317px;
  54. min-height: 56px;
  55. padding-left: 60px;
  56. color: #FFF;
  57. }
  58. .plupload_header_title {
  59. font: normal 18px sans-serif;
  60. padding: 6px 0 3px;
  61. }
  62. .plupload_header_text {
  63. font: normal 12px sans-serif;
  64. }
  65. .plupload_filelist {
  66. margin: 0;
  67. padding: 0;
  68. list-style: none;
  69. }
  70. .plupload_scroll .plupload_filelist {
  71. height: 185px;
  72. background: #F5F5F5;
  73. overflow-y: scroll;
  74. }
  75. .plupload_filelist li {
  76. padding: 10px 8px;
  77. background: #F5F5F5 url('../img/backgrounds.gif') repeat-x 0 -156px;
  78. border-bottom: 1px solid #DDD;
  79. }
  80. .plupload_filelist_header, .plupload_filelist_footer {
  81. background: #DFDFDF;
  82. padding: 8px 8px;
  83. color: #42454A;
  84. }
  85. .plupload_filelist_header {
  86. border-top: 1px solid #EEE;
  87. border-bottom: 1px solid #CDCDCD;
  88. }
  89. .plupload_filelist_footer {border-top: 1px solid #FFF; height: 22px; line-height: 20px; vertical-align: middle;}
  90. .plupload_file_name {float: left; overflow: hidden}
  91. .plupload_file_status {color: #777;}
  92. .plupload_file_status span {color: #42454A;}
  93. .plupload_file_size, .plupload_file_status, .plupload_progress {
  94. float: right;
  95. width: 80px;
  96. }
  97. .plupload_file_size, .plupload_file_status, .plupload_file_action {text-align: right;}
  98. .plupload_filelist .plupload_file_name {
  99. width: 205px;
  100. white-space: nowrap;
  101. text-overflow: ellipsis;
  102. }
  103. .plupload_file_action {
  104. float: right;
  105. width: 16px;
  106. height: 16px;
  107. margin-left: 15px;
  108. }
  109. .plupload_file_action * {
  110. display: none;
  111. width: 16px;
  112. height: 16px;
  113. }
  114. li.plupload_uploading {background: #ECF3DC url('../img/backgrounds.gif') repeat-x 0 -238px;}
  115. li.plupload_done {color:#AAA}
  116. li.plupload_delete a {
  117. background: url('../img/delete.gif');
  118. }
  119. li.plupload_failed a {
  120. background: url('../img/error.gif');
  121. cursor: default;
  122. }
  123. li.plupload_done a {
  124. background: url('../img/done.gif');
  125. cursor: default;
  126. }
  127. .plupload_progress, .plupload_upload_status {
  128. display: none;
  129. }
  130. .plupload_progress_container {
  131. margin-top: 3px;
  132. border: 1px solid #CCC;
  133. background: #FFF;
  134. padding: 1px;
  135. }
  136. .plupload_progress_bar {
  137. width: 0px;
  138. height: 7px;
  139. background: #CDEB8B;
  140. }
  141. .plupload_scroll .plupload_filelist_header .plupload_file_action, .plupload_scroll .plupload_filelist_footer .plupload_file_action {
  142. margin-right: 17px;
  143. }
  144. /* Floats */
  145. .plupload_clear,.plupload_clearer {clear: both;}
  146. .plupload_clearer, .plupload_progress_bar {
  147. display: block;
  148. font-size: 0;
  149. line-height: 0;
  150. }
  151. li.plupload_droptext {
  152. background: transparent;
  153. text-align: center;
  154. vertical-align: middle;
  155. border: 0;
  156. line-height: 165px;
  157. }