index.less 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108
  1. .ImgListComponent{
  2. .ImgList{
  3. width: 100%;
  4. display: flex;
  5. flex-flow: row wrap;
  6. .fileItem{
  7. margin: 0 12px 12px 0;
  8. padding: 8px;
  9. border-radius: 4px;
  10. border: 1px solid #d9d9d9;
  11. position: relative;
  12. .imgFile{
  13. width: 100%;
  14. height: 100%;
  15. overflow: hidden;
  16. border-radius: 4px;
  17. }
  18. }
  19. .flexRowWrap{
  20. display: flex;
  21. flex-flow: row wrap;
  22. }
  23. .coveringLayer{
  24. display: none;
  25. position: absolute;
  26. top: 0;
  27. left: 0;
  28. right: 0;
  29. bottom: 0;
  30. border-radius: 4px;
  31. flex-flow: row nowrap;
  32. align-items: center;
  33. justify-content: center;
  34. }
  35. }
  36. .seeMore{
  37. padding-right: 20px;
  38. color: #58a3ff;
  39. }
  40. .seeMore:hover{
  41. color: #0e77ca;
  42. cursor: pointer;
  43. }
  44. .mask{
  45. position:fixed;
  46. top: 0;
  47. bottom: 0;
  48. left: 0;
  49. right: 0;
  50. z-index: 9999999999;
  51. background: rgba(0,0,0,.8);
  52. display:flex;
  53. flex-flow:column;
  54. align-items:center;
  55. justify-content:center;
  56. .progress{
  57. color: #FFF;
  58. height: auto;
  59. background: rgba(0,0,0,0);
  60. }
  61. .promptText{
  62. color: #FFF;
  63. padding-top: 15px;
  64. }
  65. }
  66. }
  67. .actionBar{
  68. position: relative;
  69. display: flex;
  70. flex-flow: row nowrap;
  71. align-items: center;
  72. }
  73. .imgModal{
  74. position: fixed;
  75. top: 0;
  76. bottom: 0;
  77. left: 0;
  78. right: 0;
  79. display: flex;
  80. align-items: center;
  81. justify-content: center;
  82. z-index: 99999;
  83. .floatingLayer{
  84. position: absolute;
  85. top: 0;
  86. bottom: 0;
  87. left: 0;
  88. right: 0;
  89. z-index: 99997;
  90. background: rgba(0,0,0,.5);
  91. }
  92. .ant-modal-content{
  93. background:rgba(0,0,0,0) !important;
  94. }
  95. .ant-modal-content{
  96. box-shadow: 0 2px 8px rgba(0, 0, 0, 0);
  97. }
  98. }
  99. .demandDetailShow-upload {
  100. .anticon-eye-o {
  101. margin-left: -8px;
  102. }
  103. .anticon-delete {
  104. display: none
  105. }
  106. }