PluginProbe ʕ •ᴥ•ʔ
ShareThis Dashboard for Google Analytics / 2.0.0
ShareThis Dashboard for Google Analytics v2.0.0
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
bootstrap.min.css 9 years ago googleanalytics.css 9 years ago
googleanalytics.css
172 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 }
8
9 .ga_container {
10 margin-top: 25px;
11 }
12
13 #exTab1, #exTab2 {
14 margin-right: 15px !important;
15 }
16
17 #exTab1 .tab-content {
18 color: white;
19 background-color: #428bca;
20 padding: 5px 15px;
21 }
22
23 #exTab2 h3 {
24 color: white;
25 background-color: #428bca;
26 padding: 5px 15px;
27 }
28
29 /* remove border radius for the tab */
30 #exTab1 .nav-pills > li > a {
31 border-radius: 0;
32 }
33
34 /* change border radius for the tab , apply corners on top*/
35 #exTab3 .nav-pills > li > a {
36 border-radius: 4px 4px 0 0;
37 }
38
39 #exTab3 .tab-content {
40 color: white;
41 background-color: #428bca;
42 padding: 5px 15px;
43 }
44
45 label.ga_checkbox_label {
46 margin-top: 6px !important;
47 }
48
49 .form-table th {
50 width: 250px !important;
51 }
52
53 .wrap.ga-notice {
54 width: 100% !important;
55 margin-left: 0px !important;
56 margin-right: 10px !important;
57 }
58
59 .ga_warning {
60 font-size: 12px;
61 font-weight: normal;
62 margin-top: 10px;
63 }
64
65 .ga-boxes-container {
66
67 }
68
69 .ga-box-row {
70 display: table;
71 width: 100%;
72 table-layout: fixed;
73 border-spacing: 10px;
74 }
75
76 .ga-box-column {
77 display: table-cell;
78 -moz-box-shadow: 0 0 5px #e5e5e5;
79 -webkit-box-shadow: 0 0 5px #e5e5e5;
80 box-shadow: 0px 0px 5px #e5e5e5;
81 }
82
83 .ga-box-dashboard {
84 border: 1px solid #cccccc;
85 border-radius: 0px;
86 padding: 3px;
87 text-align: center;
88 }
89
90 .ga-box-centered {
91 text-align: center;
92 }
93
94 .ga-loader-wrapper {
95 float: right;
96 margin-top: 4px;
97 margin-right: 5px;
98 }
99
100 .ga-loader-wrapper.stats-page {
101 width: 45px;
102 text-align: center;
103 margin: 0 auto;
104 float: none;
105 }
106
107 .ga-loader {
108 border: 4px solid #f3f3f3; /* Light grey */
109 border-top: 4px solid #3498db; /* Blue */
110 border-radius: 50%;
111 width: 15px;
112 height: 15px;
113 animation: spin 2s linear infinite;
114 display: none;
115 }
116
117 .ga-loader.stats-page-loader {
118 width: 45px;
119 height: 45px;
120 border-width: 6px;
121 }
122
123 @keyframes spin {
124 0% {
125 transform: rotate(0deg);
126 }
127 100% {
128 transform: rotate(360deg);
129 }
130 }
131
132 .ga-chart {
133 }
134
135 .label-grey{
136 color:#ccc;
137 }
138
139 .ga-tooltip {
140 position: relative;
141 cursor: not-allowed;
142 }
143
144 .ga-tooltip input[disabled] {
145 cursor: not-allowed;
146 }
147
148 .ga-tooltiptext {
149 background-color: #ffe692;
150 border: 1px solid #ffb900;
151 border-radius: 4px;
152 color: #444;
153 font-size: 12px;
154 font-weight: 500;
155 margin-left: 10px;
156 margin-top: 30px;
157 padding: 3px 10px;
158 position: relative;
159 white-space: nowrap;
160 text-align: center;
161 visibility: hidden;
162 width: auto;
163 z-index: 1;
164 }
165 .ga-tt-abs{
166 display: inline-block;
167 position: absolute;
168 margin-top: 0px;
169 }
170 .ga-tooltip:hover .ga-tooltiptext {
171 visibility: visible;
172 }