cover.scss 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285
  1. .fm-form{
  2. .fm-label-wrap{
  3. display: block;
  4. > .el-form-item__content{
  5. margin-left: 0 !important;
  6. }
  7. > .el-form-item__label{
  8. float: none;
  9. }
  10. }
  11. .fm-item-tooltip{
  12. font-size: 12px;
  13. color: #909399;
  14. }
  15. .el-form-item__content{
  16. display: block;
  17. &::after{
  18. content: '';
  19. display: block;
  20. height: 0;
  21. clear: both;
  22. visibility: hidden;
  23. overflow: hidden;
  24. }
  25. .el-pagination{
  26. float: right;
  27. }
  28. }
  29. .el-radio+.el-radio{
  30. margin-left: 0;
  31. }
  32. .el-radio{
  33. margin-right: 30px;
  34. }
  35. .el-checkbox+.el-checkbox{
  36. margin-left: 0;
  37. }
  38. .ant-checkbox-wrapper+.ant-checkbox-wrapper{
  39. margin-left: 0 ;
  40. line-height: 32px;
  41. }
  42. .el-checkbox{
  43. margin-right: 30px;
  44. }
  45. .el-form-item--large{
  46. &.el-form-item{
  47. margin-bottom: 22px;
  48. }
  49. }
  50. .el-form-item--small{
  51. &.el-form-item{
  52. margin-bottom: 18px;
  53. }
  54. .el-radio{
  55. line-height: 32px;
  56. }
  57. .el-checkbox{
  58. line-height: 32px;
  59. }
  60. .el-rate{
  61. margin-top: 6px;
  62. }
  63. }
  64. .el-form-item--mini{
  65. .el-radio{
  66. line-height: 28px;
  67. }
  68. .el-checkbox{
  69. line-height: 28px;
  70. }
  71. .el-rate{
  72. margin-top: 4px;
  73. }
  74. }
  75. .el-form-item--large{
  76. .el-radio{
  77. line-height: 36px;
  78. }
  79. .el-checkbox{
  80. line-height: 36px;
  81. }
  82. .el-rate{
  83. margin-top: 8px;
  84. }
  85. }
  86. .border-form{
  87. border: 1px solid #999;
  88. .el-table--border td, .el-table--border th, .el-table__body-wrapper .el-table--border.is-scrolling-left~.el-table__fixed{
  89. border-right: 1px solid #999;
  90. }
  91. .el-table td, .el-table th.is-leaf{
  92. border-bottom: 1px solid #999;
  93. }
  94. .el-table--border, .el-table--group{
  95. border: 1px solid #999;
  96. }
  97. .form-table{
  98. margin:-5px;
  99. .el-form-item__content{
  100. &::before{
  101. display: none;
  102. }
  103. }
  104. }
  105. .el-form-item__content{
  106. // border-left: 1px solid #ccc;
  107. &::before{
  108. width: 1px;
  109. background: #999;
  110. display: block;
  111. content: '';
  112. position: absolute;
  113. left: 0;
  114. top: 0;
  115. bottom: -300px;
  116. }
  117. .el-form-item__error{
  118. left: 5px;
  119. }
  120. }
  121. .no-label-form-item{
  122. .el-form-item__content{
  123. &::before{
  124. background: transparent;
  125. }
  126. }
  127. }
  128. &.el-form--label-top{
  129. .el-form-item__content{
  130. &::before{
  131. background: transparent;
  132. }
  133. }
  134. }
  135. .el-row+.el-row{
  136. border-top: 1px solid #999;
  137. }
  138. .el-col+.el-col{
  139. border-left: 1px solid #999;
  140. }
  141. .el-col{
  142. overflow: hidden;
  143. }
  144. .el-form-item__content{
  145. padding: 5px;
  146. padding-bottom: 0;
  147. }
  148. .el-form-item__label{
  149. padding: 5px;
  150. }
  151. }
  152. .el-slider__button-wrapper{
  153. z-index: 101;
  154. }
  155. .print-read-label{
  156. // font-weight: 500;
  157. color: #000;
  158. pre{
  159. white-space: pre-wrap;
  160. }
  161. }
  162. .el-transfer[disabled="disabled"]{
  163. position: relative;
  164. &::after{
  165. display: block;
  166. content: '';
  167. position: absolute;
  168. left: 0;
  169. right: 0;
  170. bottom: 0;
  171. top: 0;
  172. z-index:99;
  173. cursor:no-drop;
  174. }
  175. }
  176. .ant-form-item{
  177. .ant-form-item-label{
  178. display: inline-block;
  179. line-height: 39.9999px;
  180. margin: unset;
  181. padding: unset;
  182. text-align: right;
  183. &.ant-form-item-label-left{
  184. text-align: left;
  185. }
  186. >label{
  187. display: inline-block;
  188. }
  189. }
  190. &.fm-label-wrap{
  191. > .ant-form-item-control-wrapper{
  192. width: 100% !important;
  193. }
  194. > .ant-form-item-label{
  195. text-align: left;
  196. }
  197. }
  198. .ant-pagination{
  199. float: right;
  200. }
  201. }
  202. }
  203. .fm-select-dropdown{
  204. z-index: 3000 !important;
  205. }
  206. .fm-popup-index{
  207. z-index: 3000 !important;
  208. }
  209. .ant-popconfirm{
  210. z-index: 3000 !important;
  211. }
  212. @media screen and (max-width: 575px){
  213. .ant-form-item{
  214. .ant-form-item-label{
  215. display: inline-block;
  216. line-height: 39.9999px;
  217. margin: unset;
  218. padding: unset;
  219. text-align: right;
  220. >label{
  221. display: inline-block;
  222. padding-right: 10px;
  223. }
  224. }
  225. &.fm-label-wrap{
  226. > .ant-form-item-control-wrapper{
  227. width: 100% !important;
  228. }
  229. > .ant-form-item-label{
  230. text-align: left;
  231. // line-height: 1.5;
  232. }
  233. }
  234. }
  235. }