Commit 2c7e8077 by Torkel Ödegaard

feat(invite): small style change

parent 2724cf5d
......@@ -44,20 +44,18 @@
<tr>
<th>Email</th>
<th>Name</th>
<th>Role</th>
<th>Invited on</th>
<th>By</th>
<th></th>
</tr>
<tr ng-repeat="invite in pendingInvites">
<td>{{invite.email}}</td>
<td>{{invite.name}}</td>
<td>{{invite.role}}</td>
<td>{{invite.createdOn | date:'shortDate'}}</td>
<td>{{invite.invitedBy}}</td>
<td style="width: 1%">
<a ng-click="removeInvite(invite)" class="btn btn-danger btn-mini">
<i class="fa fa-remove"></i>
<button class="btn btn-inverse btn-mini" data-clipboard-text="{{snapshotUrl}}" clipboard-button>
<i class="fa fa-clipboard"></i> Copy Invite
</button>
&nbsp;&nbsp;
<a class="pointer">
<i class="fa fa-caret-right"></i>
</a>
</td>
</tr>
......
......@@ -4,16 +4,21 @@
padding-left: 10px;
& > li > a {
.border-radius(3px);
color: darken(@linkColor, 20%);
}
li > a:hover {
border-bottom: none;
}
li > a:hover,
li.active > a,
li.active > a:focus,
li.active > a:hover {
.border-radius(3px);
border: @grafanaTriggerBorder;
background-color: transparent;
border-bottom: 1px solid @grafanaPanelBackground;
color: @linkColor;
}
li.disabled > a {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment