list.css 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208
  1. .sync-wizard .form-list:not(:last-child) .form-list-body {
  2. display: flex;
  3. }
  4. .sync-wizard .form-arrow-separator {
  5. display: flex;
  6. align-items: center;
  7. justify-content: center;
  8. width: 56px;
  9. min-width: 56px;
  10. background-image: url('../img/play.png');
  11. background-repeat: no-repeat;
  12. background-position: left 50% top 50%;
  13. background-size: 18px auto;
  14. }
  15. .sync-wizard .form-arrow-separator .form-list-add-btn {
  16. width: 32px;
  17. height: 32px;
  18. background-color: transparent;
  19. border: none;
  20. cursor: pointer;
  21. }
  22. .sync-wizard .form-list {
  23. border: 1px solid #c8d3e9;
  24. border-radius: 2px;
  25. color: #4a4a4a;
  26. counter-reset: form-list;
  27. min-width: 392px;
  28. }
  29. .sync-wizard .form-list-header {
  30. border-bottom: 1px solid #c8d3e9;
  31. }
  32. .sync-wizard .form-list:last-child .form-list-header .form-list-item {
  33. flex-grow: 1;
  34. }
  35. .sync-wizard .form-list:last-child .form-list-row:not(:last-child) {
  36. border-bottom: 1px solid #c8d3e9;
  37. }
  38. .sync-wizard .form-list:last-child .form-list-row::before {
  39. counter-increment: form-list;
  40. content: counter(form-list);
  41. font-size: 12px;
  42. display: flex;
  43. justify-content: center;
  44. width: 46px;
  45. margin-right: -19px;
  46. }
  47. .sync-wizard .form-list-header,
  48. .sync-wizard .form-list-row {
  49. height: 50px;
  50. display: flex;
  51. align-items: center;
  52. }
  53. .sync-wizard .form-list-check {
  54. width: 50px;
  55. height: 100%;
  56. display: flex;
  57. align-items: center;
  58. justify-content: center;
  59. }
  60. .sync-wizard .form-list-header .form-list-check {
  61. border-right: 1px solid #c8d3e9;
  62. width: 51px;
  63. }
  64. .sync-wizard .form-list-checklist {
  65. border-right: 1px solid #c8d3e9;
  66. }
  67. .sync-wizard button.form-list-check {
  68. border: none;
  69. padding: 0;
  70. margin: 0;
  71. background-color: white;
  72. cursor: pointer;
  73. }
  74. .sync-wizard .form-list-check input[type='checkbox'] {
  75. -moz-appearance: none;
  76. -webkit-appearance: none;
  77. appearance: none;
  78. margin: 0;
  79. padding: 0;
  80. width: 19px;
  81. height: 19px;
  82. border: 1px solid #c8d3e9;
  83. border-radius: 2px;
  84. }
  85. .sync-wizard .form-list-check input[type='checkbox']:checked {
  86. background-color: #147bd1;
  87. background-image: url('../img/tick.png');
  88. background-repeat: no-repeat;
  89. background-position: left 50% top 50%;
  90. background-size: 16px auto;
  91. }
  92. .sync-wizard .form-list-check input[type='checkbox']:disabled {
  93. background-color: #d8d8d8;
  94. }
  95. .sync-wizard .form-list-item {
  96. padding: 0 19px;
  97. display: flex;
  98. }
  99. .sync-wizard .form-list-cell {
  100. width: 130px;
  101. height: 33px;
  102. overflow: hidden;
  103. text-overflow: ellipsis;
  104. white-space: nowrap;
  105. display: flex;
  106. align-items: center;
  107. }
  108. .sync-wizard .form-list-body .form-list-cell {
  109. padding: 0 5px 0 15px;
  110. font-size: 12px;
  111. background-color: #ebeff3;
  112. border-radius: 2px;
  113. }
  114. .sync-wizard .form-list-sourcelist .form-list-cell {
  115. padding-left: 32px;
  116. background-color: #eef5fe;
  117. position: relative;
  118. }
  119. .sync-wizard .form-list-sourcelist .form-list-cell.form-list-cell-empty,
  120. .sync-wizard .form-list-destlist .form-list-cell.form-list-cell-empty {
  121. background-color: transparent;
  122. }
  123. .sync-wizard
  124. .form-list-sourcelist
  125. .form-list-cell.form-list-cell-empty::before {
  126. background-image: none;
  127. }
  128. .sync-wizard .form-list-sourcelist .form-list-cell::before {
  129. content: '';
  130. background-image: url('../img/target.png');
  131. background-repeat: no-repeat;
  132. background-position: left 50% top 50%;
  133. background-size: 16px auto;
  134. position: absolute;
  135. top: 0;
  136. left: 0;
  137. height: 100%;
  138. width: 32px;
  139. }
  140. .sync-wizard .form-link-separator {
  141. width: 36px;
  142. }
  143. .sync-wizard .form-list-hintlist .form-link-separator {
  144. height: 100%;
  145. margin: 0 -19px;
  146. }
  147. .sync-wizard .form-list-body .form-link-separator {
  148. background-image: url('../img/link.png');
  149. background-repeat: no-repeat;
  150. background-position: left 50% top 50%;
  151. background-size: 16px auto;
  152. }
  153. .sync-wizard .form-list-body .form-link-separator.form-link-empty {
  154. background-image: none;
  155. }
  156. .sync-wizard .form-list-body .form-list-item-diabled.form-link-separator {
  157. background-image: url('../img/warn.png');
  158. }
  159. .sync-wizard .form-list-clear {
  160. width: 50px;
  161. height: 100%;
  162. padding: 0;
  163. margin: 0;
  164. margin-left: -19px;
  165. border: none;
  166. background-color: white;
  167. cursor: pointer;
  168. }
  169. .sync-wizard .form-list-header .form-list-clear {
  170. font-size: 12px;
  171. color: #7d7d7d;
  172. }
  173. .sync-wizard .form-list-body .form-list-clear {
  174. background-image: url('../img/close.png');
  175. background-repeat: no-repeat;
  176. background-position: left 50% top 50%;
  177. background-size: 14px auto;
  178. }