quexianDetailControlHome.less 7.0 KB

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