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.css

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

46 lines 632 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 @keyframes ep-sync-rotation {
2
3 from {
4 transform: rotate(0deg);
5 }
6
7 to {
8 transform: rotate(359deg);
9 }
10 }
11
12 .ep-sync-progress {
13 align-items: start;
14 display: grid;
15 grid-column-gap: 4px;
16 grid-row-gap: 16px;
17 grid-template-columns: min-content auto;
18 margin-bottom: 16px;
19
20 & svg {
21 animation: ep-sync-rotation 1500ms infinite linear;
22 animation-play-state: paused;
23 height: 24px;
24 width: 24px;
25 }
26 }
27
28 .ep-sync-progress--syncing {
29
30 & svg {
31 animation-play-state: running;
32 }
33 }
34
35 .ep-sync-progress__details {
36
37 & strong {
38 display: block;
39 line-height: 24px;
40 }
41 }
42
43 .ep-sync-progress__progress-bar {
44 grid-column: 1 / -1;
45 }
46