PluginProbe
ElasticPress / 4.3.0
ElasticPress v4.3.0
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 / css / sync / progress.css

progress.css in ElasticPress 4.3.0, at assets/css/sync/progress.css

53 lines 760 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 @keyframes epSyncRotation {
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: center;
14 display: grid;
15 grid-row-gap: 1rem;
16 grid-template-columns: min-content minmax(max-content, 1fr) 3fr;
17 margin-bottom: 1rem;
18
19 @media (max-width: 960px) {
20 grid-template-columns: min-content auto;
21 }
22
23 & svg {
24 animation: epSyncRotation 1500ms infinite linear;
25 animation-play-state: paused;
26 height: 36px;
27 margin-right: 12px;
28 width: 36px;
29 }
30 }
31
32 .ep-sync-progress--syncing {
33
34 & svg {
35 animation-play-state: running;
36 }
37 }
38
39 .ep-sync-progress__details {
40
41 & strong {
42 display: block;
43 font-size: 14px;
44 }
45 }
46
47 .ep-sync-progress__progress-bar {
48
49 @media (max-width: 960px) {
50 grid-column: 1 / -1;
51 }
52 }
53