user-edit.component.scss 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201
  1. .subtitle {
  2. margin-right: 12px;
  3. color: #00000073;
  4. font-size: 14px;
  5. font-weight: normal;
  6. line-height: 1.5715;
  7. // overflow: hidden;
  8. // white-space: nowrap;
  9. // text-overflow: ellipsis;
  10. }
  11. .back {
  12. font-family: PingFang SC;
  13. font-size: 14px;
  14. font-weight: 400;
  15. line-height: 22px;
  16. text-align: left;
  17. cursor: pointer;
  18. }
  19. .user-header {
  20. display: flex;
  21. justify-content: space-between;
  22. .header-left {
  23. display: flex;
  24. align-items: center;
  25. .name-data {
  26. display: flex;
  27. flex-direction: column;
  28. margin-left: 6px;
  29. .name {
  30. font-family: PingFang SC;
  31. font-size: 24px;
  32. font-weight: 600;
  33. line-height: 32px;
  34. text-align: left;
  35. }
  36. .status{
  37. margin-left: 4px;
  38. }
  39. .id {
  40. font-family: PingFang SC;
  41. font-size: 14px;
  42. font-weight: 400;
  43. line-height: 20px;
  44. text-align: left;
  45. color: #231c1f99;
  46. }
  47. }
  48. }
  49. .header-right {
  50. display: flex;
  51. align-items: center;
  52. .form-button {
  53. width: 80px;
  54. height: 40px;
  55. margin: 20px 0;
  56. color: white !important;
  57. background-color: #3E49B3!important;
  58. border-radius: 4px;
  59. font-family: PingFang SC;
  60. font-size: 14px;
  61. font-weight: 400;
  62. line-height: 20px;
  63. text-align: center;
  64. }
  65. }
  66. }
  67. .edit-content {
  68. margin: 0 0 20px;
  69. padding: 0 24px;
  70. // height: calc(100vh - 250px);
  71. min-width: 1000px;
  72. .title {
  73. //styleName: 字体/标题-中-Medium;
  74. font-family: PingFang SC;
  75. font-size: 20px;
  76. font-weight: 500;
  77. line-height: 32px;
  78. text-align: left;
  79. margin: 28px 0 10px;
  80. }
  81. .fill-template{
  82. font-family: PingFang SC;
  83. font-size: 14px;
  84. .lable{
  85. color: #24272299;
  86. margin-bottom: 6px;
  87. }
  88. .value{
  89. width: 80%;
  90. // padding: 4px 8px;
  91. background: #f9f9f9;
  92. border-radius: 4px;
  93. color: #242722;
  94. margin-bottom: 10px;
  95. overflow: hidden;
  96. white-space: nowrap;
  97. text-overflow: ellipsis;
  98. }
  99. }
  100. .view-block{
  101. width: 100%;
  102. min-height: 150px;
  103. }
  104. .title-row {
  105. font-family: PingFang SC;
  106. font-size: 20px;
  107. font-weight: 500;
  108. line-height: 32px;
  109. text-align: left;
  110. margin: 28px 0 10px;
  111. .btn {
  112. margin-left: 20px;
  113. flex-shrink: 0;
  114. color: #006ded;
  115. font-size: 14px;
  116. font-weight: 400;
  117. }
  118. .bar {
  119. display: flex;
  120. justify-content: space-between;
  121. width: 100%;
  122. }
  123. }
  124. .rows{
  125. display: flex;
  126. justify-content: space-between;
  127. .fonter {
  128. // text-align: right;
  129. .form-button {
  130. width: 80px;
  131. height: 40px;
  132. margin: 20px 0;
  133. color: white !important;
  134. background-color: #3e49b3 !important;
  135. border-radius: 4px;
  136. font-family: PingFang SC;
  137. font-size: 14px;
  138. font-weight: 400;
  139. line-height: 20px;
  140. text-align: center;
  141. }
  142. .close {
  143. width: 80px;
  144. background-color: #eae6e6 !important;
  145. color: black !important;
  146. margin-left: 20px;
  147. }
  148. }
  149. }
  150. }
  151. .depart-modal{
  152. .row{
  153. width: 90%;
  154. margin-bottom: 20px;
  155. }
  156. .tree{
  157. height: 180px;
  158. overflow-y: scroll;
  159. .li{
  160. display: flex;
  161. justify-content: space-between;
  162. padding: 8px 4px;
  163. span{
  164. flex-shrink: 0;
  165. }
  166. }
  167. .li:hover{
  168. background-color: #f9f9f9;
  169. }
  170. }
  171. }
  172. .loading{
  173. position: fixed;
  174. top: 0;
  175. left: 0;
  176. width: 100vw;
  177. text-align: center;
  178. height: 100vh;
  179. display: flex;
  180. align-items: center;
  181. justify-content: center;
  182. background: rgb(0 0 0 / 30%);
  183. }
  184. .pd4-8{
  185. padding: 4px 8px;
  186. }
  187. ::ng-deep .ant-page-header-heading-title {
  188. white-space: normal;
  189. }
  190. ::ng-deep .ant-tabs-tab.ant-tabs-tab-active .ant-tabs-tab-btn {
  191. color: #c6233f;
  192. }
  193. ::ng-deep .ant-tabs-ink-bar {
  194. background: #c6233f;
  195. }
  196. ::ng-deep .ant-tabs-tab:hover {
  197. color: #e97488;
  198. }
  199. ::ng-deep .ant-tabs-tab-btn:active {
  200. color: #e97488;
  201. }