Add text MonoSpace in places where it needs to be, reduced info icon size in clients, Fixed navigation highlight for files when in document details and is asset details

This commit is contained in:
johnnyq
2026-06-25 18:06:39 -04:00
parent a53d828a73
commit c16a1753a5
29 changed files with 88 additions and 88 deletions

View File

@@ -160,7 +160,7 @@ $num_rows = mysqli_fetch_row(mysqli_query($mysqli, "SELECT FOUND_ROWS()"));
}
$vendor_account_number = nullable_htmlentities($row['vendor_account_number']);
if ($vendor_account_number) {
$vendor_account_number_display = "<div class='text-secondary'>Account #: $vendor_account_number</div>";
$vendor_account_number_display = "<div class='text-secondary'>Account #: <span class='text-monospace'>$vendor_account_number</span></div>";
} else {
$vendor_account_number_display = '';
}
@@ -207,7 +207,7 @@ $num_rows = mysqli_fetch_row(mysqli_query($mysqli, "SELECT FOUND_ROWS()"));
<i class="fas fa-fw fa-2x fa-building text-dark mr-2"></i>
<div class="media-body">
<div><?php echo $vendor_name; ?></div>
<div><?php echo $vendor_account_number_display; ?></div>
<div><small><?php echo $vendor_account_number_display; ?><small></div>
</div>
</div>
</a>