qcListDept.less 7.1 KB

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