check-and-exclude-config.component.less 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177
  1. @import "../../../../src/theme.less";
  2. :host {
  3. .targetDept {
  4. overflow: hidden;
  5. width: 288px;
  6. text-overflow: ellipsis;
  7. white-space: nowrap;
  8. }
  9. }
  10. .save {
  11. position: fixed;
  12. left: 0;
  13. top: 0;
  14. width: 100%;
  15. height: 100%;
  16. background: rgba(0, 0, 0, 0.4);
  17. z-index: 99;
  18. .modalBody {
  19. width: 350px;
  20. height: 220px;
  21. background: #fff;
  22. border-radius: 5px;
  23. padding: 10px 20px;
  24. color: #333;
  25. .title {
  26. width: 100%;
  27. text-align: center;
  28. font-size: 18px;
  29. position: relative;
  30. i {
  31. position: absolute;
  32. right: 0;
  33. top: 0;
  34. font-size: 20px;
  35. color: #666;
  36. cursor: pointer;
  37. padding: 0 5px;
  38. }
  39. }
  40. .content {
  41. width: 310px;
  42. height: 117px;
  43. background: #f9fafb;
  44. border: 1px solid #e5e9ed;
  45. border-radius: 5px;
  46. overflow: hidden;
  47. margin-top: 12px;
  48. & > div {
  49. text-align: center;
  50. margin: 0;
  51. &.icon {
  52. margin-top: 17px;
  53. i {
  54. color: #34b349;
  55. font-size: 30px !important;
  56. &.transport-wenhao {
  57. color: #f5a523;
  58. }
  59. &.transport-shibai {
  60. color: #ff3a52;
  61. }
  62. }
  63. }
  64. &.defeat {
  65. color: #333;
  66. font-size: 18px;
  67. }
  68. &:nth-child(3) {
  69. font-size: 14px;
  70. color: #666;
  71. }
  72. }
  73. .roundRobinTips {
  74. font-size: 12px;
  75. }
  76. }
  77. button {
  78. margin-top: 10px;
  79. &.btn {
  80. margin-left: 8px;
  81. }
  82. }
  83. }
  84. // 新增
  85. &.add {
  86. .modalBody {
  87. width: 480px;
  88. height: auto;
  89. .content {
  90. width: 100%;
  91. height: auto;
  92. padding: 18px 14px 0 14px;
  93. max-height: 497px;
  94. overflow-y: auto;
  95. .addForm {
  96. .ant-form-item {
  97. margin-bottom: 15px;
  98. .ant-form-item-label {
  99. line-height: 14px;
  100. text-align: left;
  101. }
  102. .desc {
  103. margin-top: 5px;
  104. }
  105. }
  106. .datesControl {
  107. margin-top: -16px;
  108. .ant-form-item-label {
  109. line-height: 40px;
  110. }
  111. }
  112. .timer {
  113. .ant-form-item-label {
  114. width: 100%;
  115. text-align: left;
  116. }
  117. .numInp {
  118. margin-right: 5px;
  119. }
  120. .line {
  121. margin-right: 5px;
  122. }
  123. }
  124. .timer2 {
  125. .ant-form-item-label {
  126. line-height: 20px;
  127. }
  128. }
  129. }
  130. .editForm {
  131. .ant-form-item {
  132. margin-bottom: 15px;
  133. .ant-form-item-label {
  134. line-height: 14px;
  135. text-align: left;
  136. }
  137. }
  138. }
  139. }
  140. button {
  141. &:nth-child(1) {
  142. margin-right: 20px;
  143. }
  144. }
  145. }
  146. }
  147. }