This commit is contained in:
Laurent Destailleur 2021-06-26 02:00:30 +02:00
parent 2fd47615eb
commit 720ea16bb1
3 changed files with 8 additions and 4 deletions

View File

@ -1909,9 +1909,7 @@ function top_menu($head, $title = '', $target = '', $disablejs = 0, $disablehead
}
$text .= '">';
$text .= '<span class="fa fa-question-circle atoplogin valignmiddle'.($helppresent ? ' '.$helppresent : '').'"></span>';
if ($helppresent) {
$text .= '<span class="fa fa-circle helppresentcircle"></span>';
}
$text .= '<span class="fa fa-circle helppresentcircle'.($helppresent ? '' : ' unvisible').'"></span>';
$text .= '</a>';
$toprightmenu .= $form->textwithtooltip('', $title, 2, 1, $text, 'login_block_elem', 2);
}

View File

@ -4708,7 +4708,9 @@ div.visible {
div.hidden, td.hidden, img.hidden, span.hidden, div.showifmore {
display: none;
}
.unvisible {
visibility: hidden;
}
tr.visible {
display: block;
}

View File

@ -4648,6 +4648,10 @@ div.hidden, td.hidden, img.hidden, span.hidden, div.showifmore {
display: none;
}
.unvisible {
visibility: hidden;
}
tr.visible {
display: block;
}