deptScoreDetailControlLevel.less 7.9 KB

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