Commit 00400ff35d0ec6833dfa6c272c02f52f4cfd32fe

Authored by Kuldeep Arora
1 parent ffe62a0efe
Exists in master

alignment

app/partials/ContactView/ContactView.html
... ... @@ -44,7 +44,7 @@
44 44 <div class="tab-content customer-table" style="margin:0px">
45 45 <div class="tab-pane active" id="companyView">
46 46 <table ng-table="displayContactList" class="table table-striped table-condensed" show-filter="true">
47   - <tr ng-repeat="row in $data | filter:searchText" style="cursor: pointer;" ui-sref="app.viewContact({id : row.id})">
  47 + <tr style="text-align: center;" ng-repeat="row in $data | filter:searchText" style="cursor: pointer;" ui-sref="app.viewContact({id : row.id})">
48 48 <td data-title="'Last Name'" filter="{lastName: 'text'}" sortable="'lastName'">
49 49 {{row.lastName}}
50 50 </td>
... ...
app/partials/FuelVendors/FuelVendors.html
... ... @@ -106,7 +106,7 @@
106 106 <div class="tab-content customer-table" style="margin:0px">
107 107 <div class="tab-pane active" id="companyView">
108 108 <table ng-table="displayVendorList" class="table table-striped table-condensed" show-filter="true">
109   - <tr ng-repeat="row in $data | filter:searchText" style="cursor: pointer;">
  109 + <tr style="text-align: center;" ng-repeat="row in $data | filter:searchText" style="cursor: pointer;">
110 110 <td data-title="'Vendor Name'" filter="{vendorName: 'text'}" sortable="'vendorName'" ui-sref="app.viewFuelVendor({id : row.id})">
111 111 {{row.vendorName}}
112 112 </td>
... ...
app/partials/customers/customers.html
... ... @@ -104,8 +104,8 @@
104 104 <div class="tab-content customer-table" style="margin:0px">
105 105 <div class="tab-pane active" id="companyView">
106 106 <table ng-table="displayCompanyList" class="table table-striped table-condensed" show-filter="true">
107   - <tr ng-repeat="row in $data | filter:searchText:strict"" style="cursor: pointer;">
108   - <td data-title="'Company Name'" filter="{companyName: 'text'}" sortable="'companyName'" ui-sref="app.viewCompany({id : row.id})">
  107 + <tr style="text-align: center;" ng-repeat="row in $data | filter:searchText:strict"" style="cursor: pointer;">
  108 + <td style="text-align: left;" data-title="'Company Name'" filter="{companyName: 'text'}" sortable="'companyName'" ui-sref="app.viewCompany({id : row.id})">
109 109 {{row.companyName}}
110 110 </td>
111 111 <td data-title="'Fleet'" filter="{companyAircraftSize: 'text'}" sortable="'companyAircraftSize'" ui-sref="app.viewCompany({id : row.id})">
... ...