Browse Source

Update contacts manager table look.

pull/67/head
Evan Theurer 11 years ago
parent
commit
f4011efbe7
  1. 8
      src/styles/components/_contactsmanager.scss
  2. 6
      static/partials/contactsmanager.html

8
src/styles/components/_contactsmanager.scss

@ -63,10 +63,13 @@
} }
.editlist { .editlist {
max-height: 250px; max-height: 250px;
overflow-y: scroll; overflow-y: auto;
padding-right: 0px;
} }
.table { .table {
margin-bottom: 0px;
tr:first-child td {
border-top: none;
}
.picture { .picture {
width: 15%; width: 15%;
min-height: 46px; min-height: 46px;
@ -75,7 +78,6 @@
} }
.name { .name {
width: 70%; width: 70%;
padding-left: 5%;
text-align: left; text-align: left;
vertical-align: middle; vertical-align: middle;
} }

6
static/partials/contactsmanager.html

@ -5,8 +5,9 @@
</div> </div>
</div> </div>
<div class="row" ng-if="contacts.length > 0"> <div class="row" ng-if="contacts.length > 0">
<div class="col-xs-12 editlist"> <div class="col-xs-12">
<table class="table table-bordered table-hover table-condensed"> <div class="editlist nicescroll">
<table class="table table-hover table-condensed">
<tbody> <tbody>
<tr ng-repeat="contact in contacts"> <tr ng-repeat="contact in contacts">
<td class="picture"> <td class="picture">
@ -21,4 +22,5 @@
</table> </table>
</div> </div>
</div> </div>
</div>
</div> </div>

Loading…
Cancel
Save