PluginProbe ʕ •ᴥ•ʔ
WP Popular Posts / trunk
WP Popular Posts vtrunk
4.0.8 4.0.9 4.1.0 4.1.1 4.1.2 4.2.0 4.2.1 4.2.2 5.0.0 5.0.1 5.0.2 5.1.0 5.2.0 5.2.1 5.2.2 5.2.3 5.2.4 5.3.0 5.3.1 5.3.2 5.3.3 5.3.4 5.3.5 5.3.6 5.4.0 5.4.1 5.4.2 5.5.0 5.5.1 6.0.0 6.0.1 6.0.2 6.0.3 6.0.4 6.0.5 6.1.0 6.1.1 6.1.2 6.1.3 6.1.4 6.2.0 6.2.1 6.3.0 6.3.1 6.3.2 6.3.3 6.3.4 6.4.0 6.4.1 6.4.2 7.0.0 7.0.1 7.1.0 7.2.0 7.3.0 7.3.1 7.3.2 7.3.3 7.3.4 7.3.5 7.3.6 7.3.7 7.3.8 7.4.0 trunk 2.3.7 3.0.0 3.0.1 3.0.2 3.0.3 3.1.0 3.1.1 3.2.0 3.2.1 3.2.2 3.2.3 3.3.0 3.3.1 3.3.2 3.3.3 3.3.4 4.0.0 4.0.1 4.0.10 4.0.11 4.0.12 4.0.13 4.0.2 4.0.3 4.0.5 4.0.6
wordpress-popular-posts / assets / css / admin.css
wordpress-popular-posts / assets / css Last commit date
admin.css 3 weeks ago fontello.css 5 years ago wpp.css 4 months ago
admin.css
479 lines
1 /*
2 * Navigation
3 */
4 #wpp-menu {
5 float: none;
6 clear: both;
7 }
8
9 #wpp-menu ul {
10 text-align: center;
11 }
12
13 #wpp-menu ul li {
14 padding: 0 15px 0 10px;
15 margin: 0 0px;
16 display: inline;
17 border-right: #ddd 1px solid;
18 }
19
20 #wpp-menu ul li:last-child {
21 border: none;
22 }
23
24 #wpp-menu ul li a {
25 }
26
27 #wpp-menu ul li.current a {
28 color: #00a0d2;
29 text-decoration: none;
30 }
31
32 .wpp-wrapper {
33 position: relative;
34 float: none;
35 clear: both;
36 margin: 20px 20px 0 2px;
37 -webkit-font-smoothing: subpixel-antialiased;
38 }
39
40 .wpp-tabs {
41 box-sizing: border-box;
42 }
43
44 .wpp-tabs .wpp-tabs-container {
45 display: grid;
46 grid-auto-columns: 1fr;
47 }
48
49 .wpp-tabs .wpp-tabs-container button {
50 cursor: pointer;
51 padding: 8px 3px;
52 background: #f9f9f9;
53 border: none;
54 border-right: #bbb 1px solid;
55 border-bottom: #f0f0f0 1px solid;
56 border-radius: 0 !important;
57 }
58
59 .wpp-tabs .wpp-tabs-container button:focus,
60 .wpp-tabs .wpp-tabs-container button:hover {
61 background: #fff;
62 }
63
64 .wpp-tabs .wpp-tabs-container button[aria-selected="false"] {
65 background: #e9e9e9;
66 }
67
68 .wpp-tabs .wpp-tabs-container button[aria-selected="false"]:focus,
69 .wpp-tabs .wpp-tabs-container button[aria-selected="false"]:hover {
70 background: #e0e0e0;
71 }
72
73 .wpp-tabs .wpp-tabs-container button:last-of-type {
74 border-right: none;
75 }
76
77 .wpp-tabs .wpp-tabs-container button span {
78 pointer-events: none;
79 }
80
81 .wpp-tabs .wpp-tabs-panel {
82 overflow: hidden;
83 display: none;
84 }
85
86 .wpp-tabs .wpp-tabs-panel.active {
87 display: block;
88 width: 100%;
89 box-sizing: border-box;
90 }
91
92 .wpp-lightbox {
93 display: none;
94 position: absolute;
95 top: 50%;
96 left: 50%;
97 z-index: 999;
98 padding: 15px;
99 width: 100%;
100 max-width: 320px;
101 background: #fff;
102 -webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.25);
103 box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.25);
104 box-sizing: border-box;
105 transform: translate(-50%, -50%);
106 }
107
108 .wpp-lightbox-tabs {
109 margin: -15px -15px 25px;
110 display: grid;
111 grid-template-columns: 1fr 1fr;
112 text-align: center;
113 }
114
115 .wpp-lightbox form {
116 display: block;
117
118 * {
119 box-sizing: border-box;
120 }
121 }
122
123 .wpp-lightbox form input[type=text] {
124 display: block;
125 margin: 0 0 15px 0;
126 width: 100%;
127 }
128
129 .wpp-lightbox form #custom-time-range.active {
130 display: grid;
131 grid-template-columns: 90px 1fr;
132 gap: 8px;
133
134 input,
135 select {
136 border-radius: 5px;
137 }
138 }
139
140 .wpp-lightbox form #custom-date-range.active {
141 display: flex;
142 align-items: center;
143 justify-content: space-between;
144 flex-direction: column;
145 gap: 6px;
146
147 @media (min-width: 640px) {
148 align-items: flex-start;
149 flex-direction: row;
150 gap: 0;
151 }
152 }
153
154 .wpp-lightbox form #custom-date-range .wpp-date-field {
155 position: relative;
156 padding-top: 0.75em;
157 }
158
159 .wpp-lightbox form #custom-date-range .wpp-date-field .wpp-date-field-inner {
160 padding-top: 0.5em;
161 border: 1px solid #8c8f94;
162 border-radius: 5px;
163
164 &:has(input[type="date"]:focus) {
165 border-color: #000;
166
167 & label {
168 color: #000;
169 }
170 }
171 }
172
173 .wpp-lightbox form #custom-date-range .wpp-date-field .wpp-date-field-inner label {
174 position: absolute;
175 top: 0;
176 left: 8px;
177 padding: 0 0.25em;
178 display: inline-block;
179 cursor: pointer;
180 background: #fff;
181 }
182
183 .wpp-lightbox form #custom-date-range .wpp-date-field .wpp-date-field-inner input[type="date"] {
184 border: none;
185 box-shadow: none;
186 }
187
188 .wpp-section-stats {
189 position: relative;
190 }
191
192 .wpp-section-stats #wpp-stats-config-btn {
193 position: absolute;
194 top: 22px;
195 left: 0;
196 cursor: pointer;
197 outline: inherit;
198 padding: 0;
199 width: 25px;
200 height: 25px;
201 min-height: auto;
202 font-size: 25px;
203 background: none;
204 border: none;
205 }
206
207 .wpp-section-stats #wpp-stats-config-btn .dashicons-admin-generic {
208 font-size: inherit;
209 }
210
211 .wpp-header {
212 overflow: hidden;
213 display: block;
214 padding: 25px 0 0 0;
215 font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
216 }
217
218 .wpp-header h1,
219 .wpp-header p {
220 text-align: center;
221 }
222
223 .wpp-header p {
224 margin: 0 0 5px 0;
225 font-size: 13px;
226 font-weight: 400;
227 line-height: 1;
228 }
229
230 .wpp-header h1 {
231 margin: 0 0 30px 0;
232 font-size: 45.5px;
233 letter-spacing: -1px;
234 line-height: 1;
235 }
236
237 #wpp-chart-wrapper p:nth-of-type(1),
238 #wpp-chart-wrapper p:nth-of-type(2) {
239 line-height: 1;
240 text-align: center;
241 }
242
243 #wpp-chart-wrapper p:nth-of-type(1) {
244 margin: 0 0 8px 0;
245 font-size: 26px;
246 font-weight: 100;
247 letter-spacing: -2px;
248 }
249
250 #wpp-chart-wrapper p:nth-of-type(2) {
251 margin: 0 0 0 0;
252 font-size: 11.7px;
253 font-weight: 300;
254 }
255
256 .wpp-header-nav {
257 margin: 55px auto 0px auto;
258 padding: 0;
259 text-align: center;
260 }
261
262 .wpp-header-nav li {
263 display: inline;
264 list-style: none;
265 margin: 0 4px;
266 padding: 0;
267 }
268
269 .wpp-header-nav li button {
270 cursor: pointer;
271 outline: inherit;
272 min-height: auto;
273 background: none;
274 border: none;
275 }
276
277 #wpp-chart-wrapper {
278 width: 100%;
279 }
280
281 #wpp-chart-wrapper #wpp-chart {
282 position: relative;
283 overflow: hidden;
284 margin: 20px auto 0 auto;
285 width: 100%;
286 height: 280px;
287 }
288
289 #wpp-chart-wrapper #wpp-chart p {
290 margin: 0 10px;
291 text-align: center;
292 }
293
294 #wpp-chart-wrapper #wpp-chart a:hover {
295 text-decoration: underline;
296 }
297
298 .wpp-content {
299 float: none;
300 clear: both;
301 width: 100%;
302 background: #fff;
303 }
304
305 #wpp-listing .wpp-tabs-container {
306 grid-template-columns: 1fr 1fr 1fr 1fr;
307 grid-auto-columns: unset;
308 }
309
310 #wpp-listing .wpp-tabs-container button {
311 padding-top: 15px;
312 padding-bottom: 15px;
313 font-size: 1.2em;
314 }
315
316 @media (max-width: 639px) {
317 #wpp-listing .wpp-tabs-container button span:not([class]) {
318 display: none;
319 }
320 }
321
322 #wpp-listing .wpp-tabs-panel {
323 overflow: hidden;
324 padding: 30px;
325 width: 100%;
326 }
327
328 @media (min-width: 768px) {
329 #wpp-listing .wpp-tabs-panel {
330 padding: 45px;
331 }
332 }
333
334 #wpp-listing .wpp-tabs-panel .spinner {
335 display: block;
336 margin: 0 auto;
337 float: none;
338 visibility: visible;
339 }
340
341 .wpp-content .wpp-tabbed-nav {
342 overflow: hidden;
343 margin: 0 0 0 0;
344 padding: 0;
345 background: #f9f9f9;
346 }
347
348 .wpp-content .wpp-tabbed-nav li {
349 display: inline;
350 float: left;
351 margin: 0;
352 padding: 0;
353 width: 25%;
354 border-bottom: #f0f0f0 1px solid;
355 }
356
357 .wpp-content .wpp-tabbed-nav li.active {
358 border-bottom: #bbb 1px solid;
359 }
360
361 .wpp-content .wpp-tabbed-nav li a {
362 display: block;
363 padding: 15px;
364 font-size: 1.2em;
365 text-align: center;
366 text-decoration: none;
367 outline: none;
368 box-shadow: none;
369 }
370
371 #wpp-listing .wpp-tabbed-nav li a .fa {
372 display: inline-block;
373 margin: 0 8px 0 0;
374 }
375
376 .popular-posts-list {
377 margin: 0 0 0 0;
378 padding: 0;
379 list-style: none;
380 counter-reset: wpp-counter;
381 font-size: 1rem;
382 line-height: 1.2;
383 }
384
385 .popular-posts-list li {
386 counter-increment: wpp-counter;
387 margin: 0 0 15px 0;
388 padding: 0 0 10px 0;
389 border-bottom: #f0f0f0 1px solid;
390 }
391
392 .popular-posts-list li::before {
393 display: inline-block;
394 width: 20px;
395 content: counter(wpp-counter) ". ";
396 }
397
398 .popular-posts-list li:last-child,
399 .popular-posts-list li:last-child {
400 margin: 0;
401 padding-bottom: 0;
402 border: none;
403 }
404
405 .popular-posts-list li a.wpp-title {
406 display: inline;
407 font-size: 1em;
408 text-decoration: none;
409 }
410
411 .popular-posts-list li:first-child,
412 .popular-posts-list li:first-child a.wpp-title {
413 font-size: 1.15em;
414 }
415
416 .popular-posts-list li:nth-child(2),
417 .popular-posts-list li:nth-child(2) a.wpp-title {
418 font-size: 1.05em;
419 }
420
421 .popular-posts-list li:first-child a.wpp-title,
422 .popular-posts-list li:nth-child(2) a.wpp-title,
423 .popular-posts-list li:nth-child(3) a.wpp-title {
424 font-weight: bold;
425 letter-spacing: -1px;
426 }
427
428 .popular-posts-list li a.wpp-title:hover {
429 text-decoration: underline;
430 }
431
432 .popular-posts-list li span {
433 color: #bbb;
434 font-size: 13px;
435 }
436
437 .popular-posts-list li small {
438 display: none;
439 font-size: 13px;
440 }
441
442 .popular-posts-list li:hover small {
443 display: inline;
444 }
445
446 #thumb-review {}
447
448 #thumb-review img {
449 max-width: 300px;
450 height: auto;
451 }
452
453 .clear {
454 float: none;
455 clear: both;
456 width: 100%;
457 }
458
459 /*
460 * Media Queries
461 */
462
463 /* Tablets & small desktops */
464 @media only screen and (max-width: 768px) {
465
466 .wpp-wrapper {
467 margin: 20px 10px 0 2px;
468 }
469
470 #wpp-listing .wpp-tabbed-nav li a span:last-child {
471 display: none;
472 }
473
474 #wpp-listing .wpp-tabbed-nav li a .fa {
475 margin: 0 0 0 0;
476 }
477
478 }
479