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:
parent
33547259e2
commit
ad4841cc94
@ -53,6 +53,10 @@
|
|||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.RoleList-tag--team {
|
||||||
|
cursor: default;
|
||||||
|
}
|
||||||
|
|
||||||
.RoleList-tagDelete {
|
.RoleList-tagDelete {
|
||||||
font-size: 13px;
|
font-size: 13px;
|
||||||
color: @default-bg;
|
color: @default-bg;
|
||||||
|
@ -7,8 +7,10 @@
|
|||||||
class="fa fa-times RoleList-tagDelete"></i>
|
class="fa fa-times RoleList-tagDelete"></i>
|
||||||
</div>
|
</div>
|
||||||
<div class="RoleList-tag"
|
<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>
|
<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>
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
Reference in New Issue
Block a user