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