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