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 / previous-sync.css

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

35 lines 532 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 .ep-previous-sync {
2 align-items: center;
3 display: grid;
4 grid-column-gap: 8px;
5 grid-template-areas:
6 "icon title"
7 ". help";
8 grid-template-columns: max-content auto;
9 justify-content: start;
10
11 & svg {
12 display: block;
13 grid-area: icon;
14 }
15
16 &.is-success svg {
17 fill: var(--ep-sync-color-success);
18 }
19
20 &.is-error svg {
21 fill: var(--ep-sync-color-error);
22 }
23 }
24
25 .ep-previous-sync__title {
26 grid-area: title;
27 }
28
29 .ep-previous-sync__help {
30 color: rgb(117, 117, 117);
31 font-size: 12px;
32 font-style: normal;
33 grid-area: help;
34 }
35