index.less 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172
  1. @import "~@less/variables.less";
  2. .newFolderWrap {
  3. .folderModal {
  4. z-index: 120;
  5. position: fixed;
  6. width: 100%;
  7. height: 100%;
  8. top: 0;
  9. left: 0;
  10. background: #000;
  11. opacity: .3;
  12. filter: alpha(opacity=60);
  13. -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(opacity=60);";
  14. }
  15. .nameWrap{
  16. z-index: 130;
  17. position: fixed;
  18. top: 10%;
  19. left: 50%;
  20. margin: auto;
  21. border-radius: 5px;
  22. background: #fff;
  23. width: 500px;
  24. height: 80%;
  25. margin-left: -250px;
  26. padding: 40px 0 65px 0;
  27. // margin-top: -115px;
  28. .mainWrap {
  29. padding: 50px 10px;
  30. }
  31. .title {
  32. position: absolute;
  33. width: 100%;
  34. top: 0;
  35. height: 40px;
  36. line-height: 40px;
  37. border-bottom: 1px solid #ccc;
  38. img{
  39. float: right;
  40. }
  41. }
  42. .leftName {
  43. width: 135px;
  44. text-align: right;
  45. padding-right: 16px;
  46. display: inline-block;
  47. }
  48. .titleCon {
  49. float: left;
  50. height: 40px;
  51. line-height: 40px;
  52. margin-left: 10px;
  53. }
  54. input {
  55. border: 1px solid #CCCCCC;
  56. padding: 5px 10px;
  57. width: 240px;
  58. }
  59. }
  60. .delFoot{
  61. position: absolute;
  62. width: 100%;
  63. bottom: 0;
  64. .halfBtn {
  65. width: 50%;
  66. display: inline-block;
  67. text-align: center;
  68. height: 65px;
  69. }
  70. .delBtn{
  71. display: inline-block;
  72. width: 100px;
  73. height: 34px;
  74. line-height: 32px;
  75. border-radius: 5px;
  76. margin: 0 auto;
  77. cursor: pointer;
  78. }
  79. .delDel{
  80. color: #fff;
  81. background: #3B9ED0;
  82. }
  83. .delCancel{
  84. color:#000;
  85. background: #fff;
  86. border: 1px solid #1E1E1E;
  87. color: #1E1E1E;
  88. }
  89. }
  90. .delContent{
  91. height: 100%;
  92. overflow-y: auto;
  93. }
  94. .floderBox{
  95. line-height: 45px;
  96. }
  97. .floderItem{
  98. border-bottom: 1px solid #EAEDF1;
  99. padding: 0 40px 0 10px;
  100. position: relative;
  101. cursor: pointer;
  102. line-height: 45px;
  103. }
  104. .floderRD{
  105. width: 20px;
  106. height: 20px;
  107. position: relative;
  108. top: 5px;
  109. right: 4px;
  110. pointer-events: none;
  111. }
  112. .orderIcon{
  113. // width: 20px;
  114. position: absolute;
  115. top: 11px;
  116. right: 25px;
  117. }
  118. .templateItem{
  119. position: relative;
  120. line-height: 45px;
  121. padding: 0 40px 0 10px;;
  122. }
  123. .arrowDown{
  124. position: absolute;
  125. top: 13px;
  126. right: 25px;
  127. display: inline-block;
  128. width: 12px;
  129. height: 17px;
  130. background: url("../../common/images/folderDown.png") no-repeat center ;
  131. background-size: 12px 17px;
  132. }
  133. .arrowUp{
  134. position: absolute;
  135. top: 13px;
  136. right: 25px;
  137. display: inline-block;
  138. width: 12px;
  139. height: 17px;
  140. background: url("../../common/images/folderUp.png") no-repeat center ;
  141. background-size: 12px 17px;
  142. }
  143. .floderItem:hover,.templateItem:hover {
  144. border: 1px solid #3B9ED0;
  145. .arrowDown{
  146. position: absolute;
  147. top: 13px;
  148. right: 25px;
  149. display: inline-block;
  150. width: 12px;
  151. height: 17px;
  152. background: url("../../common/images/folderDownSelect.png") no-repeat center ;
  153. background-size: 12px 17px;
  154. }
  155. .arrowUp{
  156. position: absolute;
  157. top: 13px;
  158. right: 25px;
  159. display: inline-block;
  160. width: 12px;
  161. height: 17px;
  162. background: url("../../common/images/folderUpSelect.png") no-repeat center ;
  163. background-size: 12px 17px;
  164. }
  165. }
  166. // .floderItem:hover{
  167. // border: 1px solid #3B9ED0;
  168. // }
  169. }