Fix issues with board list

Signed-off-by: Julius Härtl <jus@bitgrid.net>
This commit is contained in:
Julius Härtl
2017-06-30 13:11:55 +02:00
committed by Julius Härtl
parent 227f510d73
commit 2b1bac9a2f
2 changed files with 5 additions and 4 deletions

View File

@@ -755,11 +755,12 @@ input.input-inline {
thead td { thead td {
opacity: .5; opacity: .5;
padding: 15px;
} }
td { td {
padding: 0 10px; padding: 0 10px;
border-bottom: 1px solid $color-lightgrey; border-bottom: 1px solid $color-grey;
.board-bullet { .board-bullet {
width: 32px; width: 32px;
@@ -804,7 +805,7 @@ input.input-inline {
} }
.icon { .icon {
padding: 22px; padding: 25px;
margin: 0 0 0 auto; margin: 0 0 0 auto;
} }

View File

@@ -20,8 +20,8 @@
<tbody> <tbody>
<tr data-ng-repeat="b in boardservice.sorted" ng-class="{deleted: b.deletedAt > 0}"> <tr data-ng-repeat="b in boardservice.sorted" ng-class="{deleted: b.deletedAt > 0}">
<td ng-click="gotoBoard(b)"> <td ng-click="gotoBoard(b)">
<span class="board-bullet" <div class="board-bullet"
style="background-color:#{{b.color}};"> </span> style="background-color:#{{b.color}};"> </div>
</td> </td>
<td> <td>
<div ng-click="gotoBoard(b)" ng-show="!b.status.edit">{{ b.title }}</div> <div ng-click="gotoBoard(b)" ng-show="!b.status.edit">{{ b.title }}</div>