previous-sync.css in ElasticPress 5.3.5, at assets/js/sync-ui/css/previous-sync.css
| 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 |