plupload.queue.css 3.6 KB

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