commit
05f98f423c
|
|
@ -110,7 +110,7 @@ div#tarteaucitronServices {
|
|||
text-align: left !important;
|
||||
}
|
||||
|
||||
.tarteaucitronName h2 {
|
||||
.tarteaucitronName .tarteaucitronH2 {
|
||||
max-width: 80%;
|
||||
}
|
||||
|
||||
|
|
@ -180,6 +180,10 @@ div#tarteaucitronServices {
|
|||
padding: 0;
|
||||
}
|
||||
|
||||
#tarteaucitron .tarteaucitronH1, #tarteaucitron .tarteaucitronH2, #tarteaucitron .tarteaucitronH3, #tarteaucitron .tarteaucitronH4, #tarteaucitron .tarteaucitronH5, #tarteaucitron .tarteaucitronH6 {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.cookie-list {
|
||||
list-style: none;
|
||||
padding: 0;
|
||||
|
|
@ -205,20 +209,20 @@ div#tarteaucitronServices {
|
|||
vertical-align: initial;
|
||||
}
|
||||
|
||||
#tarteaucitronRoot h1 {
|
||||
#tarteaucitronRoot .tarteaucitronH1 {
|
||||
font-size: 1.5em;
|
||||
text-align: center;
|
||||
color: #fff;
|
||||
margin: 15px 0 28px;
|
||||
}
|
||||
|
||||
#tarteaucitronRoot h2 {
|
||||
#tarteaucitronRoot .tarteaucitronH2 {
|
||||
display: inline-block;
|
||||
margin: 12px 0 0 10px;
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
h2#tarteaucitronCookiesNumberBis {
|
||||
#tarteaucitronCookiesNumberBis.tarteaucitronH2 {
|
||||
margin-left: 0;
|
||||
}
|
||||
|
||||
|
|
@ -293,7 +297,7 @@ h2#tarteaucitronCookiesNumberBis {
|
|||
position: relative;
|
||||
}
|
||||
|
||||
#tarteaucitronCookiesList h3.tarteaucitronTitle {
|
||||
#tarteaucitronCookiesList .tarteaucitronH3.tarteaucitronTitle {
|
||||
width: 100%;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
|
@ -432,7 +436,7 @@ h2#tarteaucitronCookiesNumberBis {
|
|||
font-size: 12px;
|
||||
}
|
||||
|
||||
#tarteaucitron h3 {
|
||||
#tarteaucitron .tarteaucitronH3 {
|
||||
font-size: 18px;
|
||||
}
|
||||
|
||||
|
|
@ -738,7 +742,7 @@ a.tarteaucitronSelfLink {
|
|||
display: block;
|
||||
text-shadow: 0 0 14px white;
|
||||
text-transform: uppercase;
|
||||
}.tarteaucitronMainLine h2 {
|
||||
}.tarteaucitronMainLine .tarteaucitronH2 {
|
||||
font-size: 1.2em!important;
|
||||
margin-top: 4px!important;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -278,7 +278,7 @@ var tarteaucitron = {
|
|||
html += ' </button>';
|
||||
html += ' <div id="tarteaucitronServices">';
|
||||
html += ' <div class="tarteaucitronLine tarteaucitronMainLine" id="tarteaucitronMainLineOffset">';
|
||||
html += ' <h1 id="dialogTitle">'+ tarteaucitron.lang.title + '</h1>';
|
||||
html += ' <span id="dialogTitle" class="tarteaucitronH1">'+ tarteaucitron.lang.title + '</span>';
|
||||
html += ' <div id="tarteaucitronInfo" class="tarteaucitronInfoBox">';
|
||||
html += ' ' + tarteaucitron.lang.disclaimer;
|
||||
if (tarteaucitron.parameters.privacyUrl !== "") {
|
||||
|
|
@ -289,7 +289,7 @@ var tarteaucitron = {
|
|||
}
|
||||
html += ' </div>';
|
||||
html += ' <div class="tarteaucitronName">';
|
||||
html += ' <h2>' + tarteaucitron.lang.all + '</h2>';
|
||||
html += ' <span class="tarteaucitronH2">' + tarteaucitron.lang.all + '</span>';
|
||||
html += ' </div>';
|
||||
html += ' <div class="tarteaucitronAsk" id="tarteaucitronScrollbarAdjust">';
|
||||
html += ' <button id="tarteaucitronAllAllowed" class="tarteaucitronAllow" onclick="tarteaucitron.userInterface.respondAll(true);">';
|
||||
|
|
@ -386,7 +386,7 @@ var tarteaucitron = {
|
|||
html += ' ' + tarteaucitron.lang.close;
|
||||
html += ' </button>';
|
||||
html += ' <div class="tarteaucitronCookiesListMain" id="tarteaucitronCookiesTitle">';
|
||||
html += ' <h2 id="tarteaucitronCookiesNumberBis">0 cookie</h2>';
|
||||
html += ' <span id="tarteaucitronCookiesNumberBis" class="tarteaucitronH2">0 cookie</span>';
|
||||
html += ' </div>';
|
||||
html += ' <div id="tarteaucitronCookiesList"></div>';
|
||||
html += ' </div>';
|
||||
|
|
@ -519,7 +519,7 @@ var tarteaucitron = {
|
|||
|
||||
html += '<li id="' + service.key + 'Line" class="tarteaucitronLine">';
|
||||
html += ' <div class="tarteaucitronName">';
|
||||
html += ' <h3>' + service.name + '</h3>';
|
||||
html += ' <span class="tarteaucitronH3">' + service.name + '</span>';
|
||||
html += ' <span id="tacCL' + service.key + '" class="tarteaucitronListCookies"></span><br/>';
|
||||
if (tarteaucitron.parameters.moreInfoLink == true) {
|
||||
html += ' <a href="https://opt-out.ferank.eu/service/' + service.key + '/" target="_blank" rel="noopener" title="'+ tarteaucitron.lang.cookieDetail + ' ' + service.name + ' ' + tarteaucitron.lang.ourSite + ' ' + tarteaucitron.lang.newWindow +'">';
|
||||
|
|
@ -1178,16 +1178,16 @@ var tarteaucitron = {
|
|||
if (tarteaucitron.cookie.owner[name] !== undefined && tarteaucitron.cookie.owner[name].join(' // ') !== savedname) {
|
||||
savedname = tarteaucitron.cookie.owner[name].join(' // ');
|
||||
html += '<div class="tarteaucitronHidden">';
|
||||
html += ' <h3 class="tarteaucitronTitle">';
|
||||
html += ' <span class="tarteaucitronTitle tarteaucitronH3">';
|
||||
html += ' ' + tarteaucitron.cookie.owner[name].join(' // ');
|
||||
html += ' </h3>';
|
||||
html += ' </span>';
|
||||
html += '</div><ul class="cookie-list">';
|
||||
} else if (tarteaucitron.cookie.owner[name] === undefined && host !== savedname) {
|
||||
savedname = host;
|
||||
html += '<div class="tarteaucitronHidden">';
|
||||
html += ' <h3 class="tarteaucitronTitle">';
|
||||
html += ' <span class="tarteaucitronTitle tarteaucitronH3">';
|
||||
html += ' ' + host;
|
||||
html += ' </h3>';
|
||||
html += ' </span>';
|
||||
html += '</div><ul class="cookie-list">';
|
||||
}
|
||||
html += '<li class="tarteaucitronCookiesListMain">';
|
||||
|
|
|
|||
Loading…
Reference in New Issue