variables.less 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157
  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 #f3f0f0;
  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: 20px 10px;
  74. }
  75. .clear{
  76. width: 88px;
  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. }
  88. .confirm{
  89. width: 120px;
  90. height: 44px;
  91. line-height: 44px;
  92. color:@blue;
  93. font-size: 12px;
  94. border: 1px solid @blue;
  95. background: #fff;
  96. margin-left: 20px;
  97. float: right;
  98. outline: none;
  99. text-align: center;
  100. cursor: pointer;
  101. }
  102. :global(.red){
  103. color: @red;
  104. }
  105. .tag{
  106. display: inline-block;
  107. position: relative;
  108. /* margin-right: 5px;*/
  109. padding: 0 3px 3px 0;
  110. color: @placeholder-color;
  111. cursor: pointer;
  112. &:before{
  113. content: '[';
  114. /*text-indent: -5px;*/
  115. display: inline-block;
  116. }
  117. &:after{
  118. content: ']';
  119. /*width: 8px;*/
  120. display: inline-block;
  121. }
  122. }
  123. .selected-tag{
  124. position: relative;//发热
  125. display: inline-block;
  126. color: @text-color;
  127. /*padding: 0 3px 0;*/
  128. border-bottom: 1px @border-color solid;
  129. }
  130. .no-tag{
  131. display: inline-block;
  132. position: relative;
  133. /*margin-right: 5px;
  134. padding: 0 3px 0;*/
  135. color: unset!important;
  136. border:none!important;
  137. &:before,&:after{
  138. content: ''!important;
  139. }
  140. /*color: @placeholder-color;*/
  141. }
  142. .hide{
  143. display: none!important;
  144. }