123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208 |
- .sync-wizard .form-list:not(:last-child) .form-list-body {
- display: flex;
- }
- .sync-wizard .form-arrow-separator {
- display: flex;
- align-items: center;
- justify-content: center;
- width: 56px;
- min-width: 56px;
- background-image: url('../img/play.png');
- background-repeat: no-repeat;
- background-position: left 50% top 50%;
- background-size: 18px auto;
- }
- .sync-wizard .form-arrow-separator .form-list-add-btn {
- width: 32px;
- height: 32px;
- background-color: transparent;
- border: none;
- cursor: pointer;
- }
- .sync-wizard .form-list {
- border: 1px solid #c8d3e9;
- border-radius: 2px;
- color: #4a4a4a;
- counter-reset: form-list;
- min-width: 392px;
- }
- .sync-wizard .form-list-header {
- border-bottom: 1px solid #c8d3e9;
- }
- .sync-wizard .form-list:last-child .form-list-header .form-list-item {
- flex-grow: 1;
- }
- .sync-wizard .form-list:last-child .form-list-row:not(:last-child) {
- border-bottom: 1px solid #c8d3e9;
- }
- .sync-wizard .form-list:last-child .form-list-row::before {
- counter-increment: form-list;
- content: counter(form-list);
- font-size: 12px;
- display: flex;
- justify-content: center;
- width: 46px;
- margin-right: -19px;
- }
- .sync-wizard .form-list-header,
- .sync-wizard .form-list-row {
- height: 50px;
- display: flex;
- align-items: center;
- }
- .sync-wizard .form-list-check {
- width: 50px;
- height: 100%;
- display: flex;
- align-items: center;
- justify-content: center;
- }
- .sync-wizard .form-list-header .form-list-check {
- border-right: 1px solid #c8d3e9;
- width: 51px;
- }
- .sync-wizard .form-list-checklist {
- border-right: 1px solid #c8d3e9;
- }
- .sync-wizard button.form-list-check {
- border: none;
- padding: 0;
- margin: 0;
- background-color: white;
- cursor: pointer;
- }
- .sync-wizard .form-list-check input[type='checkbox'] {
- -moz-appearance: none;
- -webkit-appearance: none;
- appearance: none;
- margin: 0;
- padding: 0;
- width: 19px;
- height: 19px;
- border: 1px solid #c8d3e9;
- border-radius: 2px;
- }
- .sync-wizard .form-list-check input[type='checkbox']:checked {
- background-color: #147bd1;
- background-image: url('../img/tick.png');
- background-repeat: no-repeat;
- background-position: left 50% top 50%;
- background-size: 16px auto;
- }
- .sync-wizard .form-list-check input[type='checkbox']:disabled {
- background-color: #d8d8d8;
- }
- .sync-wizard .form-list-item {
- padding: 0 19px;
- display: flex;
- }
- .sync-wizard .form-list-cell {
- width: 130px;
- height: 33px;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- display: flex;
- align-items: center;
- }
- .sync-wizard .form-list-body .form-list-cell {
- padding: 0 5px 0 15px;
- font-size: 12px;
- background-color: #ebeff3;
- border-radius: 2px;
- }
- .sync-wizard .form-list-sourcelist .form-list-cell {
- padding-left: 32px;
- background-color: #eef5fe;
- position: relative;
- }
- .sync-wizard .form-list-sourcelist .form-list-cell.form-list-cell-empty,
- .sync-wizard .form-list-destlist .form-list-cell.form-list-cell-empty {
- background-color: transparent;
- }
- .sync-wizard
- .form-list-sourcelist
- .form-list-cell.form-list-cell-empty::before {
- background-image: none;
- }
- .sync-wizard .form-list-sourcelist .form-list-cell::before {
- content: '';
- background-image: url('../img/target.png');
- background-repeat: no-repeat;
- background-position: left 50% top 50%;
- background-size: 16px auto;
- position: absolute;
- top: 0;
- left: 0;
- height: 100%;
- width: 32px;
- }
- .sync-wizard .form-link-separator {
- width: 36px;
- }
- .sync-wizard .form-list-hintlist .form-link-separator {
- height: 100%;
- margin: 0 -19px;
- }
- .sync-wizard .form-list-body .form-link-separator {
- background-image: url('../img/link.png');
- background-repeat: no-repeat;
- background-position: left 50% top 50%;
- background-size: 16px auto;
- }
- .sync-wizard .form-list-body .form-link-separator.form-link-empty {
- background-image: none;
- }
- .sync-wizard .form-list-body .form-list-item-diabled.form-link-separator {
- background-image: url('../img/warn.png');
- }
- .sync-wizard .form-list-clear {
- width: 50px;
- height: 100%;
- padding: 0;
- margin: 0;
- margin-left: -19px;
- border: none;
- background-color: white;
- cursor: pointer;
- }
- .sync-wizard .form-list-header .form-list-clear {
- font-size: 12px;
- color: #7d7d7d;
- }
- .sync-wizard .form-list-body .form-list-clear {
- background-image: url('../img/close.png');
- background-repeat: no-repeat;
- background-position: left 50% top 50%;
- background-size: 14px auto;
- }
|