PluginProbe ʕ •ᴥ•ʔ
Independent Analytics – WordPress Analytics Plugin / 1.18
Independent Analytics – WordPress Analytics Plugin v1.18
2.15.0 2.14.10 trunk 1.1 1.10 1.10.1 1.11 1.12 1.13 1.14 1.15 1.16 1.17 1.17.1 1.17.2 1.17.3 1.17.4 1.18 1.18.1 1.19.0 1.19.1 1.2 1.20.0 1.21.0 1.22.0 1.22.1 1.23.0 1.23.1 1.24.0 1.24.1 1.25.0 1.25.1 1.26.0 1.27.0 1.28.0 1.28.1 1.28.2 1.28.3 1.29.0 1.3 1.30.0 1.30.1 1.4 1.5 1.6 1.7 1.8 1.9 2.0.0 2.0.1 2.1.4 2.1.5 2.1.6 2.10.0 2.10.1 2.10.2 2.10.3 2.10.4 2.11.0 2.11.1 2.11.10 2.11.2 2.11.3 2.11.4 2.11.5 2.11.6 2.11.7 2.11.8 2.11.9 2.12.0 2.12.1 2.12.2 2.13.1 2.13.2 2.13.5 2.13.6 2.14.0 2.14.1 2.14.2 2.14.4 2.14.6 2.14.7 2.14.8 2.14.9 2.2.0 2.2.1 2.3.1 2.3.2 2.4.2 2.4.3 2.5.0 2.5.1 2.6.0 2.6.1 2.6.2 2.6.3 2.6.4 2.7.0 2.7.1 2.7.2 2.7.3 2.8.2 2.8.3 2.8.4 2.8.5 2.8.6 2.8.7 2.8.8 2.8.9 2.9.2 2.9.3 2.9.4 2.9.5 2.9.6 2.9.7
independent-analytics / dist / styles / dashboard_widget.css
independent-analytics / dist / styles Last commit date
easepick 3 years ago dashboard_widget.css 3 years ago dashboard_widget.css.map 3 years ago pdf.css 3 years ago pdf.css.map 3 years ago style.css 3 years ago style.css.map 3 years ago
dashboard_widget.css
554 lines
1 .chart-container {
2 width: 100%;
3 padding: 0 24px;
4 }
5
6 .quick-stats {
7 gap: 24px;
8 margin: 24px;
9 display: flex;
10 }
11
12 .chart-inner {
13 background: #fff;
14 border: 1px solid #dedae6;
15 border-radius: 6px;
16 padding: 24px;
17 }
18
19 .legend-container {
20 align-items: center;
21 margin-bottom: 16px;
22 display: flex;
23 }
24
25 .legend-title {
26 margin: 0;
27 font-size: 18px;
28 font-weight: 700;
29 }
30
31 .legend-list {
32 justify-content: end;
33 margin: 0;
34 display: flex;
35 }
36
37 .legend-item {
38 cursor: pointer;
39 -webkit-user-select: none;
40 -ms-user-select: none;
41 user-select: none;
42 border-radius: 18px;
43 align-items: center;
44 margin: 0 0 0 16px;
45 padding: 4px 12px 4px 8px;
46 display: inline-flex;
47 }
48
49 .legend-item.hidden {
50 opacity: .5;
51 }
52
53 .legend-item span {
54 height: 16px;
55 width: 16px;
56 border-radius: 50%;
57 margin-right: 4px;
58 display: inline-block;
59 }
60
61 .legend-item p {
62 margin: 0;
63 font-weight: 500;
64 }
65
66 .legend-item-for-views {
67 background-color: #efe8fa;
68 }
69
70 .legend-item-for-views span {
71 background-color: #5123a0;
72 }
73
74 .legend-item-for-visitors {
75 background-color: rgba(246, 157, 10, .2);
76 }
77
78 .legend-item-for-visitors span {
79 background-color: #f69d0a;
80 }
81
82 .legend-item-for-orders {
83 background-color: rgba(35, 125, 68, .2);
84 }
85
86 .legend-item-for-orders span {
87 background-color: #237d44;
88 }
89
90 .legend-item-for-net-sales {
91 background-color: rgba(52, 152, 219, .2);
92 }
93
94 .legend-item-for-net-sales span {
95 background-color: #3498db;
96 }
97
98 svg text {
99 stroke-width: 0;
100 }
101
102 .quick-stats {
103 flex-wrap: wrap;
104 }
105
106 .quick-stats .stat {
107 width: calc(25% - 18px);
108 }
109
110 .quick-stats.total-of-2 {
111 flex-wrap: nowrap;
112 }
113
114 .quick-stats.total-of-2 .stat {
115 width: 50%;
116 }
117
118 .stat {
119 max-width: 400px;
120 background-color: #fff;
121 border: 1px solid #dedae6;
122 border-radius: 6px;
123 padding: 18px;
124 }
125
126 .stat:last-child {
127 margin-right: 0;
128 }
129
130 .stat.unfiltered {
131 background-color: #ece9f2;
132 border-color: #c5c2cc;
133 }
134
135 .stat.unfiltered circle {
136 display: none;
137 }
138
139 .stat.unfiltered .percentage {
140 opacity: .7;
141 }
142
143 .stat .metric {
144 justify-content: space-between;
145 font-size: 16px;
146 display: flex;
147 }
148
149 .stat .dashicons-filter {
150 display: none;
151 }
152
153 .stat .circle {
154 width: 15px;
155 height: 15px;
156 }
157
158 .stat .values {
159 align-items: baseline;
160 margin: 12px 0;
161 font-weight: 700;
162 display: flex;
163 }
164
165 .stat .count {
166 margin-right: 8px;
167 font-size: 28px;
168 }
169
170 .stat .growth {
171 color: #36b366;
172 font-size: 14px;
173 }
174
175 .stat .percentage {
176 border-radius: 24px;
177 align-items: center;
178 padding: 4px 10px 4px 2px;
179 display: flex;
180 }
181
182 .stat .percentage.up {
183 color: #36b366;
184 background-color: #e3fced;
185 }
186
187 .stat .percentage.down {
188 color: #d93b29;
189 background-color: #fce6e3;
190 }
191
192 .stat .period-label {
193 color: #9a95a6;
194 font-size: 16px;
195 }
196
197 .stat.views circle {
198 fill: #5123a0;
199 }
200
201 .stat.views .dashicons-filter {
202 color: #5123a0;
203 }
204
205 .stat.visitors circle {
206 fill: #f69d0a;
207 }
208
209 .stat.visitors .dashicons-filter {
210 color: #f69d0a;
211 }
212
213 .stat.orders circle {
214 fill: #237d44;
215 }
216
217 .stat.orders .dashicons-filter {
218 color: #237d44;
219 }
220
221 .stat.net-sales circle {
222 fill: #3498db;
223 }
224
225 .stat.net-sales .dashicons-filter {
226 color: #3498db;
227 }
228
229 .filtered .stat:not(.unfiltered) .dashicons-filter {
230 display: inline-block;
231 }
232
233 .filtered .stat:not(.unfiltered) .circle {
234 display: none;
235 }
236
237 .iawp-button {
238 cursor: pointer;
239 background: none;
240 border: 1px solid rgba(0, 0, 0, 0);
241 border-radius: 3px;
242 align-items: center;
243 margin: 0;
244 padding: 12px 16px;
245 font-size: 14px;
246 line-height: 1;
247 text-decoration: none;
248 transition: color .1s, background-color .1s, border-color .1s;
249 display: inline-flex;
250 }
251
252 .iawp-button .dashicons {
253 margin-right: 6px;
254 transition: color .1s;
255 }
256
257 .iawp-button .count {
258 color: #5123a0;
259 background: #fff;
260 border-radius: 50%;
261 justify-content: center;
262 align-items: center;
263 font-size: 12px;
264 font-weight: 700;
265 line-height: 1;
266 display: flex;
267 }
268
269 .iawp-button .count:not(:empty) {
270 height: 18px;
271 width: 18px;
272 margin-left: 8px;
273 margin-right: -2px;
274 }
275
276 .iawp-button .disabled-button-text {
277 display: none;
278 }
279
280 .iawp-button:disabled {
281 cursor: default;
282 }
283
284 .iawp-button:disabled .disabled-button-text {
285 display: inline;
286 }
287
288 .iawp-button:disabled .enabled-button-text {
289 display: none;
290 }
291
292 .iawp-button.white {
293 color: #5123a0;
294 background-color: #fff;
295 border-color: #fff;
296 }
297
298 .iawp-button.white:hover, .iawp-button.white:active, .iawp-button.white:focus, .iawp-button.white .open {
299 color: #6c46ae;
300 }
301
302 .iawp-button.purple, .iawp-button-purple {
303 color: #fff;
304 background-color: #5123a0;
305 border-color: #5123a0;
306 }
307
308 .iawp-button.purple:hover, .iawp-button.purple:active, .iawp-button.purple:focus, .iawp-button.purple .open, .iawp-button-purple:hover, .iawp-button-purple:active, .iawp-button-purple:focus, .iawp-button-purple .open {
309 color: #fff;
310 background-color: #6c46ae;
311 border-color: #6c46ae;
312 }
313
314 .iawp-button.purple:disabled, .iawp-button-purple:disabled {
315 color: #9a95a6;
316 background-color: #f7f5fa;
317 border-color: #ece9f2;
318 }
319
320 .iawp-button.red {
321 color: #fff;
322 background-color: #d93b29;
323 border-color: #d93b29;
324 }
325
326 .iawp-button.red:hover, .iawp-button.red:active, .iawp-button.red:focus, .iawp-button.red .open {
327 color: #fff;
328 background-color: #d94e3f;
329 border-color: #d94e3f;
330 }
331
332 .iawp-button.orange {
333 color: #fff;
334 background-color: #f69d0a;
335 border-color: #f69d0a;
336 }
337
338 .iawp-button.orange:hover, .iawp-button.orange:active, .iawp-button.orange:focus, .iawp-button.orange .open {
339 color: #fff;
340 background-color: #ffa826;
341 border-color: #ffa826;
342 }
343
344 .iawp-button.ghost-white {
345 color: #fff;
346 border-color: #fff;
347 }
348
349 .iawp-button.ghost-white:hover, .iawp-button.ghost-white:active, .iawp-button.ghost-white:focus, .iawp-button.ghost-white.open {
350 color: #5123a0;
351 background-color: #fff;
352 border-color: #fff;
353 }
354
355 .iawp-button.ghost-white:hover .count, .iawp-button.ghost-white:active .count, .iawp-button.ghost-white:focus .count, .iawp-button.ghost-white.open .count {
356 color: #fff;
357 background: #5123a0;
358 }
359
360 .iawp-button.ghost-purple {
361 color: #5123a0;
362 border-color: #5123a0;
363 }
364
365 .iawp-button.ghost-purple:hover, .iawp-button.ghost-purple:active, .iawp-button.ghost-purple:focus, .iawp-button.ghost-purple .open {
366 color: #fff;
367 background-color: #5123a0;
368 border-color: #5123a0;
369 }
370
371 .iawp-button.ghost-purple:disabled {
372 color: #9a95a6;
373 background-color: #f7f5fa;
374 border-color: #ece9f2;
375 }
376
377 .iawp-button.ghost-red {
378 color: #d93b29;
379 border-color: #d93b29;
380 }
381
382 .iawp-button.ghost-red:hover, .iawp-button.ghost-red:active, .iawp-button.ghost-red:focus, .iawp-button.ghost-red .open {
383 color: #fff;
384 background-color: #d93b29;
385 border-color: #d93b29;
386 }
387
388 .iawp-button.ghost-red:disabled {
389 color: #9a95a6;
390 background-color: #f7f5fa;
391 border-color: #ece9f2;
392 }
393
394 .iawp-button.text {
395 color: #5123a0;
396 padding: 0;
397 }
398
399 .date-picker {
400 padding: 14px 16px 14px 36px;
401 }
402
403 .sort-button {
404 color: #18141f;
405 cursor: pointer;
406 background: none;
407 border: none;
408 align-items: center;
409 padding: 1px;
410 display: flex;
411 }
412
413 .sort-button .dashicons-arrow-up, .sort-button .dashicons-arrow-down {
414 display: none;
415 }
416
417 .sort-button .name {
418 font-weight: 700;
419 }
420
421 .sort-button .dashicons {
422 color: #c5c2cc;
423 }
424
425 .sort-button[data-sort-direction="asc"] .dashicons, .sort-button[data-sort-direction="desc"] .dashicons {
426 color: #5123a0;
427 }
428
429 .sort-button[data-sort-direction="asc"] .dashicons-arrow-up {
430 display: inline-block;
431 }
432
433 .sort-button[data-sort-direction="asc"] .dashicons-arrow-down, .sort-button[data-sort-direction="asc"] .dashicons-arrow-right {
434 display: none;
435 }
436
437 .sort-button[data-sort-direction="desc"] .dashicons-arrow-down {
438 display: inline-block;
439 }
440
441 .sort-button[data-sort-direction="desc"] .dashicons-arrow-up, .sort-button[data-sort-direction="desc"] .dashicons-arrow-right {
442 display: none;
443 }
444
445 .delete-button {
446 z-index: 3;
447 color: #fff;
448 cursor: pointer;
449 background-color: #5123a0;
450 border: none;
451 border-radius: 50%;
452 padding: 2px;
453 transition: background-color .1s, color .1s;
454 position: absolute;
455 top: 12px;
456 right: -12px;
457 }
458
459 .delete-button:hover, .delete-button .open {
460 background-color: #6c46ae;
461 }
462
463 #iawp, #iawp * {
464 box-sizing: border-box;
465 }
466
467 #iawp .postbox-header .iawp-button {
468 padding: 6px 8px;
469 text-decoration: none;
470 }
471
472 #iawp .inside {
473 margin-top: 0;
474 padding: 0;
475 }
476
477 #iawp .chart-container {
478 padding: 6px 0 0;
479 }
480
481 #iawp .chart-inner {
482 border: none;
483 padding: 6px 12px 12px;
484 }
485
486 #iawp .legend-container {
487 margin-bottom: 10px;
488 }
489
490 #iawp .legend-item {
491 margin-left: 8px;
492 }
493
494 #iawp .legend-item:first-child {
495 margin-left: 0;
496 }
497
498 #iawp .legend-item p {
499 font-size: 11px;
500 }
501
502 #iawp .legend-item span {
503 width: 13px;
504 height: 13px;
505 }
506
507 #iawp .legend-title {
508 display: none;
509 }
510
511 #iawp .quick-stats {
512 gap: 0;
513 margin: 0;
514 display: flex;
515 }
516
517 #iawp .quick-stats .stat {
518 width: 50%;
519 border: none;
520 border-top: 1px solid #dedae6;
521 border-radius: 0;
522 padding: 12px 18px;
523 }
524
525 #iawp .quick-stats .stat:first-child {
526 border-right: 1px solid #dedae6;
527 }
528
529 #iawp .quick-stats .stat .metric {
530 font-size: 14px;
531 }
532
533 #iawp .quick-stats .stat .percentage {
534 padding: 1px 8px 1px 2px;
535 font-size: 12px;
536 }
537
538 #iawp .quick-stats .stat .values {
539 flex-wrap: wrap;
540 margin: 0;
541 display: flex;
542 }
543
544 #iawp .quick-stats .stat .count {
545 word-break: break-word;
546 font-size: 24px;
547 }
548
549 #iawp .quick-stats .stat .period-label {
550 font-size: 13px;
551 }
552
553 /*# sourceMappingURL=dashboard_widget.css.map */
554