Integration
Allow more customization of the zaraz consent box.
Comments
The Zaraz Consent box does not seem to follow UX-standards, and it would be great if we had more control over the UX and UI of the pop-up and details.
I am aware that CSS would allow to overwrite certain defaults, but f.e. an option align bottom-left / center/ right would already be a nice addition.
Some of my CSS below, but this is sort of ‘fighting against’ the current design
dialog::backdrop{
backdrop-filter: unset;
background-color:unset;
}
.cf_modal {
position: fixed; /* Fixed positioning /
bottom: 20px; / 20px from the bottom /
left: 20px; / 20px from the left /
margin: 0; / Remove auto margins */
}
.cf_button{
border-radius:unset;
background-color:rgb(0, 188, 212);
}
.cf_button–save{
position:absolute;
left:30%;
background-color:transparent;
border:2px solid rgb(0, 188, 212);
}
.cf_button–accept{
position:relative;
right:20px;
}
.cf_button–reject{
background-color:transparent;
border:2px solid rgb(0, 188, 212);
position:absolute;
left:20px;
}