Merge pull request #517 from wknet123/master

Updates for styles of replication and add 'tag' field for log list.
This commit is contained in:
kun wang 2016-07-12 16:30:02 +08:00 committed by GitHub
commit 407323b57c
3 changed files with 7 additions and 6 deletions

View File

@ -54,7 +54,7 @@
cursor: all-scroll; cursor: all-scroll;
} }
#down-pane { #down-pane {
height: 450px; height: 530px;
} }
.sub-pane-split { .sub-pane-split {

View File

@ -31,10 +31,11 @@
<div class="table-head-container"> <div class="table-head-container">
<table class="table table-pane table-header"> <table class="table table-pane table-header">
<thead> <thead>
<th width="14%">// 'username' | tr //</th> <th width="18%">// 'username' | tr //</th>
<th width="32%">// 'repository_name' | tr //</th> <th width="28%">// 'repository_name' | tr //</th>
<th width="15%">// 'tag' | tr //</th>
<th width="14%">// 'operation' | tr //</th> <th width="14%">// 'operation' | tr //</th>
<th width="40%">// 'timestamp' | tr //</th> <th width="25%">// 'timestamp' | tr //</th>
</thead> </thead>
</table> </table>
</div> </div>
@ -42,7 +43,7 @@
<table class="table table-pane"> <table class="table table-pane">
<tbody> <tbody>
<tr ng-repeat="log in vm.logs"> <tr ng-repeat="log in vm.logs">
<td width="14%">//log.username//</td><td width="32%">//log.repo_name//</td><td width="14%">//log.operation//</td><td width="40%">//log.op_time | dateL : 'YYYY-MM-DD HH:mm:ss'//</td> <td width="18%">//log.username//</td><td width="28%">//log.repo_name//</td><td width="15%">//log.repo_tag//</td><td width="14%">//log.operation//</td><td width="25%">//log.op_time | dateL : 'YYYY-MM-DD HH:mm:ss'//</td>
</tr> </tr>
</tbody> </tbody>
</table> </table>

View File

@ -79,7 +79,7 @@
<hr class="hr-line"/> <hr class="hr-line"/>
<div class="form-inline"> <div class="form-inline">
<div class="input-group"> <div class="input-group">
<input type="text" id="txtSearchJobInput" class="form-control" placeholder="" ng-model="vm.replicationJobName" size="30"> <input type="text" id="txtSearchJobInput" class="form-control" placeholder="" ng-model="vm.replicationJobName" size="20">
<span class="input-group-btn"> <span class="input-group-btn">
<button class="btn btn-primary" type="button" ng-click="vm.searchReplicationJob()" loading-progress hide-target = "true" toggle-in-progress="vm.searchJobTIP"><span class="glyphicon glyphicon-search"></span></button> <button class="btn btn-primary" type="button" ng-click="vm.searchReplicationJob()" loading-progress hide-target = "true" toggle-in-progress="vm.searchJobTIP"><span class="glyphicon glyphicon-search"></span></button>
</span> </span>