29
0
mirror of https://github.com/joomla/joomla-cms.git synced 2024-07-12 15:03:39 +00:00

[4.0] Extensions Discover (#25224)

Change the description of the extension from a tooltip to be visually displayed.

Remove the tooltip with the author url and email address

This improves accessibility
This commit is contained in:
Brian Teeman 2019-07-13 20:18:30 +01:00 committed by George Wilson
parent 811529edb6
commit c668651493

View File

@ -84,7 +84,8 @@ $listDirn = $this->escape($this->state->get('list.direction'));
</td>
<th scope="row">
<label for="cb<?php echo $i; ?>">
<span class="bold hasTooltip" title="<?php echo HTMLHelper::_('tooltipText', $item->name, $item->description, 0); ?>"><?php echo $item->name; ?></span>
<?php echo $item->name; ?>
<div class="small"><?php echo $item->description; ?></div>
</label>
</th>
<td>
@ -94,15 +95,13 @@ $listDirn = $this->escape($this->state->get('list.direction'));
<?php echo $item->type_translated; ?>
</td>
<td class="d-none d-md-table-cell">
<?php echo @$item->version != '' ? $item->version : '&#160;'; ?>
<?php echo !empty($item->version) ? $item->version : '&#160;'; ?>
</td>
<td class="d-none d-md-table-cell">
<?php echo @$item->creationDate != '' ? $item->creationDate : '&#160;'; ?>
<?php echo !empty($item->creationDate) ? $item->creationDate : '&#160;'; ?>
</td>
<td class="d-none d-md-table-cell">
<span class="editlinktip hasTooltip" title="<?php echo HTMLHelper::_('tooltipText', Text::_('COM_INSTALLER_AUTHOR_INFORMATION'), $item->author_info, 0); ?>">
<?php echo @$item->author != '' ? $item->author : '&#160;'; ?>
</span>
<?php echo !empty($item->author) ? $item->author : '&#160;'; ?>
</td>
<td class="d-none d-md-table-cell">
<?php echo $item->folder_translated; ?>