* adjust pager style.

This commit is contained in:
wyd621
2013-11-01 07:13:29 +00:00
parent 870c565403
commit cf42984d2f
3 changed files with 5 additions and 4 deletions
+1
View File
@@ -1,3 +1,4 @@
.mainTable { width:100%;}
.headTable { width:100%; height:30px; margin:0px; border:0px}
.contentDiv { height:195px; overflow-y:auto}
.mainTable select{padding:0px;margin:0px;height:20px;}
+2 -2
View File
@@ -71,7 +71,7 @@
</table>
</td>
<td class='w-p50' style='padding-left:0px;padding-right:0px;'>
<td class='w-p50' style='padding-left:0px;padding-right:5px;'>
<table class='mainTable'>
<caption style='padding-left:3px'><?php echo html::selectAll('bug', 'checkbox') . ' ' . $lang->build->linkBugs;?></caption>
<tr style='border-bottom:none'>
@@ -86,7 +86,7 @@
</td>
<td class='a-left nobr'><?php echo html::a($bugLink, $bug->title, '', "class='preview'");?></td>
<td class='w-80px'><?php echo $lang->bug->statusList[$bug->status];?></td>
<td class='w-80px'><?php echo $bug->status == 'resolved' ? substr($users[$bug->resolvedBy], 2) : html::select('resolvedBy[]', $users, $this->app->user->account, "class='w-70px'");?></td>
<td class='w-80px' style='padding:0px'><?php echo $bug->status == 'resolved' ? substr($users[$bug->resolvedBy], 2) : html::select('resolvedBy[]', $users, $this->app->user->account, "class='w-70px'");?></td>
</tr>
<?php endforeach;?>
</table>
+2 -2
View File
@@ -81,7 +81,7 @@
</table>
</td>
<td class='w-p50' style='padding-left:0px;padding-right:0px;'>
<td class='w-p50' style='padding-left:0px;padding-right:5px;'>
<table class='mainTable bd-none'>
<tr style='border-bottom:none'>
<td style='border-bottom:none; padding:0px'>
@@ -105,7 +105,7 @@
<td class='w-id a-left' id='bug'><input type='checkbox' name='bugs[]' value="<?php echo $bug->id;?>" <?php if(strpos(',' . $build->bugs . ',', ',' . $bug->id . ',') !== false) echo 'checked';?>> <?php echo sprintf('%03d', $bug->id);?></td>
<td class='a-left nobr'><?php echo html::a($bugLink, $bug->title, '', "class='preview'");?></td>
<td class='w-80px'><?php echo $lang->bug->statusList[$bug->status];?></td>
<td class='w-80px'><?php echo ($bug->status == 'resolved' or $bug->status == 'closed') ? substr($users[$bug->resolvedBy], 2) : html::select('resolvedBy[]', $users, $this->app->user->account, "class='w-70px'");?></td>
<td class='w-80px' style='padding:0px'><?php echo ($bug->status == 'resolved' or $bug->status == 'closed') ? substr($users[$bug->resolvedBy], 2) : html::select('resolvedBy[]', $users, $this->app->user->account, "class='w-70px'");?></td>
</tr>
<?php endforeach;?>
</table>