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