1
0
mirror of https://github.com/ansible/awx.git synced 2024-11-01 08:21:15 +03:00

fix tooltip placement on permission role list team item

This commit is contained in:
John Mitchell 2016-07-08 11:12:59 -04:00
parent 33547259e2
commit ad4841cc94
2 changed files with 8 additions and 2 deletions

View File

@ -53,6 +53,10 @@
cursor: pointer;
}
.RoleList-tag--team {
cursor: default;
}
.RoleList-tagDelete {
font-size: 13px;
color: @default-bg;

View File

@ -7,8 +7,10 @@
class="fa fa-times RoleList-tagDelete"></i>
</div>
<div class="RoleList-tag"
ng-class="{'RoleList-tag--deletable': entry.explicit}">
ng-class="{'RoleList-tag--deletable': entry.explicit,
'RoleList-tag--team': entry.team_id}"
aw-tool-tip='{{entry.team_name}}' aw-tip-placement='bottom'>
<span class="RoleList-name">{{ entry.name }}</span>
<i ng-show='entry.team_id' class="fa fa-users" aw-tool-tip='{{entry.team_name}}' aw-tip-placement='bottom'></i>
<i ng-show='entry.team_id' class="fa fa-users"></i>
</div>
</div>