Cookie notice explaination and bypass links

This commit is contained in:
Jeremy Zhang
2019-02-18 01:00:21 +00:00
parent 212c013615
commit 598661735a
3 changed files with 38 additions and 0 deletions

View File

@ -632,6 +632,20 @@ a {
font-size: 12pt;
}
#third-party-cookies-notice .collapsible-header {
font-size: 1.3rem;
padding: 0.5rem;
}
#third-party-cookies-notice .collapsible-body {
background-color: #f5f4f4;
padding-top: 1rem;
}
#third-party-cookies-force-hide, #third-party-cookies-force-window {
cursor: pointer;
}
#nameplate {
cursor: pointer;
background: transparent;

View File

@ -2434,3 +2434,11 @@ window.setTimeout(function(){
window._3rd_party_test_step2_loaded(false);
}
}, 7*1000);
$("#third-party-cookies-force-hide").click(function () {
window._3rd_party_test_step2_loaded(true);
});
$("#third-party-cookies-force-window").click(function () {
window.open(window.location.href);
});