PingAnYeXianSZCG_Web 前端代码

webuploader.css 1.8KB

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