Added div to safegaurd against overflow (for aesthetic reasons).

This commit is contained in:
Anthony Calandra 2014-09-14 14:14:06 -04:00
parent 60722d84a8
commit c9c9e84171

View File

@ -1142,7 +1142,7 @@ function loadMemberContext($user, $display_custom_fields = false)
// Remove first element in $stars to get the badges. // Remove first element in $stars to get the badges.
array_shift($stars); array_shift($stars);
if (count($stars) > 0) { if (count($stars) > 0) {
$group_stars .= '</li><li><table>'; $group_stars .= '</li><li><div style="overflow: auto;"><table>';
$count = 0; $count = 0;
// Change this as you see fit... // Change this as you see fit...
$badgeTooltips = array( $badgeTooltips = array(
@ -1178,7 +1178,7 @@ function loadMemberContext($user, $display_custom_fields = false)
$group_stars .= '</tr>'; $group_stars .= '</tr>';
} }
$group_stars .= '</table></li>'; $group_stars .= '</table></div></li>';
} }
} }
// xxx end changed for awards // xxx end changed for awards