* improve UI of views with table, finish task #2687,task #2749 and task #2762.

This commit is contained in:
Catouse
2016-11-24 15:47:47 +08:00
parent bdac0837e5
commit 8951f8d0af
45 changed files with 193 additions and 160 deletions
+4 -4
View File
@@ -19,7 +19,7 @@
<form method='post' target='hiddenwin'>
<div class='panel'>
<div class='panel-heading'><strong><?php echo $lang->mail->unsyncUser?></strong></div>
<table class='table table-condensed table-bordered active-disabled table-fixed tablesorter'>
<table class='table table-condensed table-bordered active-disabled table-fixed tablesorter table-selectable'>
<thead>
<tr>
<th class='w-80px'> <?php echo $lang->user->account;?></th>
@@ -31,7 +31,7 @@
<?php foreach($users as $key => $user):?>
<?php if($user->email and isset($members[$user->email])) continue;?>
<tr>
<td>
<td class='cell-id'>
<input type='checkbox' name='unsyncList[]' value='<?php echo $user->account;?>'/>
<?php echo $user->account?>
</td>
@@ -62,7 +62,7 @@
<form method='post' target='hiddenwin'>
<div class='panel'>
<div class='panel-heading'><strong><?php echo $lang->mail->syncedUser?></strong></div>
<table class='table table-condensed table-bordered active-disabled table-fixed tablesorter'>
<table class='table table-condensed table-bordered active-disabled table-fixed tablesorter table-selectable'>
<thead>
<tr>
<th class='w-80px'> <?php echo $lang->user->account;?></th>
@@ -74,7 +74,7 @@
<?php foreach($users as $key => $user):?>
<?php if(empty($user->email) or !isset($members[$user->email])) continue;?>
<tr>
<td>
<td class='cell-id'>
<input type='checkbox' name='syncedList[]' value='<?php echo $user->account;?>'/>
<?php echo $user->account?>
</td>