qcList.less 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349
  1. @import "./reset.less";
  2. .container{
  3. width: 100%;
  4. height: 100%;
  5. overflow: auto;
  6. background: #fff;
  7. border-bottom: 10px @disColor solid;
  8. box-sizing: border-box;
  9. }
  10. ul,li{
  11. list-style: none;
  12. }
  13. h2{
  14. .h2;
  15. border-bottom: 10px @disColor solid;
  16. position: fixed;
  17. top: 0;
  18. }
  19. .main-body{
  20. .main-body-com;
  21. border: none;
  22. border-left:10px @disColor solid;
  23. margin: 54px 0 0;
  24. min-width: 1090px;
  25. min-height: calc(100% - 54px);
  26. // overflow: auto;
  27. }
  28. .borderRight{
  29. position: absolute;
  30. height: 100%;
  31. }
  32. .qctable{
  33. .table;
  34. min-width: 1090px;
  35. th,td{
  36. padding:5px 10px;
  37. }
  38. th{
  39. white-space: nowrap;
  40. }
  41. th[code]{
  42. cursor: pointer;
  43. &:after{
  44. content:"";
  45. display:inline-block;
  46. width: 11px;
  47. height: 14px;
  48. margin-left: 4px;
  49. vertical-align: middle;
  50. background-size: 100%;
  51. background-image: url("../images/grey.png");
  52. }
  53. &.asc:after{
  54. background: url("../images/up_blue.png");
  55. background-size: 100%;
  56. }
  57. &.desc:after{
  58. background: url("../images/down_blue.png");
  59. background-size: 100%;
  60. }
  61. }
  62. td{
  63. white-space: nowrap;
  64. }
  65. .moduleNumber{
  66. text-align: center;
  67. }
  68. .scoreOperaItem{
  69. width: 50px;
  70. cursor: pointer;
  71. }
  72. .tabTitle {
  73. background: #EFF0F9 !important;
  74. }
  75. }
  76. .tabFoot{
  77. height: 40px;
  78. background: none;
  79. /*border: 1px solid #E2E5EF;
  80. border-top: none;
  81. box-sizing: border-box;*/
  82. }
  83. .scoreOpera{
  84. height: 50px;
  85. line-height: 50px;
  86. margin: 0 20px 0 0;
  87. cursor: pointer;
  88. img{
  89. margin: 0 10px 0 0;
  90. vertical-align: middle;
  91. }
  92. }
  93. .recordScoreOperaBtn{
  94. cursor: pointer;
  95. color: @activeColor;
  96. }
  97. .recordScoreBtn{
  98. cursor: pointer;
  99. display: inline-block;
  100. width:68px;
  101. height:30px;
  102. line-height: 30px;
  103. text-align: center;
  104. border-radius:4px;
  105. box-sizing: border-box;
  106. border: 1px solid @activeColor;
  107. color: #fff;
  108. background: @activeColor;
  109. }
  110. .filterBox{
  111. position: relative;
  112. }
  113. .overAuto{
  114. display: table;
  115. padding-right: 20px;
  116. width: 100%;
  117. }
  118. .toggle-item{
  119. display: none;
  120. }
  121. .filter-toggler{
  122. position: absolute;
  123. left: 1048px;
  124. top: 8px;
  125. color: #777;
  126. white-space: nowrap;
  127. font-size: 14px;
  128. background: url("../images/arrow_up.png") 60px center no-repeat;
  129. padding-right: 15px;
  130. background-size: 10px 6px;
  131. &.up{
  132. background: url("../images/arrow_down.png") 60px center no-repeat;
  133. background-size: 10px 6px;
  134. }
  135. }
  136. .filterItem{
  137. position: relative;
  138. display: inline-block;
  139. float: left;
  140. height: 40px;
  141. line-height: 40px;
  142. margin: 0 20px 10px 0;
  143. span{
  144. display: inline-block;
  145. line-height: 32px;
  146. position: relative;
  147. }
  148. input{
  149. width:120px;
  150. height:32px;
  151. border-radius:4px;
  152. border: 1px solid #E2E5EF;
  153. outline: none;
  154. margin-right: 10px;
  155. padding: 0 10px;
  156. box-sizing: border-box;
  157. }
  158. input:focus{
  159. border: 1px solid @activeColor ;
  160. outline: 0;
  161. -webkit-box-shadow:@activeColor 0px 0px 2px;
  162. -moz-box-shadow: @activeColor 0px 0px 2px;
  163. box-shadow: @activeColor 0px 0px 2px;
  164. }
  165. }
  166. .filterDropList{
  167. position: absolute;
  168. right: 0;
  169. max-height: 200px;
  170. overflow-y: auto;
  171. background: #fff;
  172. display: none;
  173. border: 1px solid #e4e7ed;
  174. box-shadow: 0 2px 12px 0 #e4e7ed;
  175. z-index: 2;
  176. li{
  177. padding: 0 10px;
  178. }
  179. }
  180. .deptList{
  181. width: 160px;
  182. max-height: 400px;
  183. }
  184. .levelList,.checkList{
  185. width: 120px;
  186. // height: 200px;
  187. li:hover{
  188. background-color: #EEF4FF;
  189. cursor: pointer;
  190. }
  191. }
  192. .selectLevel,.selectDept,.selectCheck{
  193. display: inline-block;
  194. position: relative;
  195. width:120px;
  196. padding: 0 10px;
  197. height:32px;
  198. border-radius:4px;
  199. border: 1px solid #E2E5EF;
  200. box-sizing: border-box;
  201. cursor: pointer;
  202. }
  203. .selectDept{
  204. width: 160px;
  205. }
  206. .filter,.reset,.export{
  207. display: inline-block;
  208. width:60px;
  209. height:32px;
  210. background:@activeColor;
  211. border-radius:4px;
  212. color: #fff;
  213. text-align: center;
  214. line-height: 32px;
  215. position: relative;
  216. top: 2px;
  217. cursor: pointer;
  218. float: left;
  219. margin: 0 0px 22px 0;
  220. }
  221. .export{
  222. height:34px;
  223. background: #fff;
  224. border-radius: 4px;
  225. color: #777;
  226. border: 1px solid #777;
  227. box-sizing: border-box;
  228. cursor: pointer;
  229. margin-left: 10px;
  230. float: left;
  231. top: 0px;
  232. }
  233. .arrow{
  234. position: absolute;
  235. width: 10px;
  236. top: 12px;
  237. right: 10px;
  238. }
  239. .iconCheck{
  240. width: 14px;
  241. }
  242. .fl{
  243. float: left;
  244. }
  245. .clearfix:after {
  246. content: '';
  247. height: 0;
  248. line-height: 0;
  249. display: block;
  250. visibility: hidden;
  251. clear: both;
  252. }
  253. .clearfix{
  254. zoom:1
  255. }
  256. .divide{
  257. margin: 0 10px;
  258. }
  259. .datapickerBox{
  260. position: relative;
  261. display: inline-block;
  262. width: 120px;
  263. height: 32px;
  264. input{
  265. position: absolute;
  266. }
  267. }
  268. .setCol{
  269. color: #777;
  270. cursor: pointer;
  271. margin: 0 0 0 50px;
  272. }
  273. .iconSetting{
  274. width: 18px;
  275. position: relative;
  276. top: 3px;
  277. margin: 0 3px 0 0;
  278. }
  279. .iconCalen{
  280. position: absolute;
  281. width: 15px;
  282. top: 10px;
  283. right: 10px;
  284. }
  285. .textCenter{
  286. text-align: center;
  287. }
  288. .patientNameSpan{
  289. color: @activeColor;
  290. cursor: pointer;
  291. }
  292. .deptItem:hover{
  293. background-color: #EEF4FF;
  294. cursor: pointer;
  295. }
  296. .ellipsis{
  297. overflow: hidden;
  298. text-overflow:ellipsis;
  299. white-space: nowrap;
  300. }
  301. .unSelect{
  302. color: #cfccd6
  303. }
  304. .pagination{
  305. margin: 35px 0 20px 0 ;
  306. text-align: right;
  307. }
  308. .totalSum{
  309. font-size:12px;
  310. line-height:17px;
  311. color: #777777;
  312. margin-right: 20px;
  313. }
  314. .pageNum,.prePage,.nextPage, .more{
  315. display: inline-block;
  316. width: 20px;
  317. cursor: pointer;
  318. margin: 0 20px 0 0;
  319. text-align: center;
  320. color: #777;
  321. }
  322. .prePage,.nextPage{
  323. img{
  324. position: relative;
  325. top: 0px ;
  326. }
  327. }
  328. .more{
  329. cursor: not-allowed;
  330. }
  331. .arrowPage{
  332. width: 6px;
  333. }
  334. .activePage{
  335. color: @activeColor;
  336. }