diff --git a/awx/ui/static/js/controllers/Authentication.js b/awx/ui/static/js/controllers/Authentication.js index 35d50e1c66..0cc90d57c7 100644 --- a/awx/ui/static/js/controllers/Authentication.js +++ b/awx/ui/static/js/controllers/Authentication.js @@ -116,7 +116,7 @@ export function Authenticate($log, $cookieStore, $compile, $window, $rootScope, "
Your session timed out due to inactivity. Please sign in.
\n" + "
\n" + "
\n" + - "\n" + + "\n" + "
\n" + "\n" + @@ -125,7 +125,7 @@ export function Authenticate($log, $cookieStore, $compile, $window, $rootScope, "
\n" + "
\n" + "
\n" + - "\n" + + "\n" + "
\n" + "\n" + diff --git a/awx/ui/static/js/helpers/Lookup.js b/awx/ui/static/js/helpers/Lookup.js index 178b66d13f..b71d7ffff5 100644 --- a/awx/ui/static/js/helpers/Lookup.js +++ b/awx/ui/static/js/helpers/Lookup.js @@ -27,8 +27,8 @@ import listGenerator from 'tower/shared/list-generator/main'; export default angular.module('LookUpHelper', ['RestServices', 'Utilities', 'SearchHelper', 'PaginationHelpers', listGenerator.name, 'ApiLoader', 'ModalDialog']) - .factory('LookUpInit', ['Alert', 'Rest', 'generateList', 'SearchInit', 'PaginateInit', 'GetBasePath', 'FormatDate', 'Empty', 'CreateDialog', - function (Alert, Rest, GenerateList, SearchInit, PaginateInit, GetBasePath, FormatDate, Empty, CreateDialog) { + .factory('LookUpInit', ['Alert', 'Rest', 'ProcessErrors', 'generateList', 'SearchInit', 'PaginateInit', 'GetBasePath', 'FormatDate', 'Empty', 'CreateDialog', + function (Alert, Rest, ProcessErrors, GenerateList, SearchInit, PaginateInit, GetBasePath, FormatDate, Empty, CreateDialog) { return function (params) { var parent_scope = params.scope, diff --git a/awx/ui/static/less/ansible-ui.less b/awx/ui/static/less/ansible-ui.less index 442ef74681..9dc88324cb 100644 --- a/awx/ui/static/less/ansible-ui.less +++ b/awx/ui/static/less/ansible-ui.less @@ -381,6 +381,10 @@ textarea.allowresize { margin-right: -5px; } +.prepend-asterisk--login:before { + margin-right: -2px; +} + .subtitle { font-size: 16px; } @@ -670,10 +674,10 @@ dd { /* Outline required fields in Red when there is an error */ .form-control.ng-dirty.ng-invalid, .form-control.ng-dirty.ng-invalid:focus { - border-color: rgba(204, 0, 0, 0.8); + border-color: rgba(255, 88, 80, 0.8); outline: 0; - -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 5px rgba(204, 0, 0, 0.6); - box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 5px rgba(204, 0, 0, 0.6); + -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 5px rgba(255, 88, 80, 0.6); + box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 5px rgba(255, 88, 80, 0.6); } /* For some reason TB 3 RC1 does not provide an input-mini */ @@ -1966,4 +1970,3 @@ tr td button i { } } -