PluginProbe ʕ •ᴥ•ʔ
Matomo Analytics – Powerful, Privacy-First Insights for WordPress / 5.1.5
Matomo Analytics – Powerful, Privacy-First Insights for WordPress v5.1.5
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 year ago
admin-style.css
164 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 .matomo-systemreport-comment {
15 word-break: break-all;
16 }
17
18 ul.matomo-list {
19 list-style-type: disc;
20 margin-left: 20px;
21 }
22 ol.matomo-list {
23 list-style-type: decimal;
24 margin-left: 20px;
25 }
26
27 .matomo-plugin-list .plugin-card-top {
28 min-height: auto;
29 }
30
31 .matomo-plugin-list .plugin-card-top .matomo-description {
32 min-height: 80px;
33 }
34 .matomo-plugin-row-2 {
35 max-width: 1082px;
36 }
37 .matomo-plugin-row-2 .plugin-card-top .matomo-description {
38 min-height: 50px;
39 }
40
41 .matomo-plugin-list .plugin-card .desc > p.matomo-description,
42 .matomo-plugin-list .plugin-card .desc > p.authors {
43 margin: 1em 0;
44 }
45
46 .matomo-marketplace-notice .dashicons-video-alt3 {
47 display: inline-block;
48 }
49 .matomo-blockquote {
50 margin: .5em 10px;
51 border-left: 4px solid #ccc;
52 padding-left: 10px;
53 font-weight: bold;
54 }
55 .matomo-footer {
56 margin-top: 48px;
57 text-align: center;
58 }
59
60 .matomo-footer ul {
61 list-style: none;
62 padding: 0 0 0 20px;
63 font-size: 13px;
64 line-height: 18px;
65 }
66
67 .matomo-footer ul li {
68 display: inline-block;
69 margin: 0 20px 10px;
70 }
71
72 .matomo-header-icon {
73 height: 32px;
74 vertical-align: top;
75 }
76
77 .matomo-footer ul a {
78 color: #37474f;
79 }
80 .matomo-systemreport .widefat .warning td {
81 color: orange;
82 }
83
84 .matomo-systemreport .widefat .error td {
85 color: red;
86 }
87
88 .matomo-systemreport .widefat .section {
89 font-weight: bold;
90 }
91
92 .matomo-dashboard-container .postbox-container {
93 min-width: 40%;
94 }
95
96 .postbox .table .widefat.matomo-table {
97 border: 0;
98 }
99
100 #matomo_default_tracking_code textarea {
101 width: 100%;
102 height: 280px;
103 }
104 #matomo_default_tracking_code textarea.no_script {
105 height: 50px;
106 }
107
108 table.matomo-tracking-form textarea {
109 display: inline-block;
110 width: 95%;
111 }
112
113 table.matomo-tracking-form th {
114 max-width: 30%;
115 }
116
117 /* toggle styles */
118 .matomo-toggle {
119 position: relative;
120 display: inline-block;
121 width: 2.375em;
122 height: 1.345em;
123 }
124 .matomo-toggle input {
125 height: 0;
126 width: 0;
127 opacity: 0;
128 }
129 .matomo-toggle .slider {
130 position: absolute;
131 cursor: pointer;
132 top: 0;
133 left: 0;
134 right: 0;
135 bottom: 0;
136 background-color: #ccc;
137 -webkit-transition: .4s;
138 transition: .4s;
139 border-radius: 1.345em;
140 }
141 .matomo-toggle .slider:before {
142 position: absolute;
143 content: "";
144 height: 1.03em;
145 width: 1.03em;
146 left: .15835em;
147 bottom: .15835em;
148 background-color: white;
149 -webkit-transition: .4s;
150 transition: .4s;
151 border-radius: 50%;
152 }
153 .matomo-toggle input:checked + .slider {
154 background-color: #2271b1;
155 }
156 .matomo-toggle input:focus + .slider {
157 box-shadow: 0 0 1px #2271b1;
158 }
159 .matomo-toggle input:checked + .slider:before {
160 -webkit-transform: translateX(1.03em);
161 -ms-transform: translateX(1.03em);
162 transform: translateX(1.03em);
163 }
164