Skip to content

Commit

Permalink
Adjust Column Widths
Browse files Browse the repository at this point in the history
Adjust the column widths to prevent breaking onto two lines of the longer date format now used.
  • Loading branch information
justinherrin committed Sep 24, 2015
1 parent dde0af6 commit 27f4ffb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions administrator/modules/mod_logged/tmpl/default.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<div class="row-striped">
<?php foreach ($users as $user) : ?>
<div class="row-fluid">
<div class="span9">
<div class="span7">
<?php if ($user->client_id == 0) : ?>
<a class="hasTooltip" title="<?php echo JHtml::tooltipText('MOD_LOGGED_LOGOUT'); ?>" href="<?php echo $user->logoutLink; ?>" class="btn btn-danger btn-mini">
<span class="icon-remove icon-white" title="<?php echo JText::_('JLOGOUT'); ?>"></span>
Expand All @@ -39,7 +39,7 @@
<?php endif; ?>
</small>
</div>
<div class="span3">
<div class="span5">
<span class="small hasTooltip" title="<?php echo JHtml::tooltipText('MOD_LOGGED_LAST_ACTIVITY'); ?>">
<span class="icon-calendar"></span> <?php echo JHtml::_('date', $user->time, JText::_('DATE_FORMAT_LC2')); ?>
</span>
Expand Down

0 comments on commit 27f4ffb

Please sign in to comment.