29
0
mirror of https://github.com/joomla/joomla-cms.git synced 2024-06-25 14:53:01 +00:00

Hide columns in mobile view (#42728)

This commit is contained in:
Quy 2024-02-29 22:20:53 -08:00 committed by GitHub
parent 4e1e1656ce
commit d72d639197
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -58,10 +58,10 @@ $wa->useScript('keepalive')
<th scope="col" class="title"> <th scope="col" class="title">
<?php echo HTMLHelper::_('searchtools.sort', 'COM_CACHE_GROUP', 'group', $listDirn, $listOrder); ?> <?php echo HTMLHelper::_('searchtools.sort', 'COM_CACHE_GROUP', 'group', $listDirn, $listOrder); ?>
</th> </th>
<th scope="col" class="w-10 text-center"> <th scope="col" class="w-10 text-center d-none d-md-table-cell">
<?php echo HTMLHelper::_('searchtools.sort', 'COM_CACHE_NUMBER_OF_FILES', 'count', $listDirn, $listOrder); ?> <?php echo HTMLHelper::_('searchtools.sort', 'COM_CACHE_NUMBER_OF_FILES', 'count', $listDirn, $listOrder); ?>
</th> </th>
<th scope="col" class="w-10 text-end"> <th scope="col" class="w-10 text-end d-none d-md-table-cell">
<?php echo HTMLHelper::_('searchtools.sort', 'COM_CACHE_SIZE', 'size', $listDirn, $listOrder); ?> <?php echo HTMLHelper::_('searchtools.sort', 'COM_CACHE_SIZE', 'size', $listDirn, $listOrder); ?>
</th> </th>
</tr> </tr>
@ -76,10 +76,10 @@ $wa->useScript('keepalive')
<th scope="row"> <th scope="row">
<?php echo $this->escape($item->group); ?> <?php echo $this->escape($item->group); ?>
</th> </th>
<td class="text-center"> <td class="text-center d-none d-md-table-cell">
<?php echo $item->count; ?> <?php echo $item->count; ?>
</td> </td>
<td class="text-end"> <td class="text-end d-none d-md-table-cell">
<?php echo '&#x200E;' . HTMLHelper::_('number.bytes', $item->size); ?> <?php echo '&#x200E;' . HTMLHelper::_('number.bytes', $item->size); ?>
</td> </td>
</tr> </tr>