From 86b7d08b58a292fc5d89d5711c99240140b536fc Mon Sep 17 00:00:00 2001 From: Ken Hoes Date: Thu, 12 May 2016 10:04:09 -0400 Subject: [PATCH] PR feedback fixes --- awx/ui/client/legacy-styles/ansible-ui.less | 4 ++-- awx/ui/client/src/controllers/Credentials.js | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/awx/ui/client/legacy-styles/ansible-ui.less b/awx/ui/client/legacy-styles/ansible-ui.less index 9ac7f2d272..7cdb4f7da5 100644 --- a/awx/ui/client/legacy-styles/ansible-ui.less +++ b/awx/ui/client/legacy-styles/ansible-ui.less @@ -424,8 +424,8 @@ textarea.allowresize { color: @default-bg; //white code { - color: #161b1f; - background-color: #e1e1e1; + color: @default-data-txt; + background-color: @default-white-button-bord; line-height: 18px; } diff --git a/awx/ui/client/src/controllers/Credentials.js b/awx/ui/client/src/controllers/Credentials.js index 3db1512c06..db1b3a3527 100644 --- a/awx/ui/client/src/controllers/Credentials.js +++ b/awx/ui/client/src/controllers/Credentials.js @@ -317,7 +317,7 @@ CredentialsAdd.$inject = ['$scope', '$rootScope', '$compile', '$location', export function CredentialsEdit($scope, $rootScope, $compile, $location, $log, - $stateParams, $timeout, CredentialForm, GenerateForm, Rest, Alert, ProcessErrors, + $stateParams, CredentialForm, GenerateForm, Rest, Alert, ProcessErrors, RelatedSearchInit, RelatedPaginateInit, ReturnToCaller, ClearScope, Prompt, GetBasePath, GetChoices, KindChange, OrganizationList, LookUpInit, Empty, OwnerChange, FormSave, Wait, $state, CreateSelect2, Authorization) { @@ -669,7 +669,7 @@ export function CredentialsEdit($scope, $rootScope, $compile, $location, $log, } CredentialsEdit.$inject = ['$scope', '$rootScope', '$compile', '$location', - '$log', '$stateParams', '$timeout', 'CredentialForm', 'GenerateForm', 'Rest', 'Alert', + '$log', '$stateParams', 'CredentialForm', 'GenerateForm', 'Rest', 'Alert', 'ProcessErrors', 'RelatedSearchInit', 'RelatedPaginateInit', 'ReturnToCaller', 'ClearScope', 'Prompt', 'GetBasePath', 'GetChoices', 'KindChange', 'OrganizationList', 'LookUpInit', 'Empty', 'OwnerChange',