郑州第一人民医院UI

webuploader.css 1.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  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. text-align: center;
  15. border-radius: 3px;
  16. overflow: hidden;
  17. }
  18. .webuploader-pick-disable {
  19. opacity: 0.6;
  20. pointer-events: none;
  21. }
  22. #filePicker {
  23. /*background-image: url(../img/iconfont-tianjia.png);*/
  24. background-size: 100% 100%;
  25. display: inline-block;
  26. position: relative;
  27. border-radius: 5px;
  28. /* margin: 5px 5px 10px 10px; */
  29. margin: 0 auto;
  30. top: 8px;
  31. }
  32. /*样式*/
  33. .thumbnail {
  34. width: 75px;
  35. height: 75px;
  36. background-color: #fff;
  37. border: 1px solid #ddd;
  38. border-radius: 4px;
  39. }
  40. .file-item {
  41. float: left;
  42. position: relative;
  43. margin: 0 10px 10px;
  44. padding: 4px;
  45. }
  46. .thumbnail img {
  47. width: 100%;
  48. height: 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. }