page.css in ElasticPress 4.7.0, at assets/css/instant-results/page.css
| 1 | .ep-search-page { |
| 2 | display: flex; |
| 3 | flex-direction: column; |
| 4 | flex-grow: 2; |
| 5 | margin: 0; |
| 6 | overflow-y: auto; |
| 7 | transition: opacity 300ms ease-out; |
| 8 | width: 100%; |
| 9 | |
| 10 | @media ( min-width: 768px ) { |
| 11 | overflow: hidden; |
| 12 | } |
| 13 | |
| 14 | & *, |
| 15 | & *::before, |
| 16 | & *::after { |
| 17 | box-sizing: border-box; |
| 18 | } |
| 19 | |
| 20 | &.is-loading { |
| 21 | opacity: 0.5; |
| 22 | } |
| 23 | } |
| 24 | |
| 25 | .ep-search-page__header, |
| 26 | .ep-search-page__tools, |
| 27 | .ep-search-page__body { |
| 28 | padding: 0 1em; |
| 29 | } |
| 30 | |
| 31 | .ep-search-page__body { |
| 32 | |
| 33 | @media ( min-width: 768px ) { |
| 34 | align-items: flex-start; |
| 35 | display: flex; |
| 36 | flex-grow: 2; |
| 37 | overflow: hidden; |
| 38 | } |
| 39 | } |
| 40 |