variables.less 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235
  1. @orange: #f6b37f;
  2. @green: #4caf50;
  3. @cyan: #00bcd4;
  4. @blue: #3B9ED0;
  5. @red:#ff0000;
  6. @tab-color:#3B9ED0;
  7. /***按钮hover***/
  8. @button-hover: #aaa;
  9. @base-color: #dbdfe8;
  10. @body-bg: @base-color;
  11. @btn-text-color: #fff;
  12. @text-color: #333;
  13. @placeholder-color: #bfbfbf;
  14. @link-hover-decoration: underline;
  15. /* 个人信息,表格边框颜色 */
  16. @person-table-color:#BBBFC1;
  17. /* 各模块边框颜色 */
  18. @part-border-color:#aaa7a7;
  19. @font-size-base: 12px;
  20. @font-size-large: 14px;
  21. @font-size-small: 10px;
  22. @font-size-h1: 24px;
  23. @font-size-h2: 20px;
  24. @font-size-h3: 16px;
  25. @font-size-h4: 14px;
  26. @font-size-h5: @font-size-base;
  27. @font-size-h6: @font-size-base;
  28. @box-shadow: 2px 0px 7px rgba(152, 151, 152, .4);
  29. @border-color:#666;
  30. @border-radius: 2px;
  31. @border-radius-default: 2px;
  32. @dropdwon-normal-width:200px;
  33. @dropdwon-small-width:400px;
  34. @dropdwon-long-width:600px;
  35. @dropdwon-height:200px;
  36. @selected-bg:#fff;
  37. @import-color:#ffad5f;
  38. @closeIcon:url(../images/del_nor.png);
  39. @closeHor:url(../images/del_hor.png);
  40. /*********推送内容容器宽度*************/
  41. @push-width: 450px;
  42. /****电子病历容器宽度*****/
  43. @EMR-width: calc(~"100% - "@push-width);
  44. /*******下拉框公用样式**********/
  45. .pop{
  46. position: absolute;
  47. // top:40px;
  48. // top:30px;
  49. background: #fff;
  50. box-shadow: 0 10px 20px 0 #989DA3;
  51. // filter:progid:DXImageTransform.Microsoft.Shadow(color='#989DA3',Direction=125,Strength=6);
  52. border: 1px solid #dedede;
  53. z-index: 203;
  54. padding: 20px;
  55. white-space: nowrap;
  56. }
  57. .mult-li{
  58. // width: 200px;
  59. height: 32px;
  60. line-height: 32px;
  61. padding-right: 8px;
  62. }
  63. .select-li{
  64. height: 32px;
  65. line-height: 32px;
  66. width: 100%;
  67. font-size: 14px;
  68. text-align: left;
  69. border: none;
  70. color:#000000;
  71. /*padding-left: 40px;*/
  72. cursor: pointer;
  73. background: rgba(59,158,208,0.1);
  74. background-image: url(../images/first.png);
  75. background-repeat: no-repeat;
  76. background-position: 0px 10px;
  77. }
  78. .clear{
  79. width: 60px;
  80. height: 44px;
  81. line-height: 44px;
  82. font-size: 12px;
  83. color:@red;
  84. border: none;
  85. background: #fff;
  86. float: left;
  87. outline: none;
  88. text-align: center;
  89. cursor: pointer;
  90. margin-left: 22px;
  91. position: relative;
  92. bottom: -10px;
  93. }
  94. .confirm{
  95. width: 120px;
  96. height: 44px;
  97. line-height: 44px;
  98. color:@blue;
  99. font-size: 12px;
  100. // border: 1px solid @blue;
  101. background: #fff;
  102. margin-left: 20px;
  103. float: right;
  104. outline: none;
  105. text-align: right;
  106. cursor: pointer;
  107. font-weight: bold;
  108. position: relative;
  109. bottom: -10px;
  110. padding-right: 10px;
  111. }
  112. :global(.red){
  113. color: @red;
  114. }
  115. .tag{
  116. display: inline-block;
  117. position: relative;
  118. /* margin-right: 5px;*/
  119. padding: 0 3px 3px 0;
  120. color: @placeholder-color;
  121. cursor: pointer;
  122. &:before{
  123. content: '[';
  124. /*text-indent: -5px;*/
  125. display: inline-block;
  126. }
  127. &:after{
  128. content: ']';
  129. /*width: 8px;*/
  130. display: inline-block;
  131. }
  132. }
  133. .selected-tag{
  134. position: relative;//发热
  135. display: inline-block;
  136. color: @text-color;
  137. /*padding: 0 3px 0;*/
  138. border-bottom: 1px @border-color solid;
  139. }
  140. .no-tag{
  141. display: inline-block;
  142. position: relative;
  143. /*margin-right: 5px;
  144. padding: 0 3px 0;*/
  145. color: unset!important;
  146. border:none!important;
  147. &:before,&:after{
  148. content: ''!important;
  149. }
  150. /*color: @placeholder-color;*/
  151. }
  152. .hide{
  153. display: none!important;
  154. }
  155. .llStyle{
  156. box-shadow: 0 10px 20px 0 #989DA3;
  157. // filter:progid:DXImageTransform.Microsoft.Shadow(color='#989DA3',Direction=125,Strength=6);
  158. border: 1px solid #dedede;
  159. }
  160. .borderd{
  161. border:1px #000 solid;
  162. }
  163. .blue-border{
  164. border:2px @blue solid;
  165. border-radius: 2px;
  166. /*box-shadow: 0px 0px 2px @blue;*/
  167. }
  168. .orange-border{
  169. border:1px solid @import-color;
  170. //color: @import-color!important;
  171. }
  172. :global(.drag-title) {
  173. cursor: move;
  174. moz-user-select: -moz-none;
  175. -moz-user-select: none;
  176. -o-user-select: none;
  177. -khtml-user-select: none;
  178. -webkit-user-select: none;
  179. -ms-user-select: none;
  180. user-select: none;
  181. }
  182. // 加入病历
  183. .add-record{
  184. float: right;
  185. text-align: left;
  186. padding-left: 5px;
  187. cursor: default;
  188. width: 99px;
  189. height: 26px;
  190. line-height: 26px;
  191. border: 1px solid #EAEDF1;
  192. border-radius: 4px;
  193. font-size: 12px;
  194. img{
  195. vertical-align: middle;
  196. width: 12px;
  197. margin:-3px 3px 0 0;
  198. }
  199. }
  200. .disable-add{
  201. float: right;
  202. text-align: left;
  203. padding-left: 5px;
  204. cursor: default;
  205. width: 99px;
  206. height: 26px;
  207. line-height: 26px;
  208. border: 1px solid #EAEDF1;
  209. border-radius: 4px;
  210. font-size: 12px;
  211. color: @placeholder-color;
  212. img{
  213. vertical-align: middle;
  214. width: 12px;
  215. margin:-3px 3px 0 0;
  216. opacity: .5;
  217. }
  218. }