diff --git a/awx/ui/client/legacy-styles/lists.less b/awx/ui/client/legacy-styles/lists.less
index 96cb414a6b..fe0edea58e 100644
--- a/awx/ui/client/legacy-styles/lists.less
+++ b/awx/ui/client/legacy-styles/lists.less
@@ -11,7 +11,7 @@
table, tbody {
- border-collapse: separate !important;
+ border-collapse: collapse;
}
.List-well {
@@ -60,6 +60,15 @@ table, tbody {
height: 40px;
font-size: 14px;
color: @list-item;
+ border-bottom: 1px solid #d7d7d7;
+}
+
+.List-tableRow:last-of-type {
+ border-bottom: none;
+}
+
+.List-tableRow:hover {
+ background-color: #f2f2f2;
}
.List-tableRow--selected,
diff --git a/awx/ui/client/src/home/dashboard/lists/jobs/jobs-list.partial.html b/awx/ui/client/src/home/dashboard/lists/jobs/jobs-list.partial.html
index 725675377c..b2fe78689f 100644
--- a/awx/ui/client/src/home/dashboard/lists/jobs/jobs-list.partial.html
+++ b/awx/ui/client/src/home/dashboard/lists/jobs/jobs-list.partial.html
@@ -14,8 +14,6 @@
|
diff --git a/awx/ui/client/src/shared/list-generator/list-generator.factory.js b/awx/ui/client/src/shared/list-generator/list-generator.factory.js
index d4b38d7cc5..1cf044e738 100644
--- a/awx/ui/client/src/shared/list-generator/list-generator.factory.js
+++ b/awx/ui/client/src/shared/list-generator/list-generator.factory.js
@@ -294,8 +294,8 @@ export default ['$compile', 'Attr', 'Icon',
innerTable += "]\" ";
innerTable += "id=\"{{ " + list.iterator + ".id }}\" ";
innerTable += "class=\"List-tableRow " + list.iterator + "_class\" ";
- innerTable += "ng-class-odd=\"'List-tableRow--oddRow'\" ";
- innerTable += "ng-class-even=\"'List-tableRow--evenRow'\" ";
+ // innerTable += "ng-class-odd=\"'List-tableRow--oddRow'\" ";
+ // innerTable += "ng-class-even=\"'List-tableRow--evenRow'\" ";
innerTable += "ng-repeat=\"" + list.iterator + " in " + list.name;
innerTable += (list.trackBy) ? " track by " + list.trackBy : "";
innerTable += (list.orderBy) ? " | orderBy:'" + list.orderBy + "'" : "";
|