chrome: groups buttons were wrapping

This commit is contained in:
Girish Ramakrishnan
2019-11-07 09:39:54 -08:00
parent ff30d6d23a
commit 81aa94c8df

View File

@@ -435,11 +435,11 @@
</div>
<div class="row animateMeOpacity ng-hide" ng-show="ready">
<div class="col-lg-12">
<table class="table table-hover">
<table class="table table-hover" style="margin: 0;">
<thead>
<tr>
<th style="width: 45%">Name</th>
<th style="width: 50%">Users</th>
<th style="width: 49.5%" class="hidden-xs hidden-sm">Users</th>
<th style="width: 5%" class="text-right">Actions</th>
</tr>
</thead>
@@ -451,7 +451,7 @@
<td class="hand elide-table-cell" style="text-overflow: ellipsis; white-space: nowrap;" ng-click="groupEdit.show(group)">
{{ groupMembers(group) }}
</td>
<td class="text-right" style="vertical-align: bottom">
<td class="text-right no-wrap" style="vertical-align: bottom">
<button class="btn btn-xs btn-default" ng-click="groupEdit.show(group)" uib-tooltip="Edit Group"><i class="fa fa-pencil-alt"></i></button>
<button class="btn btn-xs btn-danger" ng-click="groupRemove.show(group)" uib-tooltip="Remove Group"><i class="far fa-trash-alt"></i></button>
</td>