mirror of
https://github.com/ansible/awx.git
synced 2026-01-12 02:19:58 -03:30
Merge pull request #2753 from jlmitch5/fixInstanceGroupLookup
fix instance group lookup in orgs scrolling behavior Reviewed-by: https://github.com/softwarefactory-project-zuul[bot]
This commit is contained in:
commit
bfe86cbc95
@ -1,14 +1,18 @@
|
||||
<div class="input-group Form-mixedInputGroup">
|
||||
<span class="input-group-btn">
|
||||
<button type="button" class="Form-lookupButton btn btn-default" ng-click="openInstanceGroupsModal()"
|
||||
<span class="input-group-btn Form-variableHeightButtonGroup">
|
||||
<button type="button" class="Form-lookupButton Form-lookupButton--variableHeight btn btn-default" ng-click="openInstanceGroupsModal()"
|
||||
ng-disabled="fieldIsDisabled">
|
||||
<i class="fa fa-search"></i>
|
||||
</button>
|
||||
</span>
|
||||
<span id="InstanceGroups" class="form-control Form-textInput Form-textInput--variableHeight input-medium lookup LabelList-lookupTags"
|
||||
ng-disabled="fieldIsDisabled">
|
||||
<div class="LabelList-tagContainer" ng-repeat="tag in instanceGroupsTags">
|
||||
ng-disabled="fieldIsDisabled"
|
||||
ng-class="{'LabelList-lookupTags--disabled' : fieldIsDisabled}">
|
||||
<div ng-if="!fieldIsDisabled" class="LabelList-tagContainer" ng-repeat="tag in instanceGroupsTags">
|
||||
<at-tag tag="tag.name" remove-tag="deleteTag(tag)"></at-tag>
|
||||
</div>
|
||||
<div ng-if="fieldIsDisabled" class="LabelList-tag" ng-repeat="tag in instanceGroupsTags">
|
||||
<span class="LabelList-name">{{tag.name | sanitize}}</span>
|
||||
</div>
|
||||
</span>
|
||||
</div>
|
||||
|
||||
@ -92,11 +92,6 @@
|
||||
.LabelList-lookupTags {
|
||||
display: flex;
|
||||
padding: 0 12px;
|
||||
overflow-y: hidden;
|
||||
}
|
||||
|
||||
.LabelList-lookupTags[disabled] {
|
||||
pointer-events: none;
|
||||
}
|
||||
|
||||
.LabelList-lookupTags--disabled {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user