Skip to content

Commit

Permalink
QA: Restore inline tooltip help links
Browse files Browse the repository at this point in the history
  • Loading branch information
TheWitness committed Feb 19, 2025
1 parent 3a66ba0 commit fb05ea4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion include/global_arrays.php
Original file line number Diff line number Diff line change
Expand Up @@ -1178,7 +1178,7 @@
__('Configuration') => 'fa fa-sliders-h',
__('Utilities') => 'fa fa-cog',
__('External Links') => 'fa fa-external-link-alt',
__('Support') => 'far fa-question-circle-circle',
__('Support') => 'fa fa-question-circle',
__('Troubleshooting') => 'fa fa-bug'
);

Expand Down
2 changes: 1 addition & 1 deletion lib/html_utility.php
Original file line number Diff line number Diff line change
Expand Up @@ -1486,7 +1486,7 @@ function get_current_graph_end() {
*/
function display_tooltip($text) {
if ($text != '') {
return '<div class="cactiTooltipHint far fa-question-circle-circle-filled"><span style="display:none;">' . $text . "</span></div>\n";
return '<div class="cactiTooltipHint fa fa-question-circle"><span style="display:none;">' . $text . "</span></div>\n";
} else {
return '';
}
Expand Down
2 changes: 1 addition & 1 deletion lib/installer.php
Original file line number Diff line number Diff line change
Expand Up @@ -2435,7 +2435,7 @@ public function processStepBinaryLocations() {
$form_check_string = '';

/* draw the actual header and textbox on the form */
print "<div class='formRow $class'><div class='formColumnLeft'><div class='formFieldName'>" . $array['friendly_name'] . "<div class='formTooltip'><div class='cactiTooltipHint far fa-question-circle-circle-filled'><span style='display:none;'>" . $array['description'] . '</span></div></div></div></div>';
print "<div class='formRow $class'><div class='formColumnLeft'><div class='formFieldName'>" . $array['friendly_name'] . "<div class='formTooltip'><div class='cactiTooltipHint fa fa-question-circle'><span style='display:none;'>" . $array['description'] . '</span></div></div></div></div>';

print "<div class='formColumnRight'><div class='formData'>";

Expand Down

0 comments on commit fb05ea4

Please sign in to comment.