UX: Improve layout of invite table

This commit is contained in:
Kris 2019-03-05 14:50:27 -05:00
parent b0d93a38e8
commit 84892429ed
2 changed files with 11 additions and 2 deletions

View File

@ -81,7 +81,7 @@
{{else}}
<td>{{unbound invite.email}}</td>
<td>{{format-date invite.created_at}}</td>
<td colspan='5'>
<td>
{{#if invite.expired}}
{{i18n 'user.invited.expired'}}
&nbsp;&nbsp;&nbsp;&nbsp;
@ -91,7 +91,8 @@
{{else}}
{{d-button icon="times" action=(action "rescind") actionParam=invite label="user.invited.rescind"}}
{{/if}}
&nbsp;&nbsp;&nbsp;&nbsp;
</td>
<td>
{{#if invite.reinvited}}
{{i18n 'user.invited.reinvited'}}
{{else}}

View File

@ -115,6 +115,14 @@
.user-invite-list {
width: 100%;
margin-top: 15px;
tr {
td {
padding: .667em;
}
td:nth-of-type(n+3) {
text-align: right;
}
}
}
.user-invite-search {