PluginProbe ʕ •ᴥ•ʔ
Independent Analytics – WordPress Analytics Plugin / 1.17
Independent Analytics – WordPress Analytics Plugin v1.17
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
507 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 svg text {
83 stroke-width: 0;
84 }
85
86 .stat {
87 width: 50%;
88 max-width: 400px;
89 background-color: #fff;
90 border: 1px solid #dedae6;
91 border-radius: 6px;
92 padding: 18px;
93 }
94
95 .stat:last-child {
96 margin-right: 0;
97 }
98
99 .stat.unfiltered {
100 background-color: #ece9f2;
101 border-color: #c5c2cc;
102 }
103
104 .stat.unfiltered circle {
105 display: none;
106 }
107
108 .stat.unfiltered .percentage {
109 opacity: .7;
110 }
111
112 .stat .metric {
113 justify-content: space-between;
114 font-size: 16px;
115 display: flex;
116 }
117
118 .stat .dashicons-filter {
119 display: none;
120 }
121
122 .stat .circle {
123 width: 15px;
124 height: 15px;
125 }
126
127 .stat .values {
128 align-items: baseline;
129 margin: 12px 0;
130 font-weight: 700;
131 display: flex;
132 }
133
134 .stat .count {
135 margin-right: 8px;
136 font-size: 28px;
137 }
138
139 .stat .growth {
140 color: #36b366;
141 font-size: 14px;
142 }
143
144 .stat .percentage {
145 border-radius: 24px;
146 align-items: center;
147 padding: 4px 10px 4px 2px;
148 display: flex;
149 }
150
151 .stat .percentage.up {
152 color: #36b366;
153 background-color: #e3fced;
154 }
155
156 .stat .percentage.down {
157 color: #d93b29;
158 background-color: #fce6e3;
159 }
160
161 .stat .period-label {
162 color: #9a95a6;
163 font-size: 16px;
164 }
165
166 .stat.views circle {
167 fill: #5123a0;
168 }
169
170 .stat.views .dashicons-filter {
171 color: #5123a0;
172 }
173
174 .stat.visitors circle {
175 fill: #f69d0a;
176 }
177
178 .stat.visitors .dashicons-filter {
179 color: #f69d0a;
180 }
181
182 .filtered .stat:not(.unfiltered) .dashicons-filter {
183 display: inline-block;
184 }
185
186 .filtered .stat:not(.unfiltered) .circle {
187 display: none;
188 }
189
190 .iawp-button {
191 cursor: pointer;
192 background: none;
193 border: 1px solid rgba(0, 0, 0, 0);
194 border-radius: 3px;
195 align-items: center;
196 margin: 0;
197 padding: 12px 16px;
198 font-size: 14px;
199 line-height: 1;
200 text-decoration: none;
201 transition: color .1s, background-color .1s, border-color .1s;
202 display: inline-flex;
203 }
204
205 .iawp-button .dashicons {
206 margin-right: 6px;
207 transition: color .1s;
208 }
209
210 .iawp-button .count {
211 color: #5123a0;
212 background: #fff;
213 border-radius: 50%;
214 justify-content: center;
215 align-items: center;
216 font-size: 12px;
217 font-weight: 700;
218 line-height: 1;
219 display: flex;
220 }
221
222 .iawp-button .count:not(:empty) {
223 height: 18px;
224 width: 18px;
225 margin-left: 8px;
226 margin-right: -2px;
227 }
228
229 .iawp-button .disabled-button-text {
230 display: none;
231 }
232
233 .iawp-button:disabled {
234 cursor: default;
235 }
236
237 .iawp-button:disabled .disabled-button-text {
238 display: inline;
239 }
240
241 .iawp-button:disabled .enabled-button-text {
242 display: none;
243 }
244
245 .iawp-button.white {
246 color: #5123a0;
247 background-color: #fff;
248 border-color: #fff;
249 }
250
251 .iawp-button.white:hover, .iawp-button.white:active, .iawp-button.white:focus, .iawp-button.white .open {
252 color: #6c46ae;
253 }
254
255 .iawp-button.purple, .iawp-button-purple {
256 color: #fff;
257 background-color: #5123a0;
258 border-color: #5123a0;
259 }
260
261 .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 {
262 color: #fff;
263 background-color: #6c46ae;
264 border-color: #6c46ae;
265 }
266
267 .iawp-button.purple:disabled, .iawp-button-purple:disabled {
268 color: #9a95a6;
269 background-color: #f7f5fa;
270 border-color: #ece9f2;
271 }
272
273 .iawp-button.red {
274 color: #fff;
275 background-color: #d93b29;
276 border-color: #d93b29;
277 }
278
279 .iawp-button.red:hover, .iawp-button.red:active, .iawp-button.red:focus, .iawp-button.red .open {
280 color: #fff;
281 background-color: #d94e3f;
282 border-color: #d94e3f;
283 }
284
285 .iawp-button.orange {
286 color: #fff;
287 background-color: #f69d0a;
288 border-color: #f69d0a;
289 }
290
291 .iawp-button.orange:hover, .iawp-button.orange:active, .iawp-button.orange:focus, .iawp-button.orange .open {
292 color: #fff;
293 background-color: #ffa826;
294 border-color: #ffa826;
295 }
296
297 .iawp-button.ghost-white {
298 color: #fff;
299 border-color: #fff;
300 }
301
302 .iawp-button.ghost-white:hover, .iawp-button.ghost-white:active, .iawp-button.ghost-white:focus, .iawp-button.ghost-white.open {
303 color: #5123a0;
304 background-color: #fff;
305 border-color: #fff;
306 }
307
308 .iawp-button.ghost-white:hover .count, .iawp-button.ghost-white:active .count, .iawp-button.ghost-white:focus .count, .iawp-button.ghost-white.open .count {
309 color: #fff;
310 background: #5123a0;
311 }
312
313 .iawp-button.ghost-purple {
314 color: #5123a0;
315 border-color: #5123a0;
316 }
317
318 .iawp-button.ghost-purple:hover, .iawp-button.ghost-purple:active, .iawp-button.ghost-purple:focus, .iawp-button.ghost-purple .open {
319 color: #fff;
320 background-color: #5123a0;
321 border-color: #5123a0;
322 }
323
324 .iawp-button.ghost-purple:disabled {
325 color: #9a95a6;
326 background-color: #f7f5fa;
327 border-color: #ece9f2;
328 }
329
330 .iawp-button.ghost-red {
331 color: #d93b29;
332 border-color: #d93b29;
333 }
334
335 .iawp-button.ghost-red:hover, .iawp-button.ghost-red:active, .iawp-button.ghost-red:focus, .iawp-button.ghost-red .open {
336 color: #fff;
337 background-color: #d93b29;
338 border-color: #d93b29;
339 }
340
341 .iawp-button.ghost-red:disabled {
342 color: #9a95a6;
343 background-color: #f7f5fa;
344 border-color: #ece9f2;
345 }
346
347 .iawp-button.text {
348 color: #5123a0;
349 padding: 0;
350 }
351
352 .date-picker {
353 padding: 14px 16px 14px 36px;
354 }
355
356 .sort-button {
357 color: #18141f;
358 cursor: pointer;
359 background: none;
360 border: none;
361 align-items: center;
362 padding: 1px;
363 display: flex;
364 }
365
366 .sort-button .dashicons-arrow-up, .sort-button .dashicons-arrow-down {
367 display: none;
368 }
369
370 .sort-button .name {
371 font-weight: 700;
372 }
373
374 .sort-button .dashicons {
375 color: #c5c2cc;
376 }
377
378 .sort-button[data-sort-direction="asc"] .dashicons, .sort-button[data-sort-direction="desc"] .dashicons {
379 color: #5123a0;
380 }
381
382 .sort-button[data-sort-direction="asc"] .dashicons-arrow-up {
383 display: inline-block;
384 }
385
386 .sort-button[data-sort-direction="asc"] .dashicons-arrow-down, .sort-button[data-sort-direction="asc"] .dashicons-arrow-right {
387 display: none;
388 }
389
390 .sort-button[data-sort-direction="desc"] .dashicons-arrow-down {
391 display: inline-block;
392 }
393
394 .sort-button[data-sort-direction="desc"] .dashicons-arrow-up, .sort-button[data-sort-direction="desc"] .dashicons-arrow-right {
395 display: none;
396 }
397
398 .delete-button {
399 z-index: 3;
400 color: #fff;
401 cursor: pointer;
402 background-color: #5123a0;
403 border: none;
404 border-radius: 50%;
405 padding: 2px;
406 transition: background-color .1s, color .1s;
407 position: absolute;
408 top: 12px;
409 right: -12px;
410 }
411
412 .delete-button:hover, .delete-button .open {
413 background-color: #6c46ae;
414 }
415
416 #iawp, #iawp * {
417 box-sizing: border-box;
418 }
419
420 #iawp .postbox-header .iawp-button {
421 padding: 6px 8px;
422 text-decoration: none;
423 }
424
425 #iawp .inside {
426 margin-top: 0;
427 padding: 0;
428 }
429
430 #iawp .chart-container {
431 padding: 6px 0 0;
432 }
433
434 #iawp .chart-inner {
435 border: none;
436 padding: 6px 12px 12px;
437 }
438
439 #iawp .legend-container {
440 margin-bottom: 10px;
441 }
442
443 #iawp .legend-item {
444 margin-left: 8px;
445 }
446
447 #iawp .legend-item:first-child {
448 margin-left: 0;
449 }
450
451 #iawp .legend-item p {
452 font-size: 11px;
453 }
454
455 #iawp .legend-item span {
456 width: 13px;
457 height: 13px;
458 }
459
460 #iawp .legend-title {
461 display: none;
462 }
463
464 #iawp .quick-stats {
465 gap: 0;
466 margin: 0;
467 display: flex;
468 }
469
470 #iawp .quick-stats .stat {
471 width: 50%;
472 border: none;
473 border-top: 1px solid #dedae6;
474 border-radius: 0;
475 padding: 12px 18px;
476 }
477
478 #iawp .quick-stats .stat:first-child {
479 border-right: 1px solid #dedae6;
480 }
481
482 #iawp .quick-stats .stat .metric {
483 font-size: 14px;
484 }
485
486 #iawp .quick-stats .stat .percentage {
487 padding: 1px 8px 1px 2px;
488 font-size: 12px;
489 }
490
491 #iawp .quick-stats .stat .values {
492 flex-wrap: wrap;
493 margin: 0;
494 display: flex;
495 }
496
497 #iawp .quick-stats .stat .count {
498 word-break: break-word;
499 font-size: 24px;
500 }
501
502 #iawp .quick-stats .stat .period-label {
503 font-size: 13px;
504 }
505
506 /*# sourceMappingURL=dashboard_widget.css.map */
507