PluginProbe
ElasticPress / trunk
ElasticPress vtrunk
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 5.1.0 All 107 releases
elasticpress / assets / css / ordering.css

ordering.css in ElasticPress trunk, at assets/css/ordering.css

154 lines 2.5 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 @import "./global/colors.css";
2
3 #ep-ordering {
4 border-left-width: 0;
5 border-right-width: 0;
6
7 & .inside {
8 background-color: var(--ep-c-white);
9 margin: 0;
10 padding: 0;
11 }
12
13 & .pointers,
14 & .pointer-search,
15 & .loading {
16 background-color: var(--ep-c-white);
17 border-left: 1px solid var(--ep-c-medium-white);
18 border-right: 1px solid var(--ep-c-medium-white);
19 }
20
21 & .new-post {
22 background: var(--ep-c-white);
23 padding: 0 1em;
24 }
25
26 & .loading {
27 padding: 1em;
28
29 & .spinner {
30 float: left;
31 margin-left: 0;
32 margin-top: 0;
33 }
34 }
35
36 & .pointer-type {
37 border: 2px solid var(--ep-c-medium-dark-blue);
38 border-radius: 2px;
39 color: var(--ep-c-medium-dark-blue);
40 display: inline-block;
41 font-size: 0.75em;
42 font-weight: 700;
43 margin-right: 8px;
44 padding: 1px 2px;
45 }
46
47 & .pointers {
48
49 & .pointer,
50 & .post {
51 padding: 1em;
52
53 &:nth-child(odd) {
54 background-color: var(--ep-c-white);
55 }
56 }
57
58 & .title {
59 color: var(--ep-c-medium-dark-blue);
60 }
61
62 & .removed .title {
63 color: var(--ep-c-light-gray);
64 }
65
66 & .pointer-actions {
67 float: right;
68
69 /* stylelint-disable-next-line max-nesting-depth */
70 & .handle {
71 cursor: move;
72 }
73
74 /* stylelint-disable-next-line max-nesting-depth */
75 & .delete-pointer {
76 margin-right: 10px;
77 }
78 }
79
80 & .next-page-notice {
81 background-color: var(--ep-c-white-yellow);
82 padding: 1em 0;
83 text-align: center;
84 }
85 }
86
87 & .legend {
88 background: var(--ep-c-white);
89 border-bottom: 1px solid var(--ep-c-medium-white);
90 padding: 1em 0;
91 text-align: center;
92 }
93
94 & .legend-item {
95 display: inline-block;
96 font-size: 0.875em;
97 font-style: italic;
98 margin: 0 0.5em;
99 }
100
101 & .pointer-search {
102 margin-top: 2em;
103
104 & .no-results {
105 padding: 1em;
106 }
107
108 & .section-title {
109 border-bottom: 1px solid var(--ep-c-medium-white);
110 border-top: 1px solid var(--ep-c-medium-white);
111 box-shadow: 0 1px 1px rgba(0, 0, 0, 0.04);
112 font-weight: 700;
113 }
114
115 & .search-wrapper {
116 padding: 1em 0;
117 }
118
119 & .input-wrap {
120 padding: 0 1em;
121 }
122
123 & .search-pointers {
124 font-size: 18px;
125 height: 1.7em;
126 line-height: 100%;
127 padding: 3px 8px;
128 }
129
130 & .pointer-results {
131 padding: 1em 0 0;
132 }
133
134 & .pointer-result {
135 padding: 10px 2em;
136
137 /* stylelint-disable-next-line max-nesting-depth */
138 & .dashicons {
139 float: right;
140 }
141
142 &:hover {
143 background-color: var(--ep-c-white);
144 }
145 }
146 }
147
148 /* stylelint-disable-next-line no-descending-specificity */
149 & .delete-pointer,
150 & .add-pointer {
151 cursor: pointer;
152 }
153 }
154