From a22b5e773e6b752decbeef0c6ad069b124461973 Mon Sep 17 00:00:00 2001 From: Joe Fiorini Date: Thu, 2 Apr 2015 10:16:55 -0400 Subject: [PATCH 1/2] Fix syntax errors in less templates --- awx/ui/static/less/dashboard.less | 2 +- awx/ui/static/less/job-details.less | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/awx/ui/static/less/dashboard.less b/awx/ui/static/less/dashboard.less index 6fcbe7289c..59726130e5 100644 --- a/awx/ui/static/less/dashboard.less +++ b/awx/ui/static/less/dashboard.less @@ -65,7 +65,7 @@ due to the login screen showing on top of the dashboard, we're hiding the border #replacementImg{ align:center; - width: 100px: + width: 100px; height: 100px; } diff --git a/awx/ui/static/less/job-details.less b/awx/ui/static/less/job-details.less index b68c95aec7..9d7b131b51 100644 --- a/awx/ui/static/less/job-details.less +++ b/awx/ui/static/less/job-details.less @@ -347,7 +347,7 @@ .header { width: 100%; height: 28px; - padding: bottom: 5px; + bottom: 5px; .search-field { From 157f4b8062a04636deabfdcb4bcf4c0041e75a29 Mon Sep 17 00:00:00 2001 From: Joe Fiorini Date: Mon, 13 Apr 2015 15:52:02 -0400 Subject: [PATCH 2/2] Add placeholder template to keep build working Build fails when there are no less templates in `awx/ui/static/js`, therefore I'm adding this file that I will remove immediately once I start adding less templates to this directory. --- awx/ui/static/js/tmp.less | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 awx/ui/static/js/tmp.less diff --git a/awx/ui/static/js/tmp.less b/awx/ui/static/js/tmp.less new file mode 100644 index 0000000000..c4708530ce --- /dev/null +++ b/awx/ui/static/js/tmp.less @@ -0,0 +1,3 @@ +// This file left here as a placeholder +// to keep the build passing. Will be +// removed on the next card.