PluginProbe
ElasticPress / 5.0.2
ElasticPress v5.0.2
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 / instant-results / page.css

page.css in ElasticPress 5.0.2, at assets/css/instant-results/page.css

40 lines 548 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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