quexianDetailControlHome.less 7.4 KB

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