mirror of
https://github.com/gyurix1968/guacamole-client.git
synced 2025-09-07 05:31:22 +00:00
GUAC-1133: Improve session table spacing.
This commit is contained in:
@@ -36,5 +36,10 @@
|
|||||||
.manage table.session-list th,
|
.manage table.session-list th,
|
||||||
.manage table.session-list td {
|
.manage table.session-list td {
|
||||||
border: 1px solid #AAA;
|
border: 1px solid #AAA;
|
||||||
padding: 0.25em;
|
padding: 0.5em 1em;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.manage table.session-list .select-session {
|
||||||
|
min-width: 2em;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
|
@@ -40,7 +40,7 @@ THE SOFTWARE.
|
|||||||
<table class="session-list">
|
<table class="session-list">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th></th>
|
<th class="select-session"></th>
|
||||||
<th>{{'MANAGE_SESSION.TABLE_HEADER_SESSION_USERNAME' | translate}}</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_STARTDATE' | translate}}</th>
|
||||||
<th>{{'MANAGE_SESSION.TABLE_HEADER_SESSION_REMOTEHOST' | translate}}</th>
|
<th>{{'MANAGE_SESSION.TABLE_HEADER_SESSION_REMOTEHOST' | translate}}</th>
|
||||||
@@ -49,7 +49,7 @@ THE SOFTWARE.
|
|||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
<tr ng-repeat="wrapper in wrapperPage" class="session">
|
<tr ng-repeat="wrapper in wrapperPage" class="session">
|
||||||
<td>
|
<td class="select-session">
|
||||||
<input ng-change="wrapperSelectionChange(wrapper)" type="checkbox" ng-model="wrapper.checked" />
|
<input ng-change="wrapperSelectionChange(wrapper)" type="checkbox" ng-model="wrapper.checked" />
|
||||||
</td>
|
</td>
|
||||||
<td>{{wrapper.tunnel.username}}</td>
|
<td>{{wrapper.tunnel.username}}</td>
|
||||||
|
Reference in New Issue
Block a user