mirror of
https://github.com/ansible/awx.git
synced 2026-01-13 19:10:07 -03:30
Users UX Audit changes
This commit is contained in:
parent
cb855de950
commit
92bb67ae26
@ -51,8 +51,8 @@
|
||||
|
||||
.Form-title--is_superuser{
|
||||
height:15px;
|
||||
color: @btn-txt;
|
||||
background-color: @btn-bg;
|
||||
color: @default-interface-txt;
|
||||
background-color: @default-list-header-bg;
|
||||
border-radius: 5px;
|
||||
border: 1px solid @btn-bord;
|
||||
font-size: 10px;
|
||||
@ -164,6 +164,11 @@
|
||||
max-width: none;
|
||||
}
|
||||
|
||||
.Form-formGroup--checkbox{
|
||||
display: flex;
|
||||
align-items: flex-end;
|
||||
}
|
||||
|
||||
.Form-subForm {
|
||||
width: 100%;
|
||||
margin-bottom: 15px;
|
||||
|
||||
@ -24,10 +24,6 @@ export default
|
||||
scope: scope
|
||||
});
|
||||
|
||||
|
||||
if (scope.removePostRefresh) {
|
||||
scope.removePostRefresh();
|
||||
}
|
||||
scope.removePostRefresh = scope.$on('PostRefresh', function () {
|
||||
Wait('stop');
|
||||
if (scope.notification_templates) {
|
||||
|
||||
@ -787,6 +787,7 @@ angular.module('FormGenerator', [GeneratorHelpers.name, 'Utilities', listGenerat
|
||||
|
||||
if ((!field.readonly) || (field.readonly && options.mode === 'edit')) {
|
||||
html += "<div class='form-group Form-formGroup ";
|
||||
html += (field.type === "checkbox") ? "Form-formGroup--checkbox" : "";
|
||||
html += (field['class']) ? (field['class']) : "";
|
||||
html += "'";
|
||||
html += (field.ngShow) ? this.attr(field, 'ngShow') : "";
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user