PluginProbe
ElasticPress / 5.3.5
ElasticPress v5.3.5
5.3.5 5.3.4 3.6.5 3.6.6 4.0.0 4.0.1 4.1.0 4.2.0 4.2.1 4.2.2 4.3.0 4.3.1 4.4.0 4.4.1 4.5.0 4.5.1 4.5.2 4.6.0 4.6.1 4.7.0 4.7.1 4.7.2 5.0.0 5.0.1 5.0.2 All 108 releases
elasticpress / assets / js / sync-ui / css / progress-bar.css

progress-bar.css in ElasticPress 5.3.5, at assets/js/sync-ui/css/progress-bar.css

33 lines 715 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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: 4px;
11 }
12
13 .ep-sync-progress-bar__progress {
14 background: var(--wp-admin-theme-color);
15 color: var(--ep-sync-color-white);
16 height: 8px;
17 padding: 0 8px;
18 transition: all 500ms ease-in-out;
19 white-space: nowrap;
20 }
21
22 .ep-sync-progress-bar--complete .ep-sync-progress-bar__progress {
23 background: var(--ep-sync-color-success);
24 }
25
26 .ep-sync-progress-bar--paused .ep-sync-progress-bar__progress {
27 opacity: 0.5;
28 }
29
30 .ep-sync-progress-bar--failed .ep-sync-progress-bar__progress {
31 background: var(--ep-sync-color-error);
32 }
33