PluginProbe ʕ •ᴥ•ʔ
ShareThis Dashboard for Google Analytics / 2.1.5
ShareThis Dashboard for Google Analytics v2.1.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 / ga_modal.css
googleanalytics / css Last commit date
ga_additional.css 9 years ago ga_modal.css 9 years ago ga_old_wp_support.css 9 years ago googleanalytics.css 9 years ago
ga_modal.css
100 lines
1 .ga-modal {
2 display: none; /* Hidden by default */
3 position: fixed; /* Stay in place */
4 z-index: 1; /* Sit on top */
5 left: 0;
6 top: 0;
7 width: 100%; /* Full width */
8 height: 100%; /* Full height */
9 overflow: auto; /* Enable scroll if needed */
10 background-color: rgb(0, 0, 0); /* Fallback color */
11 background-color: rgba(0, 0, 0, 0.4); /* Black w/ opacity */
12 }
13
14 .ga-modal-dialog {
15 }
16
17 .ga-modal-body {
18 padding: 15px 0px 15px 16px;
19 background-color: #fff;
20 }
21
22 .ga-modal-header {
23 padding: 2px 16px;
24 background-color: #fff;
25 border-bottom: 1px solid #cccccc;
26 border-top-left-radius: 4px;
27 border-top-right-radius: 4px;
28 color: #000;
29 }
30
31 .ga-modal-content {
32 position: relative;
33 background-color: transparent;
34 margin: auto;
35 margin-top: 50px;
36 padding: 0;
37 border: 1px solid #888;
38 width: 50%;
39 box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
40 -webkit-animation-name: animatetop;
41 -webkit-animation-duration: 0.4s;
42 animation-name: animatetop;
43 animation-duration: 0.4s
44 }
45
46 .ga-modal-footer {
47 padding: 2px 16px 16px;
48 background-color: #fff;
49 color: #000;
50 border: 1px solid #fff;
51 border-bottom-left-radius: 4px;
52 border-bottom-right-radius: 4px;
53 text-align: right;
54 }
55
56 /* The Close Button */
57 .ga-close {
58 color: #aaa;
59 float: right;
60 font-size: 28px;
61 font-weight: bold;
62 }
63
64 .ga-close:hover,
65 .ga-close:focus {
66 color: black;
67 text-decoration: none;
68 cursor: pointer;
69 }
70
71 /* Add Animation */
72 @-webkit-keyframes animatetop {
73 from {
74 top: -300px;
75 opacity: 0
76 }
77 to {
78 top: 0;
79 opacity: 1
80 }
81 }
82
83 @keyframes animatetop {
84 from {
85 top: -300px;
86 opacity: 0
87 }
88 to {
89 top: 0;
90 opacity: 1
91 }
92 }
93
94 #ga_access_code_tmp {
95 width: 80%;
96 }
97
98 @media screen {
99
100 }