index.less 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214
  1. @import "~@less/mixin.less";
  2. @import "~@less/variables.less";
  3. .mainHistory {
  4. .maskZIndex;
  5. position: fixed;
  6. margin-left: -500px;
  7. left: 50%;
  8. width: 1000px;
  9. top: 7%;
  10. bottom: 7%;
  11. height: 86%;
  12. background-color: #fff;
  13. overflow: hidden;
  14. // padding-bottom:20px;
  15. .close {
  16. position: absolute;
  17. top: 0;
  18. right: 0;
  19. cursor: pointer;
  20. .contentZIndex1
  21. }
  22. .mainHistoryLeft {
  23. width: 300px;
  24. height: 100%;
  25. background: #d2d1d1;
  26. position: relative;
  27. float: left;
  28. padding-top: 80px;
  29. .title {
  30. height: 80px;
  31. line-height: 80px;
  32. padding: 0 20px;
  33. position: absolute;
  34. top: 0;
  35. left: 0;
  36. width: 100%;
  37. background: #d2d1d1;
  38. }
  39. .his {
  40. font-size: 18px;
  41. }
  42. .sort {
  43. float: right;
  44. cursor: pointer;
  45. img {
  46. vertical-align: middle;
  47. width: 15px;
  48. height: 15px;
  49. }
  50. }
  51. .lists {
  52. box-sizing: border-box;
  53. overflow-y: auto;
  54. height: 100%;
  55. li {
  56. height: 54px;
  57. line-height: 54px;
  58. padding: 0 10px;
  59. font-size: 14px;
  60. cursor: pointer;
  61. border: 1px solid transparent;
  62. display: flex;
  63. align-items: center;
  64. .activeColor {
  65. color: '#3B9ED0';
  66. }
  67. .itemLeft{
  68. flex: 1;
  69. display: flex;
  70. // align-items: center;
  71. justify-content: start;
  72. flex-direction: column;
  73. .historyTop{
  74. display: flex;
  75. height:34px;
  76. .itemName {
  77. // display: inline-block;
  78. max-width: 120px;
  79. overflow: hidden;
  80. text-overflow: ellipsis;
  81. white-space: nowrap;
  82. font-size: 14px;
  83. line-height: 34px;
  84. color: #1E1E1E;
  85. }
  86. .itemNameActive {
  87. // display: inline-block;
  88. max-width: 120px;
  89. overflow: hidden;
  90. text-overflow: ellipsis;
  91. white-space: nowrap;
  92. font-size: 14px;
  93. line-height: 34px;
  94. color: #3B9ED0;
  95. }
  96. .edit{
  97. width: 30px;
  98. height: 30px;
  99. // background-color: pink;
  100. img{
  101. width: 14px;
  102. height: 14px;
  103. position: relative;
  104. top: -8px;
  105. left: 8px;
  106. }
  107. }
  108. }
  109. .time {
  110. font-size:10px;
  111. height:20px;
  112. line-height: 20px;
  113. color: #777;
  114. }
  115. .timeActive {
  116. font-size:10px;
  117. height:20px;
  118. line-height: 20px;
  119. color: #3B9ED0;
  120. }
  121. }
  122. .itemRight{
  123. width: 88px;
  124. display: flex;
  125. align-items: center;
  126. .del {
  127. // background-color: red;
  128. margin-left: 8px;
  129. width: 30px;
  130. height:30px;
  131. img{
  132. width: 20px;
  133. height: 20px;
  134. position: relative;
  135. top: -7px;
  136. left: 3px;
  137. }
  138. }
  139. }
  140. }
  141. li:hover {
  142. border: 1px solid #66afe9;
  143. border: 1px solid #66afe9\0;
  144. }
  145. .bgc {
  146. background-color: #fff;
  147. }
  148. .quote {
  149. width: 50px;
  150. height: 22px;
  151. line-height: 22px;
  152. border-radius: 15px;
  153. border: 0 none;
  154. color: #fff;
  155. background-color: @template-color;
  156. float: right;
  157. // margin-top: 16px;
  158. font-size: 12px;
  159. // display: none;
  160. outline: none;
  161. // margin-left: 10px;
  162. }
  163. .quoteShow {
  164. display: block;
  165. }
  166. .quoteHide {
  167. display: none;
  168. }
  169. }
  170. }
  171. .mainHistoryRight {
  172. // margin-left: 300px;
  173. // position: absolute;
  174. overflow: auto;
  175. height: 100%;
  176. padding-top: 40px;
  177. padding-bottom:20px;
  178. // top: 42px;
  179. float: left;
  180. }
  181. .closeHis {
  182. width: 700px;
  183. height: 40px;
  184. margin-left: 300px;
  185. position: absolute;
  186. .contentZIndex1;
  187. // border-bottom: 1px solid #EAEDF1;
  188. }
  189. }
  190. .center {
  191. text-align: center;
  192. font-size: 16px;
  193. padding-top: 10px;
  194. padding-bottom: 50px;
  195. }
  196. .outBox{
  197. padding-left: 18px;
  198. height: 100px;
  199. width: 100%;
  200. display: flex;
  201. align-items: center;
  202. }