| 1 |
.ep-sync-progress-bar { |
| 2 |
background: var(--ep-sync-color-light-grey); |
| 3 |
display: flex; |
| 4 |
overflow: hidden; |
| 5 |
text-align: center; |
| 6 |
} |
| 7 |
|
| 8 |
.ep-sync-progress-bar, |
| 9 |
.ep-sync-progress-bar__progress { |
| 10 |
border-radius: 0.875em; |
| 11 |
} |
| 12 |
|
| 13 |
.ep-sync-progress-bar__progress { |
| 14 |
background: var(--wp-admin-theme-color); |
| 15 |
color: var(--ep-sync-color-white); |
| 16 |
padding: 0 0.875em; |
| 17 |
transition: all 500ms ease-in-out; |
| 18 |
white-space: nowrap; |
| 19 |
|
| 20 |
@nest .ep-sync-progress-bar--complete & { |
| 21 |
background: var(--ep-sync-color-success); |
| 22 |
} |
| 23 |
|
| 24 |
@nest .ep-sync-progress-bar--paused & { |
| 25 |
opacity: 0.5; |
| 26 |
} |
| 27 |
} |
| 28 |
|