quexianDetailControl.less 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317
  1. @import './reset.less';
  2. .quexianDetailControl{
  3. width: 100%;
  4. height: 100%;
  5. overflow-y: auto;
  6. .filterDropList{
  7. position: absolute;
  8. right: 0;
  9. max-height: 200px;
  10. overflow-y: auto;
  11. background: #fff;
  12. border: 1px solid #e4e7ed;
  13. box-shadow: 0 2px 12px 0 #e4e7ed;
  14. z-index: 2;
  15. li{
  16. padding: 0 10px;
  17. }
  18. }
  19. .deptList{
  20. width: 160px;
  21. max-height: 400px;
  22. }
  23. .deptItem:hover{
  24. background-color: #EEF4FF;
  25. cursor: pointer;
  26. }
  27. .selectLevel,.selectDept{
  28. display: inline-block;
  29. position: relative;
  30. width:160px;
  31. padding: 0 10px;
  32. height:40px;
  33. border-radius:4px;
  34. border: 1px solid #E2E5EF;
  35. box-sizing: border-box;
  36. cursor: pointer;
  37. }
  38. .filterItem.deptListWrap {
  39. .selectDept,.deptList {
  40. width: 180px;
  41. }
  42. }
  43. .filterItem{
  44. position: relative;
  45. display: inline-block;
  46. float: left;
  47. height: 40px;
  48. line-height: 40px;
  49. margin: 0 20px 15px 0;
  50. span{
  51. display: inline-block;
  52. line-height: 40px;
  53. position: relative;
  54. }
  55. input{
  56. width:120px;
  57. height:40px;
  58. border-radius:4px;
  59. border: 1px solid #E2E5EF;
  60. outline: none;
  61. margin-right: 10px;
  62. padding: 0 10px;
  63. box-sizing: border-box;
  64. }
  65. }
  66. .rejectList {
  67. height: 80px !important;
  68. }
  69. .selectUsed,.selectReject {
  70. float: right;
  71. }
  72. ul,li{
  73. padding:0;
  74. margin:0;
  75. list-style:none;
  76. }
  77. h2{
  78. width: 100%;
  79. box-sizing: border-box;
  80. background-color: #fff;
  81. z-index: 20;
  82. height: 44px;
  83. line-height: 44px;
  84. padding: 0 0 0 15px;
  85. border-bottom: 1px solid #E2E5EF;
  86. font-size: 16px;
  87. font-weight: bold;
  88. letter-spacing: 1px;
  89. }
  90. .main-body{
  91. // margin: 20px 40px;
  92. padding-bottom: 0px !important;
  93. }
  94. table{
  95. width: 100%;
  96. border:1px solid #E2E5EF;
  97. border-collapse: collapse;
  98. thead{
  99. background: #EFF0F9;
  100. }
  101. th[code]{
  102. cursor: pointer;
  103. &:after{
  104. content:"";
  105. display:inline-block;
  106. width: 11px;
  107. height: 14px;
  108. margin-left: 4px;
  109. vertical-align: middle;
  110. background-size: 100%;
  111. background-image: url("../images/grey.png");
  112. }
  113. &.asc:after{
  114. background: url("../images/up_blue.png");
  115. background-size: 100%;
  116. }
  117. &.desc:after{
  118. background: url("../images/down_blue.png");
  119. background-size: 100%;
  120. }
  121. }
  122. th,td{
  123. height: 40px;
  124. box-sizing: border-box;
  125. padding: 10px;
  126. border:1px solid #E2E5EF;
  127. border-collapse: collapse;
  128. }
  129. th{
  130. font-size: 14px;
  131. font-weight: 500;
  132. }
  133. td{
  134. font-size: 14px;
  135. font-weight: 400
  136. }
  137. .moduleNumber{
  138. text-align: center;
  139. }
  140. }
  141. // .filterBox{
  142. // margin: 0 0 20px 0;
  143. // }
  144. .filterItem{
  145. position: relative;
  146. display: inline-block;
  147. margin-right: 20px;
  148. height: 40px;
  149. line-height: 40px;
  150. margin: 0 20px 20px 0;
  151. }
  152. .filterDropList{
  153. position: absolute;
  154. right: 0;
  155. max-height: 200px;
  156. overflow-y: auto;
  157. background: #fff;
  158. display: none;
  159. border: 1px solid #e4e7ed;
  160. box-shadow: 0 2px 12px 0 #e4e7ed;
  161. z-index: 2;
  162. li{
  163. padding: 0 10px;
  164. }
  165. }
  166. .rejectList, .usedList{
  167. height: 120px;
  168. li{
  169. padding: 0 10px;
  170. }
  171. li:hover{
  172. background-color: #EEF4FF;
  173. cursor: pointer;
  174. }
  175. }
  176. .switchImg{
  177. width: 30px;
  178. }
  179. .roleSelect {
  180. position: relative;
  181. top: 3px;
  182. cursor: pointer;
  183. }
  184. .selectModuleType,.moduleItemInp,.selectUsed, .selectReject{
  185. display: inline-block;
  186. position: relative;
  187. width:140px;
  188. padding: 0 10px;
  189. height:40px;
  190. border-radius:4px;
  191. border: 1px solid #E2E5EF;
  192. box-sizing: border-box;
  193. cursor: pointer;
  194. padding-right: 26px;
  195. }
  196. .arrow{
  197. position: absolute;
  198. width: 10px;
  199. top: 16px;
  200. right: 10px;
  201. }
  202. .moduleItemInp{
  203. cursor: default;
  204. outline: none;
  205. }
  206. .moduleTypeList{
  207. width: 160px;
  208. }
  209. .selectUsed, .selectReject{
  210. width: 140px;
  211. }
  212. .modeTypeItem:hover{
  213. background-color: #EEF4FF;
  214. cursor: pointer;
  215. }
  216. .rejectList, .usedList {
  217. width: 140px;
  218. }
  219. .filter{
  220. display: inline-block;
  221. width:60px;
  222. height:36px;
  223. background:@activeColor;
  224. border-radius:4px;
  225. color: #fff;
  226. text-align: center;
  227. line-height: 36px;
  228. position: relative;
  229. top: -1px;
  230. cursor: pointer;
  231. }
  232. .editItem{
  233. color: @activeColor;
  234. cursor: pointer;
  235. }
  236. .editItemDis{
  237. color: #aaa;
  238. cursor: not-allowed;
  239. }
  240. .ellipsis{
  241. overflow: hidden;
  242. text-overflow:ellipsis;
  243. white-space: nowrap;
  244. }
  245. .textCenter{
  246. text-align: center;
  247. }
  248. .pagination{
  249. margin: 35px 0 20px 0 ;
  250. text-align: right;
  251. }
  252. .totalSum{
  253. font-size:12px;
  254. line-height:17px;
  255. color: #777777;
  256. margin-right: 20px;
  257. }
  258. .pageNum,.prePage,.nextPage, .more{
  259. display: inline-block;
  260. width: 20px;
  261. cursor: pointer;
  262. margin: 0 20px 0 0;
  263. text-align: center;
  264. color: #777;
  265. }
  266. .prePage,.nextPage{
  267. img{
  268. position: relative;
  269. top: 0px ;
  270. }
  271. }
  272. .more{
  273. cursor: not-allowed;
  274. }
  275. .arrowPage{
  276. width: 6px;
  277. }
  278. .activePage{
  279. color: @activeColor;
  280. }
  281. input::-webkit-outer-spin-button,
  282. input::-webkit-inner-spin-button {
  283. -webkit-appearance: none;
  284. }
  285. input[type="number"] {
  286. -moz-appearance: textfield;
  287. }
  288. }
  289. .usrContain .selectReject,.usrContain .selectModuleType ,.managerContainer .selectModuleType {
  290. float: right;
  291. }
  292. .usrContain .rejectList,.usrContain .usedList{
  293. height: 200px;
  294. }
  295. .usrContain .selectModuleType, .usrContain .moduleItemInp, .usrContain .selectUsed, .usrContain .selectReject {
  296. width: 170px;
  297. }
  298. .managerContainer .moduleTypeList {
  299. width: 140px;
  300. }
  301. .managerContainer.usrContain .moduleTypeList {
  302. width: 170px;
  303. height: 400px;
  304. }
  305. .managerContainer.usrContain .selectReject {
  306. width: 140px;
  307. }