Dtfl Teams Tabelle Logo and size fixed

This commit is contained in:
Daniel Goerlich
2021-06-09 23:16:22 +02:00
parent 2ce0927aa1
commit c1983a1c8a
@@ -2412,7 +2412,7 @@ global $params;
?>
<!-- Tabelle Mannschaften -->
<table class="uk-table uk-table-hover uk-table-divider uk-table-middle rangliste-width contentpaneopen<?php echo $params->get('pageclass_sfx'); ?>">
<table class="uk-table uk-table-hover uk-table-divider uk-table-middle dtfl-table-small contentpaneopen<?php echo $params->get('pageclass_sfx'); ?>">
<tr class="sectiontableheader<?php echo $params->get('pageclass_sfx'); ?>">
<th><strong><?php echo JText::_('COM_SPORTSMANAGER_TEAM_NAME'); ?></strong></th>
<?php
@@ -2451,13 +2451,13 @@ global $params;
<?php
if ($bilder_anzeigen) {
?>
<td width="29">
<td width="50">
<?php
$bild = bildHTML("mannschaften", $row->team_id, 28, 28, 0, 0, 'border="0"');
$bild = bildHTML("mannschaften", $row->team_id, 50, 50, 0, 0, 'border="0"');
if ($bild != null)
echo $bild;
else if ($row->verein_id != null) {
$bild = bildHTML("vereine", $row->verein_id, 28, 28, 0, 0, 'border="0"');
$bild = bildHTML("vereine", $row->verein_id, 50, 50, 0, 0, 'border="0"');
if ($bild != null)
echo $bild;
}