PluginProbe ʕ •ᴥ•ʔ
Cookiebot by Usercentrics – Automatic Cookie Banner for GDPR/CCPA & Google Consent Mode / 4.2.0
Cookiebot by Usercentrics – Automatic Cookie Banner for GDPR/CCPA & Google Consent Mode v4.2.0
4.7.2 4.7.1 trunk 2.3.0 2.4.0 2.4.1 2.4.2 2.5.0 3.0.0 3.0.1 3.1.0 3.10.0 3.10.1 3.11.1 3.11.2 3.11.3 3.2.0 3.3.0 3.3.1 3.4.0 3.4.1 3.4.2 3.5.0 3.6.0 3.6.1 3.6.2 3.6.5 3.6.6 3.7.0 3.7.1 3.8.0 3.9.0 4.0.0 4.0.1 4.0.2 4.0.3 4.1.0 4.1.1 4.2.0 4.2.1 4.2.10 4.2.11 4.2.12 4.2.13 4.2.14 4.2.2 4.2.3 4.2.4 4.2.5 4.2.6 4.2.7 4.2.8 4.2.9 4.3.0 4.3.1 4.3.10 4.3.11 4.3.12 4.3.2 4.3.3 4.3.4 4.3.5 4.3.6 4.3.7 4.3.7.1 4.3.8 4.3.9 4.3.9.1 4.4.0 4.4.1 4.4.2 4.5.0 4.5.1 4.5.10 4.5.11 4.5.2 4.5.3 4.5.4 4.5.5 4.5.6 4.5.7 4.5.8 4.5.9 4.6.0 4.6.1 4.6.2 4.6.3 4.6.4 4.6.5 4.6.6 4.6.7 4.7.0
cookiebot / assets / css / backend / cookiebot_admin_main.css
cookiebot / assets / css / backend Last commit date
addons_page.css 3 years ago consent_mapping_table.css 4 years ago cookiebot_admin_main.css 3 years ago dashboard_page.css 3 years ago debug_info.css 3 years ago gtm_page.css 4 years ago multiple_page.css 3 years ago settings-page.css 3 years ago support_page.css 3 years ago
cookiebot_admin_main.css
324 lines
1 @font-face {
2 font-family: 'Inter';
3 src: url('/wp-content/plugins/cookiebot/assets/fonts/Inter-VariableFont.woff2') format('woff2-variations');
4 font-weight: 300 900;
5 font-stretch: 100%;
6 font-style: normal;
7 font-display: swap;
8 }
9
10 #wpcontent {
11 padding-left: 0;
12 font-family: Inter;
13 background-color: #ffffff;
14 }
15
16 .cb-wrapper {
17 width: 100%;
18 max-width: 1366px;
19 margin: 0 auto;
20 }
21
22 .cb-header {
23 padding: 15px 25px;
24 border-bottom: 1px solid #d3d3d3;
25 }
26
27 .cb-body {
28 padding: 50px 25px 0;
29 }
30
31 .cb-body .cb-wrapper {
32 display: grid;
33 grid-template-columns: .9fr 3.1fr;
34 grid-column-gap: 30px;
35 align-items: start;
36 }
37
38 .cb-main__tabs {
39 display: grid;
40 grid-row-gap: 10px;
41 }
42
43 .cb-main__tabs_item {
44 border-radius: 7px;
45 }
46
47 .cb-main__tabs_item.active-item, .cb-main__tabs_item:hover {
48 background-color: #ECEFFE;
49 }
50
51 .cb-main__tabs_item a {
52 font-size: 15px;
53 color: #141414;
54 padding: 10px 15px;
55 text-decoration: none;
56 display: grid;
57 grid-template-columns: 1fr 8fr;
58 grid-column-gap: 5px;
59 align-items: center;
60 font-weight: 600;
61 }
62
63 .cb-main__tabs_item:hover a, .cb-main__tabs_item.active-item a {
64 color: #1032cf;
65 }
66
67 .cb-main__tabs__icon{
68 margin-right: 8px;
69 display: block;
70 width: 28px;
71 height: 28px;
72 background-color: #141414;
73 transition: background-color .25s ease;
74 -webkit-mask-size: contain;
75 mask-size: contain;
76 -webkit-mask-repeat: no-repeat;
77 mask-repeat: no-repeat;
78 -webkit-mask-position: center;
79 mask-position: center;
80 }
81
82 .cb-main__tabs_item:hover .cb-main__tabs__icon, .cb-main__tabs_item.active-item .cb-main__tabs__icon{
83 background-color: #1032cf;
84 }
85
86 .dashboard-icon {
87 -webkit-mask-image: url(/wp-content/plugins/cookiebot/assets/img/icons/dashboard.svg);
88 mask-image: url(/wp-content/plugins/cookiebot/assets/img/icons/dashboard.svg);
89 }
90
91 .settings-icon {
92 -webkit-mask-image: url(/wp-content/plugins/cookiebot/assets/img/icons/settings.svg);
93 mask-image: url(/wp-content/plugins/cookiebot/assets/img/icons/settings.svg);
94 }
95
96 .plugins-icon {
97 -webkit-mask-image: url(/wp-content/plugins/cookiebot/assets/img/icons/plugins.svg);
98 mask-image: url(/wp-content/plugins/cookiebot/assets/img/icons/plugins.svg);
99 }
100
101 .support-icon {
102 -webkit-mask-image: url(/wp-content/plugins/cookiebot/assets/img/icons/support.svg);
103 mask-image: url(/wp-content/plugins/cookiebot/assets/img/icons/support.svg);
104 }
105
106 .debug-icon {
107 -webkit-mask-image: url(/wp-content/plugins/cookiebot/assets/img/icons/debug.svg);
108 mask-image: url(/wp-content/plugins/cookiebot/assets/img/icons/debug.svg);
109 }
110
111 .cb-main__page_title {
112 font-size: 55px;
113 line-height: 65px;
114 font-weight: 700;
115 margin: 0 0 30px;
116 }
117
118 .cb-btn {
119 display: inline-block;
120 margin-top: 18px;
121 text-decoration: none;
122 padding: 15px;
123 font-size: 15px;
124 font-weight: 500;
125 border-radius: 7px;
126 border: none;
127 cursor: pointer;
128 }
129
130 .cb-btn.hidden {
131 display: none;
132 }
133
134 .cb-main-btn {
135 background-color: #1032cf;
136 color: #ffffff;
137 }
138
139 .cb-main-btn:hover {
140 background-color: #091b70;
141 color: #ffffff;
142 }
143
144 .cb-white-btn {
145 background-color: #ffffff;
146 color: #141414;
147 }
148
149 .cb-white-btn:hover {
150 color: #666666;
151 }
152
153 .cb-link-btn {
154 background-color: transparent;
155 color: #1032cf;
156 padding: 0;
157 }
158
159 .cb-link-btn:hover {
160 color: #091b70;
161 }
162
163 .cb-right-btn {
164 text-align: right;
165 }
166
167 .cb-success-btn {
168 background-color: #076646;
169 color: #ffffff;
170 text-align: center;
171 }
172
173 .cb-main__video {
174 position: relative;
175 width: 100%;
176 height: 0;
177 padding-bottom: 53%;
178 }
179
180 .cb-main__video iframe {
181 position: absolute;
182 width: 100%;
183 height: 100%;
184 }
185
186 input[type="text"] {
187 width: 100%;
188 border: 2px solid #d3d3d3;
189 border-radius: 7px;
190 padding: 8px 15px;
191 }
192
193 select#cookiebot-language {
194 width: 100%;
195 border: 2px solid #d3d3d3;
196 border-radius: 7px;
197 padding: 8px 15px;
198 max-width: initial;
199 }
200
201 input[type="radio"] {
202 width: 22px;
203 height: 22px;
204 border: 2px solid #141414;
205 }
206
207 input[type=radio]:checked::before {
208 width: 14px;
209 height: 14px;
210 margin: 2px;
211 background-color: #1032cf;
212 line-height: initial;
213 }
214
215 input[type="checkbox"] {
216 width: 22px;
217 height: 22px;
218 border: 2px solid #141414;
219 }
220
221 input[type=checkbox]:checked:before {
222 content: '';
223 width: 26px;
224 height: 26px;
225 margin: -4px;
226 line-height: initial;
227 background-color: #1032cf;
228 -webkit-mask-image: url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2020%2020%27%3E%3Cpath%20d%3D%27M14.83%204.89l1.34.94-5.81%208.38H9.02L5.78%209.67l1.34-1.25%202.57%202.4z%27%20fill%3D%27%233582c4%27%2F%3E%3C%2Fsvg%3E");
229 mask-image: url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2020%2020%27%3E%3Cpath%20d%3D%27M14.83%204.89l1.34.94-5.81%208.38H9.02L5.78%209.67l1.34-1.25%202.57%202.4z%27%20fill%3D%27%233582c4%27%2F%3E%3C%2Fsvg%3E");
230 -webkit-mask-size: contain;
231 mask-size: contain;
232 }
233
234 textarea {
235 width: 100%;
236 border: 2px solid #d3d3d3;
237 border-radius: 7px;
238 padding: 8px 15px;
239 }
240
241 .switch-checkbox {
242 display: flex;
243 align-items: center;
244 }
245
246 .switch-checkbox input[type=checkbox]{
247 height: 0;
248 width: 0;
249 visibility: hidden;
250 border: none;
251 min-width: initial;
252 float: left;
253 }
254
255 .switch-checkbox .switcher {
256 cursor: pointer;
257 width: 70px;
258 height: 40px;
259 margin-right: 10px;
260 background-color: #141414;
261 display: inline-block;
262 border-radius: 100px;
263 position: relative;
264 transition: 0.3s;
265 }
266
267 .switch-checkbox .switcher:after {
268 content: '';
269 position: absolute;
270 top: 5px;
271 left: 5px;
272 width: 30px;
273 height: 30px;
274 background-color: #fff;
275 border-radius: 90px;
276 transition: 0.3s;
277 }
278
279 .switch-checkbox input[type=checkbox]:checked + .switcher {
280 background-color: #1032cf;
281 }
282
283 .switch-checkbox input[type=checkbox]:checked + .switcher:after {
284 left: calc(100% - 5px);
285 transform: translateX(-100%);
286 }
287
288 .switch-checkbox .switcher:active:after {
289 width: 30px;
290 }
291
292 .cb-submit__msg {
293 box-sizing: border-box;
294 width: 468px;
295 position: fixed;
296 bottom: 50px;
297 right: 75px;
298 background-color: #076646;
299 color: #ffffff;
300 padding: 24px 72px;
301 font-size: 15px;
302 line-height: 24px;
303 font-weight: 600;
304 box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.25);
305 border-radius: 8px;
306 cursor: pointer;
307 z-index: 20;
308 }
309
310 .cb-submit__msg:before {
311 content: url(/wp-content/plugins/cookiebot/assets/img/icons/check.svg);
312 position: absolute;
313 left: 30px;
314 top: 25px;
315 }
316
317 .cb-submit__msg:after {
318 content: '';
319 position: absolute;
320 right: 30px;
321 font-weight: 700;
322 font-family: monospace;
323 font-size: 23px;
324 }