assertType.less 8.6 KB

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