PluginProbe ʕ •ᴥ•ʔ
Matomo Analytics – Powerful, Privacy-First Insights for WordPress / 5.12.1
Matomo Analytics – Powerful, Privacy-First Insights for WordPress v5.12.1
5.12.1 5.12.0 5.11.1 5.11.0 5.10.2 5.10.1 trunk 1.0.2 1.0.3 1.0.4 1.0.5 1.0.6 1.1.0 1.1.1 1.1.2 1.1.3 1.2.0 1.3.0 1.3.1 1.3.2 4.0.0 4.0.1 4.0.2 4.0.3 4.0.4 4.1.0 4.1.1 4.1.2 4.1.3 4.10.0 4.11.0 4.12.0 4.13.0 4.13.2 4.13.3 4.13.4 4.13.5 4.14.0 4.14.1 4.14.2 4.15.0 4.15.1 4.15.2 4.15.3 4.2.0 4.3.0 4.3.1 4.4.1 4.4.2 4.5.0 4.6.0 5.0.1 5.0.2 5.0.3 5.0.4 5.0.5 5.0.6 5.0.7 5.0.8 5.1.0 5.1.1 5.1.2 5.1.3 5.1.4 5.1.5 5.1.6 5.1.7 5.10.0 5.2.0 5.2.1 5.2.2 5.3.0 5.3.1 5.3.2 5.3.3 5.6.0 5.6.1 5.7.0 5.7.1 5.8.0 5.8.1 5.8.2
matomo / assets / css / admin-style.css
matomo / assets / css Last commit date
admin-style.css 1 month ago marketplace-style.css 1 month ago
admin-style.css
364 lines
1 .matomo-tracking-form tr {
2 padding: 6px 0;
3 }
4
5 .matomo-tracking-form th {
6 width: 30%;
7 vertical-align: top;
8 }
9
10 .matomo-tracking-form th label {
11 vertical-align: baseline;
12 }
13
14 ul.matomo-list {
15 list-style-type: disc;
16 margin-left: 20px;
17 }
18 ol.matomo-list {
19 list-style-type: decimal;
20 margin-left: 20px;
21 }
22
23 .matomo-plugin-list .plugin-card-top {
24 min-height: auto;
25 }
26
27 .matomo-plugin-list .plugin-card-top .matomo-description {
28 min-height: 80px;
29 }
30 .matomo-plugin-row-2 {
31 max-width: 1082px;
32 }
33 .matomo-plugin-row-2 .plugin-card-top .matomo-description {
34 min-height: 50px;
35 }
36
37 .matomo-plugin-list .plugin-card .desc > p.matomo-description,
38 .matomo-plugin-list .plugin-card .desc > p.authors {
39 margin: 1em 0;
40 }
41
42 .matomo-marketplace-notice .dashicons-video-alt3 {
43 display: inline-block;
44 }
45 .matomo-blockquote {
46 margin: .5em 10px;
47 border-left: 4px solid #ccc;
48 padding-left: 10px;
49 font-weight: bold;
50 }
51 .matomo-footer {
52 margin-top: 48px;
53 text-align: center;
54 }
55
56 .matomo-footer ul {
57 list-style: none;
58 padding: 0 0 0 20px;
59 font-size: 13px;
60 line-height: 18px;
61 }
62
63 .matomo-footer ul li {
64 display: inline-block;
65 margin: 0 20px 10px;
66 }
67
68 .matomo-header-icon-full, .matomo-header-icon {
69 height: 32px;
70 vertical-align: top;
71 margin-right: 8px;
72 }
73
74 .matomo-header-icon {
75 border-radius: 50%;
76 }
77
78 .matomo-footer ul a {
79 color: #37474f;
80 }
81 .matomo-systemreport .widefat .warning td {
82 color: orange;
83 }
84
85 .matomo-systemreport .widefat .error td {
86 color: red;
87 }
88
89 .matomo-systemreport .widefat .section {
90 font-weight: bold;
91 }
92
93 .matomo-dashboard-container .postbox-container {
94 min-width: 40%;
95 }
96
97 .postbox .table .widefat.matomo-table {
98 border: 0;
99 }
100
101 #matomo_default_tracking_code textarea {
102 width: 100%;
103 height: 280px;
104 }
105 #matomo_default_tracking_code textarea.no_script {
106 height: 50px;
107 }
108
109 table.matomo-tracking-form textarea {
110 display: inline-block;
111 width: 95%;
112 }
113
114 table.matomo-tracking-form th {
115 max-width: 30%;
116 }
117
118 /* toggle styles */
119 .matomo-toggle {
120 position: relative;
121 display: inline-block;
122 width: 2.375em;
123 height: 1.345em;
124 }
125 .matomo-toggle input {
126 height: 0;
127 width: 0;
128 opacity: 0;
129 }
130 .matomo-toggle .slider {
131 position: absolute;
132 cursor: pointer;
133 top: 0;
134 left: 0;
135 right: 0;
136 bottom: 0;
137 background-color: #ccc;
138 -webkit-transition: .4s;
139 transition: .4s;
140 border-radius: 1.345em;
141 }
142 .matomo-toggle .slider:before {
143 position: absolute;
144 content: "";
145 height: 1.03em;
146 width: 1.03em;
147 left: .15835em;
148 bottom: .15835em;
149 background-color: white;
150 -webkit-transition: .4s;
151 transition: .4s;
152 border-radius: 50%;
153 }
154 .matomo-toggle input:checked + .slider {
155 background-color: #2271b1;
156 }
157 .matomo-toggle input:focus + .slider {
158 box-shadow: 0 0 1px #2271b1;
159 }
160 .matomo-toggle input:checked + .slider:before {
161 -webkit-transform: translateX(1.03em);
162 -ms-transform: translateX(1.03em);
163 transform: translateX(1.03em);
164 }
165
166 #toplevel_page_matomo a.matomo-notification-dot {
167 position: relative;
168 display: inline-block;
169 }
170
171 #toplevel_page_matomo .matomo-notification-dot::before {
172 content: " ";
173 position: absolute;
174 display: inline-block;
175 width: 6px;
176 height: 6px;
177 background-color: #d63638;
178 border-radius: 50%;
179 right: 2px;
180 }
181
182 .notice.matomo-whats-new {
183 border-left-color: #9D2235;
184 }
185
186 .notice.matomo-whats-new .button-primary {
187 background-color: #9D2235;
188 border-color: #9D2235;
189 }
190
191 .notice.matomo-whats-new h6 {
192 margin: 0;
193 font-style: italic;
194 color: #9D2235;
195 font-size: .8em;
196 }
197
198 .notice.matomo-whats-new h3 {
199 font-size: 1.6em;
200 margin: 6px 0;
201 }
202
203 .matomo-plugin-list.matomo-new-plugins .plugin-card {
204 position: relative;
205 }
206
207 .matomo-plugin-list.matomo-new-plugins .plugin-card .matomo-new-marker {
208 position: absolute;
209 right: 8px;
210 top: 8px;
211 font-style: italic;
212 color: #9D2235;
213 }
214
215 .plugin-price {
216 font-weight: bold;
217 color: #f77b00;
218 }
219
220 .matomo-inline-notice {
221 padding: 1em;
222 }
223
224 .matomo-inline-notice.matomo-warning {
225 background-color: rgba(255, 165, 0, 0.2);
226 }
227
228 .matomo-marketplace-wizard {
229 width: 100%;
230 max-width: 700px;
231 background-color: white;
232 box-shadow: 0 1px 2px rgba(0,0,0,.3);
233 border-radius: 3px;
234 padding-top: 48px;
235 position: relative;
236 margin: 32px auto 0 auto;
237 }
238
239 .matomo-marketplace-wizard-header {
240 position: absolute;
241 border-top-left-radius: 3px;
242 border-top-right-radius: 3px;
243 top: 0;
244 left: 0;
245 right: 0;
246 height: 48px;
247 background-color: #e9e9e9;
248 }
249
250 .matomo-marketplace-wizard-logo {
251 top: -14px;
252 left: calc(50% - 38px);
253 position: absolute;
254 border-radius: 50%;
255 background-color: white;
256 width: 72px;
257 height: 72px;
258 display: flex;
259 align-items: center;
260 justify-content: center;
261 border: 2px solid #ccc;
262 }
263
264 .matomo-marketplace-wizard .matomo-marketplace-wizard-body {
265 padding: 24px;
266 }
267
268 .matomo-marketplace-wizard-logo img {
269 width: 64px;
270 border-radius: 50%;
271 }
272
273 .matomo-marketplace-wizard-body .wizard-steps-header {
274 display: flex;
275 flex-direction: row;
276 align-items: flex-start;
277 }
278
279 .matomo-marketplace-wizard-body .wizard-steps-header .step-title {
280 text-transform: uppercase;
281 flex: 1;
282 color: #888;
283 }
284
285 .matomo-marketplace-wizard-body .wizard-steps-header .divider {
286 width: 33px;
287 }
288
289 .matomo-marketplace-wizard-body .wizard-steps {
290 display: flex;
291 flex-direction: row;
292 align-items: stretch;
293 }
294
295 .matomo-marketplace-wizard-body .wizard-steps .step {
296 flex: 1;
297 padding-right: 32px;
298 display: flex;
299 flex-direction: column;
300 justify-content: space-between;
301 align-items: flex-start;
302 padding-bottom: 6px;
303 }
304
305 .matomo-marketplace-wizard-body .wizard-steps .divider {
306 width: 1px;
307 background-color: #aaa;
308 margin: 0 16px;
309 }
310
311 .matomo-marketplace-wizard-body .wizard-footer p{
312 font-size: 0.9em;
313 margin-top: 24px;
314 }
315
316 .mtm-wp-gte-7 #adminmenu #toplevel_page_matomo li:hover a .awaiting-mod,
317 .mtm-wp-gte-7 #adminmenu #toplevel_page_matomo li.current a .awaiting-mod {
318 background-color: var(--wp-admin-theme-color, #3858e9);
319 }
320
321 .matomo-primary-color-fg {
322 color: #2271b1;
323 }
324
325 .matomo-primary-color-fill {
326 fill: #2271b1;
327 }
328
329 .matomo-secondary-color-fg {
330 color: #f6f7f7;
331 }
332
333 .matomo-primary-color-bg {
334 background-color: #2271b1;
335 }
336
337 .matomo-secondary-color-bg {
338 background-color: #f6f7f7;
339 }
340
341 .mtm-wp-gte-7 .matomo-primary-color-fg {
342 color: var(--wp-admin-theme-color, #3858e9);
343 }
344
345 .mtm-wp-gte-7 .matomo-primary-color-fill {
346 fill: var(--wp-admin-theme-color, #3858e9);
347 }
348
349 .mtm-wp-gte-7 .matomo-secondary-color-fg {
350 color: white;
351 }
352
353 .mtm-wp-gte-7 .matomo-primary-color-bg {
354 background-color: var(--wp-admin-theme-color, #3858e9);
355 }
356
357 .mtm-wp-gte-7 .matomo-secondary-color-bg {
358 background-color: white;
359 }
360
361 .mtm-wp-gte-7 .matomo-toggle input:checked + .slider {
362 background-color: var(--wp-admin-theme-color, #3858e9);
363 }
364