qcList.less 6.1 KB

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