GUAC-1133: Improve session table spacing.

This commit is contained in:
Michael Jumper
2015-03-19 14:52:42 -07:00
parent 4ae7e6072f
commit e8d9a671a4
2 changed files with 9 additions and 4 deletions

View File

@@ -36,5 +36,10 @@
.manage table.session-list th,
.manage table.session-list td {
border: 1px solid #AAA;
padding: 0.25em;
}
padding: 0.5em 1em;
}
.manage table.session-list .select-session {
min-width: 2em;
text-align: center;
}

View File

@@ -40,7 +40,7 @@ THE SOFTWARE.
<table class="session-list">
<thead>
<tr>
<th></th>
<th class="select-session"></th>
<th>{{'MANAGE_SESSION.TABLE_HEADER_SESSION_USERNAME' | translate}}</th>
<th>{{'MANAGE_SESSION.TABLE_HEADER_SESSION_STARTDATE' | translate}}</th>
<th>{{'MANAGE_SESSION.TABLE_HEADER_SESSION_REMOTEHOST' | translate}}</th>
@@ -49,7 +49,7 @@ THE SOFTWARE.
</thead>
<tbody>
<tr ng-repeat="wrapper in wrapperPage" class="session">
<td>
<td class="select-session">
<input ng-change="wrapperSelectionChange(wrapper)" type="checkbox" ng-model="wrapper.checked" />
</td>
<td>{{wrapper.tunnel.username}}</td>