index.less 5.6 KB

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