* change the width of input box of contact list name.

This commit is contained in:
chenfeiCF
2016-05-04 11:13:22 +08:00
parent 3154ef97f2
commit 9880310b62
+4 -4
View File
@@ -40,23 +40,23 @@
<div class='panel-body'>
<table class='table table-form'>
<tr>
<th><?php echo $lang->user->contacts->listName;?></th>
<th class='w-80px'><?php echo $lang->user->contacts->listName;?></th>
<td>
<?php
if($mode == 'new')
{
echo html::input('newList', '', "class='form-control'");
echo html::input('newList', '', "class='form-control w-300px'");
}
else
{
echo html::input('listName', $list->listName, "class='form-control'");
echo html::input('listName', $list->listName, "class='form-control w-300px'");
echo html::hidden('listID', $list->id);
}
?>
</td>
</tr>
<tr>
<th class='w-80px'><?php echo $lang->user->contacts->selectedUsers;?></th>
<th><?php echo $lang->user->contacts->selectedUsers;?></th>
<td>
<?php
if($mode == 'new')