PluginProbe ʕ •ᴥ•ʔ
ShareThis Dashboard for Google Analytics / 2.5.5
ShareThis Dashboard for Google Analytics v2.5.5
3.3.2 trunk 1.0.7 2.0.0 2.0.1 2.0.2 2.0.3 2.0.4 2.0.5 2.1 2.1.2 2.1.3 2.1.4 2.1.5 2.2.5 2.3.5 2.3.6 2.3.7 2.3.8 2.4.0 2.4.1 2.5.0 2.5.1 2.5.2 2.5.3 2.5.4 2.5.5 3.0.0 3.1.0 3.1.1 3.1.2 3.1.3 3.1.4 3.1.5 3.1.6 3.1.7 3.2.0 3.2.1 3.2.2 3.2.3 3.2.4 3.3.0 3.3.1
googleanalytics / css / googleanalytics.css
googleanalytics / css Last commit date
ga_additional.css 4 years ago ga_modal.css 4 years ago ga_old_wp_support.css 4 years ago googleanalytics.css 4 years ago
googleanalytics.css
621 lines
1 @CHARSET "UTF-8";
2
3 .wrap.ga-wrap {
4 margin: 0px auto !important;
5 margin-top: 10px !important;
6 margin-right: 0px !important;
7 font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
8 font-size: 14px;
9 line-height: 1.42857143;
10 color: #333333;
11 }
12
13 .ga_container {
14 margin-top: 25px;
15 }
16
17 .google-analytics_page_googleanalytics-settings .ga_container {
18 display: flex;
19 flex-wrap: wrap;
20 justify-content: space-between;
21 }
22
23 .ga_container .sidebar-ad {
24 width: 50%;
25 background: #fff;
26 padding: 16px;
27 box-shadow: 6px 7px 12px 6px #cdcdcd;
28 }
29
30 .ga_container .sidebar-ad img {
31 width: 100%;
32 }
33
34 .ga_container a.view-report {
35 background: #c6dafc;
36 width: 200px;
37 display: inline-block;
38 padding: 10px 20px;
39 border-radius: 5px;
40 text-decoration: none;
41 font-size: 15px;
42 font-weight: bold;
43 text-align: center;
44 margin: 10px 5px 10px 0;
45 }
46
47 .ga_container .filter-choices a,
48 .ga_container .filter-choices button {
49 background: #f9f9f9;
50 width: 105px;
51 display: inline-block;
52 padding: 10px 20px;
53 border-radius: 5px;
54 text-decoration: none;
55 font-size: 15px;
56 font-weight: bold;
57 text-align: center;
58 margin: 10px 5px 10px 0;
59 color: #888888;
60 }
61
62 .ga_container .filter-choices a.selected,
63 .ga_container .filter-choices button {
64 background: #c6dafc;
65 color: #353535;
66 }
67
68 .ga_container .filter-choices button {
69 padding: 5px 20px;
70 }
71
72 #exTab1, #exTab2 {
73 margin-right: 15px !important;
74 }
75
76 #exTab1 .tab-content {
77 color: white;
78 background-color: #428bca;
79 padding: 5px 15px;
80 }
81
82 #exTab2 h3 {
83 color: white;
84 background-color: #428bca;
85 padding: 5px 15px;
86 }
87
88 /* remove border radius for the tab */
89 #exTab1 .nav-pills > li > a {
90 border-radius: 0;
91 }
92
93 /* change border radius for the tab , apply corners on top*/
94 #exTab3 .nav-pills > li > a {
95 border-radius: 4px 4px 0 0;
96 }
97
98 #exTab3 .tab-content {
99 color: white;
100 background-color: #428bca;
101 padding: 5px 15px;
102 }
103
104 label.ga_checkbox_label {
105 margin-top: 6px !important;
106 }
107
108 .form-table th {
109 width: 250px !important;
110 }
111
112 .wrap.ga-notice {
113 width: 100% !important;
114 margin-left: 0px !important;
115 margin-right: 10px !important;
116 }
117
118 .ga_warning {
119 font-size: 12px;
120 font-weight: normal;
121 margin-top: 10px;
122 }
123
124 .ga-boxes-container {
125
126 }
127
128 .ga-box-row {
129 display: table;
130 width: 100%;
131 table-layout: fixed;
132 border-spacing: 10px;
133 }
134
135 .ga-box-column {
136 display: table-cell;
137 -moz-box-shadow: 0 0 5px #e5e5e5;
138 -webkit-box-shadow: 0 0 5px #e5e5e5;
139 box-shadow: 0px 0px 5px #e5e5e5;
140 }
141
142 .ga-box-dashboard {
143 border: 1px solid #cccccc;
144 border-radius: 0px;
145 padding: 3px;
146 text-align: center;
147 }
148
149 .ga-box-centered {
150 text-align: center;
151 }
152
153 .ga-loader-wrapper {
154 float: right;
155 margin-top: 4px;
156 margin-right: 5px;
157 }
158
159 .ga-loader-wrapper.stats-page {
160 width: 45px;
161 text-align: center;
162 margin: 0 auto;
163 float: none;
164 }
165
166 .ga-loader {
167 border: 4px solid #f3f3f3; /* Light grey */
168 border-top: 4px solid #3498db; /* Blue */
169 border-radius: 50%;
170 width: 15px;
171 height: 15px;
172 animation: spin 2s linear infinite;
173 display: none;
174 }
175
176 .ga-loader.stats-page-loader {
177 width: 45px;
178 height: 45px;
179 border-width: 6px;
180 }
181
182 @keyframes spin {
183 0% {
184 transform: rotate(0deg);
185 }
186 100% {
187 transform: rotate(360deg);
188 }
189 }
190
191 .ga-review-us {
192 position: fixed;
193 right: 10px;
194 bottom: 40px;
195 background: #fff;
196 border: solid 1px #3379b7;
197 border-radius: 10px;
198 padding: 15px;
199 width: 295px;
200 text-align: center;
201 }
202
203 .ga-review-us #close-review-us {
204 cursor: pointer;
205 }
206
207 .ga-review-us h3 {
208 color: #3379b7;
209 }
210
211 .ga-review-us h3 a {
212 color: #ff9801;
213 }
214
215 .ga-chart {
216 }
217
218 .label-grey {
219 color: #ccc;
220 }
221
222 .ga-tooltip {
223 position: relative;
224 cursor: not-allowed;
225 }
226
227 .ga-tooltip input[disabled] {
228 cursor: not-allowed;
229 }
230
231 .ga-tooltiptext {
232 background-color: #ffe692;
233 border: 1px solid #ffb900;
234 border-radius: 4px;
235 color: #444;
236 font-size: 12px;
237 font-weight: 500;
238 margin-left: 10px;
239 margin-top: 30px;
240 padding: 3px 10px;
241 position: relative;
242 white-space: nowrap;
243 text-align: center;
244 visibility: hidden;
245 width: auto;
246 z-index: 1;
247 }
248
249 .ga-tt-abs {
250 display: inline-block;
251 position: absolute;
252 margin-top: 0px;
253 }
254
255 .ga-tooltip:hover .ga-tooltiptext {
256 visibility: visible;
257 }
258
259 .weight-normal {
260 font-weight: normal;
261 }
262
263 .ga-love-text {
264 display: block;
265 margin-top: 20px;
266 font-size: 10px;
267 font-weight: bold;
268 }
269
270 .ga-debug-form-div {
271 margin: 5px;
272 }
273
274 .ga-debug-form-label {
275 vertical-align: top;
276 display: inline-block;
277 width: 20%;
278 }
279
280 .ga-debug-form-field {
281 width: 50%;
282 }
283
284 .ga-debug-form-loader {
285 width: 20%;
286 }
287
288 .demo-ad.ga-panel-default img {
289 opacity: .3;
290 background: #cdcdcd;
291 width: 100%;
292 }
293
294 .demo-enable-popup {
295 display: none;
296 position: fixed;
297 top: 50%;
298 left: 50%;
299 transform: translate(-50%, -50%);
300 background: #fff;
301 border: 2px solid #428aca;
302 padding: 15px;
303 width: 500px;
304 }
305
306 .demo-enable-popup.engage {
307 display: block;
308 }
309
310 .demo-enable-popup .close-demo-modal {
311 position: absolute;
312 right: 10px;
313 top: 10px;
314 border: 1px solid;
315 border-radius: 20px;
316 padding: 0 7px;
317 color: #fff;
318 background: #cdcdcd;
319 cursor: pointer;
320 }
321
322 .demo-enable-popup p {
323 font-size: 18px;
324 text-align: center;
325 padding: 0 20px 10px;
326 }
327
328 #sharethis-form-color {
329 display: flex;
330 flex-wrap: wrap;
331 margin: auto;
332 width: 50%;
333 }
334
335 #sharethis-form-color .color {
336 box-shadow: 1px 1px 4px 1px #cdcdcd;
337 cursor: pointer;
338 margin: 5px;
339 }
340
341 #sharethis-form-color .color.selected {
342 box-shadow: 0px 0px 3px 5px #4583ee;
343 }
344
345 #publisher-purpose .purpose-item {
346 margin-bottom: 25px;
347 }
348
349 #publisher-purpose .purpose-item div.title {
350 display: block;
351 text-align: left;
352 font-weight: bold;
353 width: 100%;
354 }
355
356 #publisher-purpose .purpose-item label {
357 display: inline-block;
358 width: 21%;
359 }
360
361 .gdpr-platform {
362 margin: 20px auto;
363 max-width: 900px;
364 background: #fff;
365 padding: 20px;
366 z-index: 999;
367 position: relative;
368 }
369
370 .gdpr-submit-button {
371 margin: 20px auto;
372 max-width: 900px;
373 z-index: 999;
374 position: relative;
375 }
376
377 .gdpr-platform #publisher-purpose .purpose-item label:first-of-type {
378 width: 14%;
379 }
380
381 .gdpr-platform .switch label input[type=radio]:checked + .lever,
382 .gdpr-platform .switch label input[type=checkbox]:checked + .lever {
383 background: #4583ee;
384 border: 2px solid #4583ee;
385 box-shadow: none;
386 }
387
388 .gdpr-platform input[type="text"] {
389 line-height: 40px;
390 margin-bottom: 10px;
391 width: 300px;
392 }
393
394 .gdpr-platform select {
395 margin-bottom: 10px;
396 line-height: 40px;
397 width: 300px;
398 }
399
400 .gdpr-platform .switch label input[type=radio]:checked + .lever:before,
401 .gdpr-platform .switch label input[type=checkbox]:checked + .lever:before {
402 content: "";
403 position: absolute;
404 top: 0;
405 left: 3px;
406 color: #fff;
407 }
408
409 .gdpr-platform .switch label {
410 font-size: 12px;
411 display: block;
412 margin-top: 10px;
413 }
414
415 .gdpr-platform .switch label .lever {
416 content: "";
417 display: inline-block;
418 position: relative;
419 width: 20px;
420 height: 18px;
421 background-color: #fff;
422 border: 1px solid #cdcdcd;
423 border-radius: 0;
424 margin-right: 10px;
425 transition: background .3s ease;
426 vertical-align: middle;
427 margin: 0 16px;
428 }
429
430 .gdpr-platform .switch label .lever:after {
431 border-radius: 0;
432 content: unset;
433 position: unset;
434 }
435
436
437 .gdpr-platform [type=radio].filled-in + label:before, .gdpr-platform [type=checkbox].filled-in + label:before {
438 content: "";
439 left: 0;
440 position: absolute;
441 transition: border .25s, background-color .25s, width .2s .1s, height .2s .1s, top .2s .1s, left .2s .1s;
442 z-index: 1;
443 }
444
445 p.form-color {
446 float: left;
447 width: 100%;
448 padding-top: 15px;
449 }
450
451 #sharethis-form-color {
452 display: flex;
453 flex-wrap: wrap;
454 margin: auto;
455 width: 50%;
456 }
457
458 #sharethis-form-color .color {
459 box-shadow: 1px 1px 4px 1px #cdcdcd;
460 cursor: pointer;
461 margin: 5px;
462 }
463
464 #sharethis-form-color .color.selected {
465 box-shadow: 0px 0px 3px 5px #4583ee;
466 }
467
468 .empty-choices {
469 display: flex;
470 justify-content: center;
471 opacity: 1;
472 transition: opacity .6s;
473 }
474
475 a.st-rc-link {
476 margin: 20px 0 0 10px;
477 }
478
479 .gdpr-platform a.st-rc-link {
480 background: #4583ee;
481 border-radius: 3px;
482 border: none;
483 color: #fff;
484 cursor: pointer;
485 margin: .8em auto .5em;
486 display: inline-block;
487 padding: 15px 60px;
488 letter-spacing: 0.1em;
489 text-align: center;
490 text-decoration: none;
491 transition: opacity 0.2s ease-out
492 }
493
494 .empty-choices a {
495 padding: 10px;
496 min-width: 250px;
497 }
498
499 .empty-choices a.st-rc-link {
500 margin: 20px 0 20px 10px;
501 }
502
503 .gdpr-platform .vendor-table-body {
504 border: solid 1px #cdcdcd;
505 padding: 10px;
506 max-height: 600px;
507 overflow: scroll;
508 }
509
510 .gdpr-platform .vendor-table-cell {
511 padding: 20px 0;
512 border-bottom: solid 1px #cdcdcd;
513 }
514
515 .gdpr-platform .purpose-item input[type="checkbox"],
516 .gdpr-platform .vendor-table-cell input[type="checkbox"],
517 .gdpr-platform .purpose-item input[type="radio"] {
518 display: none;
519 }
520
521 .gdpr-platform .exclusion-item {
522 padding: 20px 0;
523 border-bottom: solid 1px #cdcdcd;
524 }
525
526 .gdpr-platform label.enable-tool {
527 font-weight: bold;
528 font-size: 16px;
529 margin-bottom: 20px;
530 }
531
532 .gdpr-platform h2 {
533 text-align: center;
534 }
535
536 .gdpr-platform .error-message {
537 display: block;
538 text-align: left;
539 }
540
541 .gdpr-platform .gdpr-landing img {
542 margin: auto;
543 width: 600px;
544 display: block;
545 }
546
547 .register-section {
548 text-align: center;
549 padding: 30px 20px;
550 }
551
552 .register-section button {
553 background-color: #4583ee;
554 color: #fff;
555 padding: 10px 15px;
556 border: none;
557 border-radius: 5px;
558 }
559
560 .accor-wrap {
561 margin: 1rem 0 0;
562 display: inline-block;
563 width: 100%;
564 }
565
566 .accor-wrap .accor-tab {
567 background: #4582ec;
568 padding: .5rem;
569 border-radius: 5px;
570 color: #ffffff;
571 }
572
573 .accor-wrap .well {
574 display: inline-block;
575 width: 100%;
576 }
577
578 .accor-wrap .well h3 {
579 margin: 1rem 0;
580 padding-top: 20px;
581 text-align: center;
582 width: 100%;
583 }
584
585 .accor-wrap .well .col-md-12:first-of-type h3 {
586 margin-top: 0;
587 }
588
589 .accor-wrap .accor-content {
590 display: none;
591 }
592
593 .accor-wrap .accor-arrow {
594 border: 1px solid #ffffff;
595 padding: .2rem .4rem;
596 border-radius: 5px;
597 margin: 0 .3rem 0 .3rem;
598 font-size: 12px;
599 cursor: pointer;
600 font-family: arial, sans-serif;
601 }
602
603 .ga-demo-chart .ga-chart {
604 display: inline-block;
605 width: 46%;
606 }
607
608 #ga_form .form-table {
609 max-width: 560px;
610 }
611
612 .adBanner {
613 background-color: transparent;
614 height: 1px;
615 width: 1px;
616 }
617
618 #adblocker-notice {
619 display: none;
620 }
621