商丘12345 前端

webuploader.css 1.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. .webuploader-container {
  2. position: relative;
  3. }
  4. .webuploader-element-invisible {
  5. position: absolute !important;
  6. clip: rect(1px 1px 1px 1px);
  7. /* IE6, IE7 */
  8. clip: rect(1px, 1px, 1px, 1px);
  9. }
  10. .webuploader-pick {
  11. position: relative;
  12. display: inline-block;
  13. cursor: pointer;
  14. padding: 10px 15px;
  15. color: #fff;
  16. text-align: center;
  17. border-radius: 3px;
  18. overflow: hidden;
  19. }
  20. .webuploader-pick-disable {
  21. opacity: 0.6;
  22. pointer-events: none;
  23. }
  24. #filePicker {
  25. width: 75px;
  26. height: 75px;
  27. background-image: url(../images/iconfont-tianjia.png);
  28. background-size: 100% 100%;
  29. display: inline-block;
  30. position: relative;
  31. border-radius: 5px;
  32. margin: 0 10px 10px;
  33. }
  34. /*样式*/
  35. .thumbnail {
  36. width: 75px;
  37. height: 75px;
  38. background-color: #fff;
  39. border: 1px solid #ddd;
  40. border-radius: 4px;
  41. }
  42. .file-item {
  43. float: left;
  44. position: relative;
  45. margin: 0 10px 10px;
  46. padding: 4px;
  47. text-align: center;
  48. }
  49. .thumbnail img {
  50. width: 100%;
  51. height: 100%;
  52. }
  53. .file-item .error {
  54. position: absolute;
  55. top: 4px;
  56. left: 4px;
  57. right: 4px;
  58. background: red;
  59. color: white;
  60. text-align: center;
  61. height: 20px;
  62. font-size: 14px;
  63. line-height: 23px;
  64. }
  65. .file-item .info {
  66. position: absolute;
  67. left: 4px;
  68. bottom: 4px;
  69. right: 4px;
  70. height: 20px;
  71. line-height: 20px;
  72. text-indent: 5px;
  73. background: rgba(0, 0, 0, 0.6);
  74. color: white;
  75. overflow: hidden;
  76. white-space: nowrap;
  77. text-overflow: ellipsis;
  78. font-size: 12px;
  79. z-index: 10;
  80. }
  81. .image-close {
  82. position: absolute;
  83. display: inline-block;
  84. right: -6px;
  85. top: -6px;
  86. width: 20px;
  87. height: 20px;
  88. text-align: center;
  89. line-height: 20px;
  90. border-radius: 12px;
  91. background-color: #FF5053;
  92. color: #f3f3f3;
  93. border: solid 1px #FF5053;
  94. font-size: 9px;
  95. font-weight: 200;
  96. z-index: 1;
  97. }