From 7b5dcee30f37ce4719b37eabe1a2cf6fd09660a3 Mon Sep 17 00:00:00 2001 From: John Mitchell Date: Tue, 15 May 2018 17:17:56 -0400 Subject: [PATCH 1/3] fix smart status bar color --- awx/ui/client/features/output/_index.less | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/awx/ui/client/features/output/_index.less b/awx/ui/client/features/output/_index.less index e7b4a43dd9..cb8e2940fd 100644 --- a/awx/ui/client/features/output/_index.less +++ b/awx/ui/client/features/output/_index.less @@ -219,7 +219,7 @@ .HostStatusBar-ok, .HostStatusBar-changed, .HostStatusBar-dark, -.HostStatusBar-failed, +.HostStatusBar-failures, .HostStatusBar-skipped, .HostStatusBar-noData { height: 15px; @@ -243,7 +243,7 @@ flex: 0 0 auto; } -.HostStatusBar-failed { +.HostStatusBar-failures { background-color: @default-err; flex: 0 0 auto; } From 87239c0e11b5483a7a45a611717d2e43c8c474fe Mon Sep 17 00:00:00 2001 From: John Mitchell Date: Tue, 15 May 2018 17:18:35 -0400 Subject: [PATCH 2/3] right align smart inv button --- awx/ui/client/src/inventories-hosts/hosts/host.list.js | 2 +- awx/ui/client/src/inventories-hosts/hosts/hosts.partial.html | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/awx/ui/client/src/inventories-hosts/hosts/host.list.js b/awx/ui/client/src/inventories-hosts/hosts/host.list.js index 2422666878..1e9347a377 100644 --- a/awx/ui/client/src/inventories-hosts/hosts/host.list.js +++ b/awx/ui/client/src/inventories-hosts/hosts/host.list.js @@ -21,7 +21,7 @@ export default ['i18n', function(i18n) { trackBy: 'host.id', basePath: 'hosts', title: false, - actionHolderClass: 'List-actionHolder List-actionHolder--leftAlign', + actionHolderClass: 'List-actionHolder', fields: { toggleHost: { diff --git a/awx/ui/client/src/inventories-hosts/hosts/hosts.partial.html b/awx/ui/client/src/inventories-hosts/hosts/hosts.partial.html index acc6f585cd..d366b30687 100644 --- a/awx/ui/client/src/inventories-hosts/hosts/hosts.partial.html +++ b/awx/ui/client/src/inventories-hosts/hosts/hosts.partial.html @@ -11,7 +11,7 @@
-
+
@@ -29,7 +29,7 @@ default-params="host_default_params" query-set="host_queryset" search-tags="searchTags"> - +
From 3a6f1e2b63c6a507c489596ecf6029076d9270e0 Mon Sep 17 00:00:00 2001 From: John Mitchell Date: Tue, 15 May 2018 17:18:51 -0400 Subject: [PATCH 3/3] make labels input standard width on wfjt form --- awx/ui/client/src/templates/workflows.form.js | 1 - 1 file changed, 1 deletion(-) diff --git a/awx/ui/client/src/templates/workflows.form.js b/awx/ui/client/src/templates/workflows.form.js index 42face36b2..b484d33c7e 100644 --- a/awx/ui/client/src/templates/workflows.form.js +++ b/awx/ui/client/src/templates/workflows.form.js @@ -71,7 +71,6 @@ export default ['NotificationsList', 'i18n', function(NotificationsList, i18n) { labels: { label: i18n._('Labels'), type: 'select', - class: 'Form-formGroup--fullWidth', ngOptions: 'label.label for label in labelOptions track by label.value', multiSelect: true, dataTitle: i18n._('Labels'),