diff --git a/awx/ui/client/features/_index.less b/awx/ui/client/features/_index.less
index b7165c94c9..2769b29de7 100644
--- a/awx/ui/client/features/_index.less
+++ b/awx/ui/client/features/_index.less
@@ -1,5 +1,6 @@
@import 'portalMode/_index';
@import 'output/_index';
+@import 'credentials/_index';
/** @define Popup Modal after create new token and applicaiton and save form */
.PopupModal {
diff --git a/awx/ui/client/features/credentials/_index.less b/awx/ui/client/features/credentials/_index.less
new file mode 100644
index 0000000000..51d407ca2d
--- /dev/null
+++ b/awx/ui/client/features/credentials/_index.less
@@ -0,0 +1,21 @@
+.InputSourceLookup-selectedItem {
+ display: flex;
+ flex: 0 0 100%;
+ align-items: center;
+ min-height: 50px;
+ margin-top: 16px;
+ border-radius: 5px;
+ background-color: @default-no-items-bord;
+ border: 1px solid @default-border;
+}
+
+.InputSourceLookup-selectedItemLabel {
+ color: @default-interface-txt;
+ text-transform: uppercase;
+ margin-right: 10px;
+ margin-left: 10px;
+}
+
+.InputSourceLookup-selectedItemText {
+ font-style: italic;
+}
diff --git a/awx/ui/client/features/credentials/add-edit-credentials.controller.js b/awx/ui/client/features/credentials/add-edit-credentials.controller.js
index f912d1919f..8c47d40637 100644
--- a/awx/ui/client/features/credentials/add-edit-credentials.controller.js
+++ b/awx/ui/client/features/credentials/add-edit-credentials.controller.js
@@ -338,7 +338,7 @@ function AddEditCredentialsController (
}
};
- vm.onInputSourceRowClick = ({ id, credential_type, name }) => {
+ vm.onInputSourceItemSelect = ({ id, credential_type, name }) => {
vm.inputSources.credentialId = id;
vm.inputSources.credentialName = name;
vm.inputSources.credentialTypeId = credential_type;
diff --git a/awx/ui/client/features/credentials/add-edit-credentials.view.html b/awx/ui/client/features/credentials/add-edit-credentials.view.html
index 45c6568552..b642a6da07 100644
--- a/awx/ui/client/features/credentials/add-edit-credentials.view.html
+++ b/awx/ui/client/features/credentials/add-edit-credentials.view.html
@@ -46,13 +46,14 @@