PluginProbe ʕ •ᴥ•ʔ
Cookiebot by Usercentrics – Automatic Cookie Banner for GDPR/CCPA & Google Consent Mode / 4.4.1
Cookiebot by Usercentrics – Automatic Cookie Banner for GDPR/CCPA & Google Consent Mode v4.4.1
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
global 1 year ago addons_page.css 2 years ago consent_mapping_table.css 1 year ago cookiebot_admin_main.css 1 year ago dashboard_page.css 1 year ago debug_info.css 3 years ago gtm_page.css 4 years ago multiple_page.css 3 years ago settings-page.css 1 year ago support_page.css 3 years ago
cookiebot_admin_main.css
442 lines
1 @font-face {
2 font-family: 'Inter';
3 src: url('../../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,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;
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: 20px 25px 15px;
24 border-bottom: 1px solid #d3d3d3;
25 }
26
27 .cb-body {
28 min-height: 80vh;
29 padding: 50px 25px 0;
30 }
31
32 .cb-body .cb-wrapper {
33 display: grid;
34 grid-template-columns: .9fr 3.1fr;
35 grid-column-gap: 30px;
36 align-items: start;
37 }
38
39 .cb-main__tabs {
40 display: grid;
41 grid-row-gap: 10px;
42 }
43
44 .cb-main__tabs_item {
45 border-radius: 7px;
46 }
47
48 .cb-main__tabs_item.active-item, .cb-main__tabs_item:hover {
49 background-color: #ECEFFE;
50 }
51
52 .cb-main__tabs_item a {
53 font-size: 15px;
54 color: #141414;
55 padding: 10px 15px;
56 text-decoration: none;
57 display: grid;
58 grid-template-columns: 1fr 8fr;
59 grid-column-gap: 5px;
60 align-items: center;
61 font-weight: 600;
62 }
63
64 .cb-main__tabs_item:hover a, .cb-main__tabs_item.active-item a {
65 color: #1032cf;
66 }
67
68 .cb-main__tabs__icon{
69 margin-right: 8px;
70 display: block;
71 width: 28px;
72 height: 28px;
73 background-color: #141414;
74 transition: background-color .25s ease;
75 -webkit-mask-size: contain;
76 mask-size: contain;
77 -webkit-mask-repeat: no-repeat;
78 mask-repeat: no-repeat;
79 -webkit-mask-position: center;
80 mask-position: center;
81 }
82
83 .cb-main__tabs_item:hover .cb-main__tabs__icon, .cb-main__tabs_item.active-item .cb-main__tabs__icon{
84 background-color: #1032cf;
85 }
86
87 .dashboard-icon {
88 -webkit-mask-image: url(../../img/icons/dashboard.svg);
89 mask-image: url(../../img/icons/dashboard.svg);
90 }
91
92 .settings-icon {
93 -webkit-mask-image: url(../../img/icons/settings.svg);
94 mask-image: url(../../img/icons/settings.svg);
95 }
96
97 .plugins-icon {
98 -webkit-mask-image: url(../../img/icons/plugins.svg);
99 mask-image: url(../../img/icons/plugins.svg);
100 }
101
102 .support-icon {
103 -webkit-mask-image: url(../../img/icons/support.svg);
104 mask-image: url(../../img/icons/support.svg);
105 }
106
107 .debug-icon {
108 -webkit-mask-image: url(../../img/icons/debug.svg);
109 mask-image: url(../../img/icons/debug.svg);
110 }
111
112 .cb-main__page_title {
113 font-size: 55px;
114 line-height: 65px;
115 font-weight: 700;
116 margin: 0 0 30px;
117 }
118
119 .cb-btn {
120 display: inline-block;
121 margin-top: 18px;
122 text-decoration: none;
123 padding: 15px;
124 font-size: 15px;
125 line-height: 20px;
126 font-weight: 500;
127 border-radius: 7px;
128 border: none;
129 cursor: pointer;
130 box-shadow: unset;
131 outline: unset;
132 }
133
134 .cb-btn.hidden {
135 display: none;
136 }
137
138 .cb-main-btn, .cb-main-btn:focus {
139 background-color: #1032cf;
140 color: #ffffff;
141 }
142
143 .cb-main-btn:hover {
144 background-color: #091b70;
145 color: #ffffff;
146 }
147
148 .cb-white-btn, .cb-white-btn:focus {
149 background-color: #ffffff;
150 color: #141414;
151 }
152
153 .cb-white-btn:hover {
154 color: #666666;
155 }
156
157 .cb-link-btn, .cb-link-btn:focus {
158 background-color: transparent;
159 color: #1032cf;
160 padding: 0;
161 width: fit-content;
162 }
163
164 .cb-link-btn:hover {
165 color: #091b70;
166 }
167
168 .cb-right-btn {
169 text-align: right;
170 }
171
172 .cb-success-btn, .cb-success-btn:focus {
173 background-color: #076646;
174 color: #ffffff;
175 text-align: center;
176 }
177
178 .cb-main__video {
179 position: relative;
180 width: 100%;
181 height: 0;
182 padding-bottom: 53%;
183 }
184
185 .cb-main__video iframe {
186 position: absolute;
187 width: 100%;
188 height: 100%;
189 }
190
191 input[type="text"] {
192 width: 100%;
193 border: 2px solid #d3d3d3;
194 border-radius: 7px;
195 padding: 8px 15px;
196 }
197
198 select#cookiebot-language {
199 width: 100%;
200 border: 2px solid #d3d3d3;
201 border-radius: 7px;
202 padding: 8px 15px;
203 max-width: initial;
204 }
205
206 input[type="radio"] {
207 width: 22px;
208 height: 22px;
209 border: 2px solid #141414;
210 }
211
212 input[type=radio]:checked::before {
213 width: 14px;
214 height: 14px;
215 margin: 2px;
216 background-color: #1032cf;
217 line-height: initial;
218 }
219
220 input[type="checkbox"] {
221 width: 22px;
222 height: 22px;
223 border: 2px solid #141414;
224 }
225
226 input[type=checkbox]:checked:before {
227 content: '';
228 width: 26px;
229 height: 26px;
230 margin: -4px;
231 line-height: initial;
232 background-color: #1032cf;
233 -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");
234 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");
235 -webkit-mask-size: contain;
236 mask-size: contain;
237 }
238
239 .cb-settings__config__data__inner label:not(.switch-checkbox) input[type="radio"],
240 .cb-settings__config__data__inner label:not(.switch-checkbox) input[type="checkbox"] {
241 margin-left: -30px;
242 }
243
244 textarea {
245 width: 100%;
246 border: 2px solid #d3d3d3;
247 border-radius: 7px;
248 padding: 8px 15px;
249 }
250
251 .switch-checkbox {
252 display: flex;
253 align-items: center;
254 }
255
256 .switch-checkbox input[type=checkbox]{
257 height: 0;
258 width: 0;
259 visibility: hidden;
260 border: none;
261 min-width: initial;
262 float: left;
263 }
264
265 .switch-checkbox .switcher {
266 cursor: pointer;
267 width: 70px;
268 min-width: 70px;
269 height: 40px;
270 margin-right: 10px;
271 background-color: #141414;
272 display: inline-block;
273 border-radius: 100px;
274 position: relative;
275 transition: 0.3s;
276 }
277
278 .switch-checkbox .switcher:after {
279 content: '';
280 position: absolute;
281 top: 5px;
282 left: 5px;
283 width: 30px;
284 height: 30px;
285 background-color: #fff;
286 border-radius: 90px;
287 transition: 0.3s;
288 }
289
290 .switch-checkbox input[type=checkbox]:checked + .switcher {
291 background-color: #1032cf;
292 }
293
294 .switch-checkbox input[type=checkbox]:checked + .switcher:after {
295 left: calc(100% - 5px);
296 transform: translateX(-100%);
297 }
298
299 .switch-checkbox .switcher:active:after {
300 width: 30px;
301 }
302
303 .switch-checkbox input[type=checkbox]:disabled + .switcher {
304 opacity: .5;
305 }
306
307 .cb-submit__msg {
308 box-sizing: border-box;
309 width: 468px;
310 position: fixed;
311 bottom: 50px;
312 right: 75px;
313 background-color: #076646;
314 color: #ffffff;
315 padding: 24px 72px;
316 font-size: 15px;
317 line-height: 24px;
318 font-weight: 600;
319 box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.25);
320 border-radius: 8px;
321 cursor: pointer;
322 z-index: 20;
323 }
324
325 .cb-submit__msg:before {
326 content: url(../../img/icons/check.svg);
327 position: absolute;
328 left: 30px;
329 top: 25px;
330 }
331
332 .cb-submit__msg:after {
333 content: '';
334 position: absolute;
335 right: 30px;
336 font-weight: 700;
337 font-family: monospace;
338 font-size: 23px;
339 }
340
341 .cb-settings__selector__container {
342 position: relative;
343 }
344
345 .cb-settings__selector__container .cb-settings__selector-selector {
346 position: relative;
347 width: 100%;
348 background-color: #ffffff;
349 color: #141414;
350 border: 2px solid #d3d3d3;
351 border-radius: 7px;
352 padding: 8px 15px;
353 box-sizing: border-box;
354 font-size: 15px;
355 font-weight: 600;
356 line-height: 27px;
357 min-height: 30px;
358 cursor: pointer;
359 }
360
361 .cb-settings__selector__container .cb-settings__selector-selector:after {
362 content: url(../../img/icons/down.svg);
363 position: absolute;
364 top: 7px;
365 right: 12px;
366 }
367
368 .cb-settings__selector__container .cb-settings__selector-list-container {
369 position: absolute;
370 bottom: 0;
371 width: 100%;
372 overflow: hidden;
373 background-color: #ffffff;
374 box-shadow: 0px 8px 24px rgb(0 0 0 / 25%);
375 border-radius: 8px;
376 box-sizing: border-box;
377 padding: 20px 16px;
378 }
379
380 .cb-settings__selector__container .cb-settings__selector-veil {
381 position: fixed;
382 top: 0;
383 bottom: 0;
384 right: 0;
385 left: 0;
386 z-index: 0;
387 }
388
389 .cb-settings__selector__container .cb-settings__selector-search {
390 position: relative;
391 margin-bottom: 16px;
392 padding: 5px 8px;
393 z-index: 1;
394 }
395
396 .cb-settings__selector__container .cb-settings__selector-list {
397 display: flex;
398 flex-direction: column;
399 height: 160px;
400 overflow-y: scroll;
401 }
402
403
404 .cb-settings__selector__container .cb-settings__selector-list > .cb-settings__selector-list-item {
405 position: relative;
406 font-size: 15px;
407 font-weight: 600;
408 line-height: 24px;
409 padding: 10px 15px;
410 margin-bottom: 3px;
411 border-radius: 8px;
412 cursor: pointer;
413 }
414
415 .cb-settings__selector__container .cb-settings__selector-list > .cb-settings__selector-list-item:hover {
416 background-color: #f2f2f2;
417 color: #1032CF;
418 }
419
420 .cb-settings__selector__container .cb-settings__selector-list > .cb-settings__selector-list-item.selected{
421 background-color: #ECEFFE;
422 color: #1032CF;
423 order: -1;
424 }
425
426 .cb-settings__selector__container .cb-settings__selector-list > .cb-settings__selector-list-item.selected:after {
427 content: '';
428 position: absolute;
429 top: 10px;
430 right: 15px;
431 width: 20px;
432 height: 20px;
433 background-color: #1032cf;
434 -webkit-mask-size: contain;
435 mask-size: contain;
436 -webkit-mask-repeat: no-repeat;
437 mask-repeat: no-repeat;
438 -webkit-mask-position: center;
439 mask-position: center;
440 -webkit-mask-image: url(../../img/icons/check.svg);
441 mask-image: url(../../img/icons/check.svg);
442 }