From fdee7e961f4d40b0cb10ea7fac0f4d9f3f3ec6ab Mon Sep 17 00:00:00 2001
From: Dapeng <verydapeng@gmail.com>
Date: Wed, 21 Sep 2016 15:01:05 +0800
Subject: [PATCH] add responsive ui layout for owner list page

---
 .../scripts/app/owner-list/owner-list.template.html       | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/main/webapp/scripts/app/owner-list/owner-list.template.html b/src/main/webapp/scripts/app/owner-list/owner-list.template.html
index ab97d650..37603db6 100644
--- a/src/main/webapp/scripts/app/owner-list/owner-list.template.html
+++ b/src/main/webapp/scripts/app/owner-list/owner-list.template.html
@@ -10,10 +10,10 @@
     <thead>
     <tr>
         <th>Name</th>
-        <th>Address</th>
+        <th class="hidden-sm hidden-xs">Address</th>
         <th>City</th>
         <th>Telephone</th>
-        <th>Pets</th>
+        <th class="hidden-xs">Pets</th>
     </tr>
     </thead>
 
@@ -23,9 +23,9 @@
                 {{owner.firstName}} {{owner.lastName}}
             </a>
         </td>
-        <td>{{owner.address}}</td>
+        <td class="hidden-sm hidden-xs">{{owner.address}}</td>
         <td>{{owner.city}}</td>
         <td>{{owner.telephone}}</td>
-        <td><span ng-repeat="pet in owner.pets">{{pet.name + ' '}}</span></td>
+        <td class="hidden-xs"><span ng-repeat="pet in owner.pets">{{pet.name + ' '}}</span></td>
     </tr>
 </table>
\ No newline at end of file
-- 
GitLab