plup.css 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  1. .plup-list {
  2. height: auto;
  3. }
  4. .plup-list {
  5. margin: 0px;
  6. padding: 0px;
  7. background-color: #f7f7f7;
  8. }
  9. .plup-list li {
  10. margin: 3px 3px 3px 0;
  11. padding: 1px;
  12. float: left;
  13. font-size: 8pt;
  14. list-style: none;
  15. position: relative;
  16. }
  17. .plupload.has-title .plup-list li,
  18. .plupload.has-alt .plup-list li {
  19. padding-bottom: 2em;
  20. }
  21. .plupload.has-title.has-alt .plup-list li {
  22. padding-bottom: 4em;
  23. }
  24. .plup-thumb-wrapper {
  25. cursor: move;
  26. }
  27. .plup-list li input.form-text {
  28. width: 90%;
  29. height: 1.1em;
  30. bottom: 0px;
  31. position: absolute;
  32. }
  33. .plupload.has-title.has-alt .plup-list li input.form-text.plup-title {
  34. bottom: 1.7em;
  35. }
  36. .plup-bar {
  37. background-color: #EEEEEE;
  38. height: 20px;
  39. padding: 5px 10px;
  40. }
  41. .plup-progress {
  42. width: 60px;
  43. height: 10px;
  44. margin-right: 5px;
  45. margin-left: 40px;
  46. float: left;
  47. }
  48. .plup-file-progressbar {
  49. width: 50px;
  50. height: 12px;
  51. }
  52. .plup-select, .plup-upload, .plup-progress-value {
  53. display: block;
  54. width: 80px;
  55. float: left;
  56. }
  57. .plup-select, .plup-upload,
  58. .plup-remove-file, .plup-remove-item {
  59. cursor: pointer;
  60. }
  61. .plup-select > div, .plup-upload > div {
  62. width: 16px;
  63. height: 16px;
  64. background-repeat: no-repeat;
  65. display: inline-block;
  66. margin-right: 5px;
  67. }
  68. .plup-select > div {
  69. background-image: url('add.png');
  70. background-repeat: no-repeat;
  71. background-position: center center;
  72. margin-bottom: -2px;
  73. }
  74. .plup-upload > div {
  75. background-image: url('upload.png');
  76. background-repeat: no-repeat;
  77. background-position: center center;
  78. margin-bottom: -2px;
  79. }
  80. .plup-files-done {
  81. display: block;
  82. width: 50px;
  83. float: right;
  84. }
  85. .ui-progressbar-value {
  86. background-image: none;
  87. background-color: #78E567;
  88. }
  89. .plup-remove-file,
  90. .plup-remove-item {
  91. display: block;
  92. background-image: url('cancel.png');
  93. background-repeat: no-repeat;
  94. background-position: center center;
  95. width: 16px;
  96. height: 16px;
  97. float: right;
  98. }
  99. .plup-remove-item {
  100. opacity: 0.5;
  101. position: absolute;
  102. right: 5px;
  103. top: 5px;
  104. }
  105. .plup-remove-item:hover {
  106. opacity: 1;
  107. }
  108. .plup-filelist {
  109. background-color: #f7f7f7;
  110. min-height: 50px;
  111. border-top: 1px solid #bbb;
  112. max-height: 400px;
  113. overflow: auto;
  114. }
  115. .plup-filelist table {
  116. margin: 0px;
  117. }
  118. .plup-filelist table tbody {
  119. border-top: 0px;
  120. }
  121. .plup-filelist tr:hover td {
  122. background-color: #fafafa;
  123. }
  124. .plup-drag-info .drag-main {
  125. text-align: center;
  126. font-weight: bold;
  127. }
  128. .plup-drag-info .drag-more {
  129. font-size: 0.75em;
  130. }