Move the allowed/denied indicator near the cookie information

This commit is contained in:
Amauri CHAMPEAUX 2021-05-09 14:40:41 +02:00
parent 74bff595d2
commit aaed3a8527
2 changed files with 11 additions and 2 deletions

View File

@ -13,6 +13,14 @@ span.tarteaucitronReadmoreSeparator {
}
/******/
/** 09052021 **/
.tarteaucitronName .tacCurrentStatus, .tarteaucitronName .tarteaucitronReadmoreSeparator {
color: #333!important;
font-size: 12px!important;
text-transform: capitalize;
}
/**************/
/** 27032021 **/
button.tarteaucitron-toggle-group {
display: block;

View File

@ -761,9 +761,10 @@ var tarteaucitron = {
html += '<li id="' + service.key + 'Line" class="tarteaucitronLine">';
html += ' <div class="tarteaucitronName">';
html += ' <span class="tarteaucitronH3" role="heading" aria-level="3">' + service.name + ' (<span id="tacCurrentStatus' + service.key + '">'+currentStatus+'</span>)</span>';
html += ' <span class="tarteaucitronH3" role="heading" aria-level="3">' + service.name + '</span>';
html += ' <span class="tacCurrentStatus" id="tacCurrentStatus' + service.key + '">'+currentStatus+'</span>';
html += ' <span class="tarteaucitronReadmoreSeparator"> - </span>';
html += ' <span id="tacCL' + service.key + '" class="tarteaucitronListCookies"></span><br/>';
if (tarteaucitron.parameters.moreInfoLink == true) {
var link = 'https://tarteaucitron.io/service/' + service.key + '/';