variables.less 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174
  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. /*********推送内容容器宽度*************/
  38. @push-width: 450px;
  39. /****电子病历容器宽度*****/
  40. @EMR-width: calc(~"100% - "@push-width);
  41. /*******下拉框公用样式**********/
  42. .pop{
  43. position: absolute;
  44. // top:40px;
  45. // top:30px;
  46. background: #fff;
  47. box-shadow: 0 10px 20px 0 #989DA3;
  48. // filter:progid:DXImageTransform.Microsoft.Shadow(color='#989DA3',Direction=125,Strength=6);
  49. border: 1px solid #dedede;
  50. z-index: 203;
  51. padding: 20px;
  52. white-space: nowrap;
  53. }
  54. .mult-li{
  55. // width: 200px;
  56. height: 32px;
  57. line-height: 32px;
  58. padding-right: 8px;
  59. }
  60. .select-li{
  61. height: 32px;
  62. line-height: 32px;
  63. width: 100%;
  64. font-size: 14px;
  65. text-align: left;
  66. border: none;
  67. color:#000000;
  68. /*padding-left: 40px;*/
  69. cursor: pointer;
  70. background: rgba(59,158,208,0.1);
  71. background-image: url(../images/first.png);
  72. background-repeat: no-repeat;
  73. background-position: 0px 10px;
  74. }
  75. .clear{
  76. width: 60px;
  77. height: 44px;
  78. line-height: 44px;
  79. font-size: 12px;
  80. color:@red;
  81. border: none;
  82. background: #fff;
  83. float: left;
  84. outline: none;
  85. text-align: center;
  86. cursor: pointer;
  87. margin-left: 22px;
  88. }
  89. .confirm{
  90. width: 120px;
  91. height: 44px;
  92. line-height: 44px;
  93. color:@blue;
  94. font-size: 12px;
  95. border: 1px solid @blue;
  96. background: #fff;
  97. margin-left: 20px;
  98. float: right;
  99. outline: none;
  100. text-align: center;
  101. cursor: pointer;
  102. }
  103. :global(.red){
  104. color: @red;
  105. }
  106. .tag{
  107. display: inline-block;
  108. position: relative;
  109. /* margin-right: 5px;*/
  110. padding: 0 3px 3px 0;
  111. color: @placeholder-color;
  112. cursor: pointer;
  113. &:before{
  114. content: '[';
  115. /*text-indent: -5px;*/
  116. display: inline-block;
  117. }
  118. &:after{
  119. content: ']';
  120. /*width: 8px;*/
  121. display: inline-block;
  122. }
  123. }
  124. .selected-tag{
  125. position: relative;//发热
  126. display: inline-block;
  127. color: @text-color;
  128. /*padding: 0 3px 0;*/
  129. border-bottom: 1px @border-color solid;
  130. }
  131. .no-tag{
  132. display: inline-block;
  133. position: relative;
  134. /*margin-right: 5px;
  135. padding: 0 3px 0;*/
  136. color: unset!important;
  137. border:none!important;
  138. &:before,&:after{
  139. content: ''!important;
  140. }
  141. /*color: @placeholder-color;*/
  142. }
  143. .hide{
  144. display: none!important;
  145. }
  146. .llStyle{
  147. box-shadow: 0 10px 20px 0 #989DA3;
  148. // filter:progid:DXImageTransform.Microsoft.Shadow(color='#989DA3',Direction=125,Strength=6);
  149. border: 1px solid #dedede;
  150. }
  151. .borderd{
  152. border:1px #000 solid;
  153. }
  154. .blue-border{
  155. border:2px @blue solid;
  156. border-radius: 2px;
  157. /*box-shadow: 0px 0px 2px @blue;*/
  158. }