diff --git a/awx/ui/static/less/job-details.less b/awx/ui/static/less/job-details.less
index b9f6e43dd4..83d62d8adb 100644
--- a/awx/ui/static/less/job-details.less
+++ b/awx/ui/static/less/job-details.less
@@ -263,6 +263,12 @@
.table-header {
font-weight: bold;
font-size: 12px;
+ .table>thead>tr>th {
+ border-bottom-color: @white;
+ }
+ .table {
+ margin-bottom: 0;
+ }
}
.table-detail {
@@ -282,6 +288,13 @@
padding-top: 5px;
padding-left: 3px;
}
+ .table {
+ margin-bottom: 0;
+ }
+ .table-condensed > tbody > tr > td {
+ padding-top: 0;
+ padding-bottom: 0;
+ }
}
.status-column i {
@@ -412,7 +425,6 @@
}
.table-header {
font-size: 12px;
- padding-right: 18px;
}
.table-detail {
height: 200px;
diff --git a/awx/ui/static/partials/job_detail.html b/awx/ui/static/partials/job_detail.html
index 0a2d99c9b8..f7c90f1daf 100644
--- a/awx/ui/static/partials/job_detail.html
+++ b/awx/ui/static/partials/job_detail.html
@@ -103,29 +103,33 @@
-
-
{{ play.created | date: 'HH:mm:ss' }}
-
{{ play.elapsed }}
-
-
- {{ play.name }}
-
-
-
+
+
+
+ | {{ play.created | date: 'HH:mm:ss' }} |
+ {{ play.elapsed }} |
+ |
+ {{ play.name }} |
+
+
+ | No matching plays |
+
+
+
@@ -159,35 +163,38 @@
-
-
{{ task.created | date: 'HH:mm:ss' }}
-
{{ task.elapsed }}
-
-
- {{ task.role }} {{ task.name }}
-
-
-
{{ task.successfulCount }}
{{ task.changedCount }}
{{ task.skippedCount }}
{{ task.failedCount }}
{{ task.unreachableCount }}
{{ task.missingCount }}
No matching hosts
-
-
-
+
+
+
+ | {{ task.created | date: 'HH:mm:ss' }} |
+ {{ task.elapsed }} |
+ |
+ {{ task.role }} {{ task.name }} |
+
+ {{ task.successfulCount }} {{ task.changedCount }} {{ task.skippedCount }} {{ task.failedCount }} {{ task.unreachableCount }} {{ task.missingCount }} No matching hosts
+ |
+
+
+ | No matching tasks |
+
+
+
@@ -221,21 +228,18 @@
-
-
-
-
- {{ result.msg }}
-
-
-
-
+
@@ -252,7 +256,7 @@
-
+
Summary
@@ -288,29 +292,28 @@