formCommon.css 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176
  1. .form-common-layout {
  2. width: 100%;
  3. display: flex;
  4. flex-direction: row;
  5. padding: 6px;
  6. background: white;
  7. border-bottom: 1px solid #eeeeee;
  8. align-items: center;
  9. }
  10. .form-common-layout .form-input-value.am-list-item.am-textarea-item {
  11. min-height: 32px;
  12. padding-left: 4px;
  13. padding-right: 4px;
  14. display: flex;
  15. flex-direction: row;
  16. align-items: center;
  17. }
  18. .form-common-layout .am-list-item.am-input-item {
  19. min-height: 32px;
  20. height: 32px;
  21. }
  22. .form-common-layout .am-textarea-control {
  23. padding: 4px;
  24. }
  25. .form-common-layout .am-textarea-control textarea {
  26. font-size: 14px;
  27. text-align: right;
  28. padding-right: 4px;
  29. }
  30. .form-common-layout .am-textarea-clear {
  31. margin-top: 0;
  32. }
  33. .form-common-layout .am-list-item {
  34. min-height: 32px;
  35. }
  36. .form-common-layout .am-list-line {
  37. padding-right: 8px;
  38. border-bottom: none !important;
  39. }
  40. .form-common-layout .am-list-line::after {
  41. /*去掉数字输入框的底部横线*/
  42. display: none !important;
  43. }
  44. .form-common-layout .am-list .am-list-item.am-textarea-item {
  45. min-height: 32px;
  46. height: 100%;
  47. padding-left: 8px;
  48. align-items: center;
  49. }
  50. .form-common-layout .am-list-item .am-input-control {
  51. font-size: 14px;
  52. }
  53. .form-common-layout .am-list-item .am-input-control input {
  54. font-size: 14px;
  55. text-align: right;
  56. padding-right: 4px;
  57. }
  58. /***********************************************************************************/
  59. .form-textarea-layout {
  60. border-bottom: 1px solid #eeeeee;
  61. }
  62. .form-textarea-layout .am-textarea-control {
  63. padding: 2px;
  64. }
  65. .form-textarea-layout .am-textarea-control textarea {
  66. font-size: 14px;
  67. text-align: left;
  68. padding-left: 2px;
  69. }
  70. .form-textarea-layout .am-list .am-list-item.am-textarea-item {
  71. min-height: 32px;
  72. height: 100%;
  73. padding-left: 4px;
  74. align-items: center;
  75. }
  76. .form-textarea-layout .form-input-value.am-list-item.am-textarea-item {
  77. min-height: 80px;
  78. max-height: 300px;
  79. padding-left: 4px;
  80. padding-right: 4px;
  81. overflow-y: scroll;
  82. }
  83. .form-textarea-layout .form-input-value.am-list-item.am-textarea-item::-webkit-scrollbar {
  84. display: none;
  85. }
  86. .form-textarea-layout i.anticon.anticon-download {
  87. display: none !important;
  88. }
  89. /************************************************************************************/
  90. .form-title-text {
  91. font-size: 14px;
  92. color: #2F95DD;
  93. flex: 1;
  94. font-weight: bold;
  95. }
  96. .form-title-delete {
  97. font-size: 14px;
  98. color: red;
  99. padding-left: 10px;
  100. }
  101. .form-input-caption {
  102. font-size: 14px;
  103. color: #333333;
  104. width: 90px;
  105. }
  106. .form-input-fill {
  107. font-size: 14px;
  108. color: red;
  109. padding: 4px;
  110. font-weight: bold;
  111. }
  112. .form-input-value {
  113. flex: 1;
  114. font-size: 14px;
  115. color: #333333;
  116. text-align: right;
  117. }
  118. .form-add-text {
  119. width: 100%;
  120. height: 36px;
  121. text-align: center;
  122. line-height: 36px;
  123. font-size: 14px;
  124. color: #2F95DD;
  125. font-weight: bold;
  126. background: #efefef;
  127. }
  128. .form-common-modal-root {
  129. min-height: 280px;
  130. max-height: 76vh;
  131. overflow: auto;
  132. }
  133. .upload-list-inline .ant-upload-list-item {
  134. /*附件列表格式*/
  135. }
  136. .uploadBtn {
  137. background: #4197FC;
  138. border-radius: 4px;
  139. padding: 4px 8px;
  140. color: white;
  141. }
  142. .uploadBtn-disable {
  143. background: #e4e4e4;
  144. border-radius: 3px;
  145. padding: 4px;
  146. color: gray;
  147. }