no-wrap on numbers
This commit is contained in:
parent
e42a3c1e55
commit
4cd1105ae6
|
@ -38,6 +38,11 @@
|
|||
width: auto !important;
|
||||
}
|
||||
|
||||
.no-wrap
|
||||
{
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
/** POPUPS ALERT **/
|
||||
.popup-alerts-container
|
||||
{
|
||||
|
|
|
@ -56,8 +56,8 @@
|
|||
<?php foreach ($receiveds as $received) { ?>
|
||||
<tr>
|
||||
<td><?php $this->s($received['id']); ?></td>
|
||||
<td><?php echo(\controllers\internals\Tool::phone_link($received['origin'])); ?></td>
|
||||
<td><?php echo(\controllers\internals\Tool::phone_link($received['destination'])); ?></td>
|
||||
<td class="no-wrap"><?php echo(\controllers\internals\Tool::phone_link($received['origin'])); ?></td>
|
||||
<td class="no-wrap"><?php echo(\controllers\internals\Tool::phone_link($received['destination'])); ?></td>
|
||||
<td><?php $this->s($received['text']); ?></td>
|
||||
<td><?php $this->s($received['at']); ?></td>
|
||||
<td><?php echo ($received['status'] == 'read' ? 'Lu' : 'Non lu'); ?></td>
|
||||
|
|
|
@ -56,8 +56,8 @@
|
|||
<?php foreach ($receiveds as $received) { ?>
|
||||
<tr>
|
||||
<td><?php $this->s($received['id']); ?></td>
|
||||
<td><?php echo(\controllers\internals\Tool::phone_link($received['origin'])); ?></td>
|
||||
<td><?php echo(\controllers\internals\Tool::phone_link($received['destination'])); ?></td>
|
||||
<td class="no-wrap"><?php echo(\controllers\internals\Tool::phone_link($received['origin'])); ?></td>
|
||||
<td class="no-wrap"><?php echo(\controllers\internals\Tool::phone_link($received['destination'])); ?></td>
|
||||
<td><?php $this->s($received['text']); ?></td>
|
||||
<td><?php $this->s($received['at']); ?></td>
|
||||
<td><?php echo ($received['status'] == 'read' ? 'Lu' : 'Non lu'); ?></td>
|
||||
|
|
|
@ -57,8 +57,8 @@
|
|||
<?php foreach ($sendeds as $sended) { ?>
|
||||
<tr>
|
||||
<td><?php $this->s($sended['id']); ?></td>
|
||||
<td><?php echo(\controllers\internals\Tool::phone_link($sended['origin'])); ?></td>
|
||||
<td><?php echo(\controllers\internals\Tool::phone_link($sended['destination'])); ?></td>
|
||||
<td class="no-wrap"><?php echo(\controllers\internals\Tool::phone_link($sended['origin'])); ?></td>
|
||||
<td class="no-wrap"><?php echo(\controllers\internals\Tool::phone_link($sended['destination'])); ?></td>
|
||||
<td><?php $this->s($sended['text']); ?></td>
|
||||
<td><?php $this->s($sended['at']); ?></td>
|
||||
|
||||
|
|
Loading…
Reference in New Issue