webuploader.extends.css 8.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386
  1. @CHARSET "UTF-8";
  2. /* ------------ */
  3. .webuploader-container {
  4. position: relative;
  5. }
  6. .webuploader-element-invisible {
  7. position: absolute !important;
  8. clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  9. clip: rect(1px,1px,1px,1px);
  10. }
  11. .webuploader-pick {
  12. position: relative;
  13. display: inline-block;
  14. cursor: pointer;
  15. color: #fff;
  16. text-align: center;
  17. border-radius: 3px;
  18. overflow: hidden;
  19. padding: 1px 1px;
  20. }
  21. .webuploader-pick-disable {
  22. opacity: 0.6;
  23. pointer-events:none;
  24. }
  25. #wrapper_wu {
  26. width: 980px;
  27. margin: 0 auto;
  28. margin: 1em;
  29. width: auto;
  30. }
  31. .wu-container {
  32. border: 1px solid #dadada;
  33. color: #838383;
  34. font-size: 12px;
  35. margin-top: 10px;
  36. background-color: #FFF;
  37. }
  38. .uploader-container .queueList {
  39. margin: 20px;
  40. }
  41. .element-invisible {
  42. position: absolute !important;
  43. clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  44. clip: rect(1px,1px,1px,1px);
  45. }
  46. .uploader-container .placeholder {
  47. border: 3px dashed #e6e6e6;
  48. min-height: 238px;
  49. padding-top: 158px;
  50. text-align: center;
  51. background: url("./image-upload/image.png") center 93px no-repeat;
  52. color: #cccccc;
  53. font-size: 18px;
  54. position: relative;
  55. }
  56. .uploader-container .placeholder .webuploader-pick {
  57. font-size: 18px;
  58. background: #00b7ee;
  59. border-radius: 3px;
  60. line-height: 44px;
  61. color: #fff;
  62. display: inline-block;
  63. margin: 20px auto;
  64. cursor: pointer;
  65. box-shadow: 0 1px 1px rgba(0, 0, 0, 0.1);
  66. }
  67. .uploader-container .placeholder .webuploader-pick-hover {
  68. background: #00a2d4;
  69. }
  70. .uploader-container .placeholder .flashTip {
  71. color: #666666;
  72. font-size: 12px;
  73. position: absolute;
  74. width: 100%;
  75. text-align: center;
  76. bottom: 20px;
  77. }
  78. .uploader-container .placeholder .flashTip a {
  79. color: #0785d1;
  80. text-decoration: none;
  81. }
  82. .uploader-container .placeholder .flashTip a:hover {
  83. text-decoration: underline;
  84. }
  85. .uploader-container .placeholder.webuploader-dnd-over {
  86. border-color: #999999;
  87. }
  88. .uploader-container .placeholder.webuploader-dnd-over.webuploader-dnd-denied {
  89. border-color: red;
  90. }
  91. .uploader-container .ace-thumbnails {
  92. list-style: none;
  93. margin: 0;
  94. padding: 0;
  95. }
  96. .uploader-container .ace-thumbnails:after {
  97. content: '';
  98. display: block;
  99. width: 0;
  100. height: 0;
  101. overflow: hidden;
  102. clear: both;
  103. }
  104. .uploader-container .ace-thumbnails li {
  105. text-align: center;
  106. margin: 0 8px 20px 0;
  107. position: relative;
  108. display: inline;
  109. float: left;
  110. overflow: hidden;
  111. font-size: 12px;
  112. }
  113. .uploader-container .ace-thumbnails li p.log {
  114. position: relative;
  115. top: -45px;
  116. }
  117. .uploader-container .ace-thumbnails li p.title {
  118. position: absolute;
  119. top: 0;
  120. left: 0;
  121. width: 100%;
  122. overflow: hidden;
  123. white-space: nowrap;
  124. text-overflow : ellipsis;
  125. top: 5px;
  126. text-indent: 5px;
  127. text-align: left;
  128. z-index: 50;
  129. }
  130. .uploader-container .ace-thumbnails li .progress {
  131. position: absolute;
  132. width: 100%;
  133. bottom: 0;
  134. left: 0;
  135. margin-bottom:0px;
  136. overflow: hidden;
  137. }
  138. .uploader-container .ace-thumbnails li .progress span {
  139. display: none;
  140. overflow: hidden;
  141. width: 0;
  142. height: 100%;
  143. -webit-transition: width 200ms linear;
  144. -moz-transition: width 200ms linear;
  145. -o-transition: width 200ms linear;
  146. -ms-transition: width 200ms linear;
  147. transition: width 200ms linear;
  148. -webkit-animation: progressmove 2s linear infinite;
  149. -moz-animation: progressmove 2s linear infinite;
  150. -o-animation: progressmove 2s linear infinite;
  151. -ms-animation: progressmove 2s linear infinite;
  152. animation: progressmove 2s linear infinite;
  153. -webkit-transform: translateZ(0);
  154. }
  155. @-webkit-keyframes progressmove {
  156. 0% {
  157. background-position: 0 0;
  158. }
  159. 100% {
  160. background-position: 17px 0;
  161. }
  162. }
  163. @-moz-keyframes progressmove {
  164. 0% {
  165. background-position: 0 0;
  166. }
  167. 100% {
  168. background-position: 17px 0;
  169. }
  170. }
  171. @keyframes progressmove {
  172. 0% {
  173. background-position: 0 0;
  174. }
  175. 100% {
  176. background-position: 17px 0;
  177. }
  178. }
  179. .uploader-container .ace-thumbnails li p.imgWrap {
  180. position: relative;
  181. z-index: 2;
  182. line-height: 110px;
  183. vertical-align: middle;
  184. overflow: hidden;
  185. width: 110px;
  186. height: 110px;
  187. -webkit-transform-origin: 50% 50%;
  188. -moz-transform-origin: 50% 50%;
  189. -o-transform-origin: 50% 50%;
  190. -ms-transform-origin: 50% 50%;
  191. transform-origin: 50% 50%;
  192. -webit-transition: 200ms ease-out;
  193. -moz-transition: 200ms ease-out;
  194. -o-transition: 200ms ease-out;
  195. -ms-transition: 200ms ease-out;
  196. transition: 200ms ease-out;
  197. }
  198. .uploader-container .ace-thumbnails li img {
  199. width: 100%;
  200. }
  201. .uploader-container .ace-thumbnails li p.error {
  202. background: #f43838;
  203. color: #fff;
  204. position: absolute;
  205. bottom: 0;
  206. left: 0;
  207. height: 28px;
  208. line-height: 28px;
  209. width: 100%;
  210. z-index: 100;
  211. }
  212. .uploader-container .ace-thumbnails li .success {
  213. display: block;
  214. position: absolute;
  215. left: 0;
  216. bottom: 0;
  217. height: 40px;
  218. width: 100%;
  219. background: url(./image-upload/success.png) no-repeat right bottom;
  220. }
  221. .uploader-container .tools{
  222. z-index:1;
  223. padding-top: 6px;
  224. }
  225. .uploader-container .ace-thumbnails div.file-panel {
  226. position: absolute;
  227. height: 0;
  228. filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0,startColorstr='#80000000', endColorstr='#80000000')\0;
  229. background: rgba( 0, 0, 0, 0.5 );
  230. width: 100%;
  231. top: 0;
  232. left: 0;
  233. overflow: hidden;
  234. z-index: 300;
  235. }
  236. .uploader-container .ace-thumbnails div.file-panel span {
  237. width: 24px;
  238. height: 24px;
  239. display: inline;
  240. float: right;
  241. text-indent: -9999px;
  242. overflow: hidden;
  243. background: url(./image-upload/icons.png) no-repeat;
  244. margin: 5px 1px 1px;
  245. cursor: pointer;
  246. }
  247. .uploader-container .ace-thumbnails div.file-panel span.rotateLeft {
  248. background-position: 0 -24px;
  249. }
  250. .uploader-container .ace-thumbnails div.file-panel span.rotateLeft:hover {
  251. background-position: 0 0;
  252. }
  253. .uploader-container .ace-thumbnails div.file-panel span.rotateRight {
  254. background-position: -24px -24px;
  255. }
  256. .uploader-container .ace-thumbnails div.file-panel span.rotateRight:hover {
  257. background-position: -24px 0;
  258. }
  259. .uploader-container .ace-thumbnails div.file-panel span.cancel {
  260. background-position: -48px -24px;
  261. }
  262. .uploader-container .ace-thumbnails div.file-panel span.cancel:hover {
  263. background-position: -48px 0;
  264. }
  265. .uploader-container .statusBar {
  266. height: 63px;
  267. border-top: 1px solid #dadada;
  268. padding: 0 20px;
  269. line-height: 63px;
  270. vertical-align: middle;
  271. position: relative;
  272. }
  273. .uploader-container .statusBar .progress {
  274. border: 1px solid #1483d8;
  275. width: 198px;
  276. height: 18px;
  277. position: relative;
  278. display: inline-block;
  279. text-align: center;
  280. line-height: 20px;
  281. color: #6dbfff;
  282. position: relative;
  283. margin-right: 10px;
  284. }
  285. .uploader-container .statusBar .progress span.percentage {
  286. width: 0;
  287. height: 100%;
  288. left: 0;
  289. top: 0;
  290. background: #1483d8;
  291. position: absolute;
  292. }
  293. .uploader-container .statusBar .progress span.text {
  294. position: relative;
  295. z-index: 10;
  296. }
  297. .uploader-container .statusBar .info {
  298. display: inline-block;
  299. font-size: 14px;
  300. color: #666666;
  301. }
  302. .uploader-container .statusBar .btns {
  303. position: absolute;
  304. top: 10px;
  305. right: 20px;
  306. line-height: 40px;
  307. }
  308. #filePicker2 {
  309. display: inline-block;
  310. float: left;
  311. }
  312. .uploader-container .statusBar .btns .webuploader-pick,
  313. .uploader-container .statusBar .btns .uploadBtn,
  314. .uploader-container .statusBar .btns .uploadBtn.state-uploading,
  315. .uploader-container .statusBar .btns .uploadBtn.state-paused {
  316. background: #ffffff;
  317. border: 1px solid #cfcfcf;
  318. color: #565656;
  319. padding: 0 18px;
  320. display: inline-block;
  321. border-radius: 3px;
  322. margin-left: 10px;
  323. cursor: pointer;
  324. font-size: 14px;
  325. float: left;
  326. }
  327. .uploader-container .statusBar .btns .webuploader-pick-hover,
  328. .uploader-container .statusBar .btns .uploadBtn:hover,
  329. .uploader-container .statusBar .btns .uploadBtn.state-uploading:hover,
  330. .uploader-container .statusBar .btns .uploadBtn.state-paused:hover {
  331. background: #f0f0f0;
  332. }
  333. .uploader-container .statusBar .btns .uploadBtn {
  334. background: #00b7ee;
  335. color: #fff;
  336. border-color: transparent;
  337. }
  338. .uploader-container .statusBar .btns .uploadBtn:hover {
  339. background: #00a2d4;
  340. }
  341. .uploader-container .statusBar .btns .uploadBtn.disabled {
  342. pointer-events: none;
  343. opacity: 0.6;
  344. }