This commit is contained in:
Gustavo Cortez 2014-07-07 20:25:25 -03:00
commit b25a781add
2 changed files with 4 additions and 4 deletions

View file

@ -647,9 +647,8 @@ ul.pagination li.current a:hover, ul.pagination li.current a:focus {
} }
.addressbook-disabled td { .addressbook-disabled td {
color: #ccc; color: #ccc;
text-decoration: line-through;
} }
.addressbook-disabled a { .addressbook-disabled td a {
color: #7A9FB6; color: #7A9FB6;
} }

View file

@ -774,7 +774,7 @@
<th>Address</td> <th>Address</td>
<th>Creator</td> <th>Creator</td>
<th>Date</td> <th>Date</td>
<th>Hidden</td> <th></td>
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
@ -785,7 +785,8 @@
<td>{{addr}}</td> <td>{{addr}}</td>
<td>{{$root.wallet.publicKeyRing.nicknameForCopayer(info.copayerId)}}</td> <td>{{$root.wallet.publicKeyRing.nicknameForCopayer(info.copayerId)}}</td>
<td><time>{{info.createdTs | amCalendar}}</time></td> <td><time>{{info.createdTs | amCalendar}}</time></td>
<td><a ng-click="toggleAddressBookEntry(addr)">{{info.hidden}}</a></td> <td><a style="text-decoration: initial;" ng-click="toggleAddressBookEntry(addr)">{{info.hidden ?
'Enable' : 'Disable'}}</a></td>
</tr> </tr>
</tbody> </tbody>
</table> </table>