deptScoreDetailControl.less 8.3 KB

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