Job detail page re-refactor

Adjusted scroll spinner margin. Fixed js error.
This commit is contained in:
Chris Houseknecht
2014-07-09 23:49:14 -04:00
parent 80c2bed887
commit 3ffdb45efe
2 changed files with 5 additions and 1 deletions

View File

@@ -1093,7 +1093,6 @@ function JobDetailController ($location, $rootScope, $scope, $compile, $routePar
}; };
scope.editHost = function(id) { scope.editHost = function(id) {
console.log('clicked edit for host: ' + id);
HostsEdit({ HostsEdit({
host_scope: scope, host_scope: scope,
group_scope: null, group_scope: null,

View File

@@ -120,6 +120,7 @@
background-color: transparent; background-color: transparent;
color:#000; color:#000;
float:right; float:right;
margin-right: 5px;
} }
#hostResultsMoreRows.scroll-spinner { #hostResultsMoreRows.scroll-spinner {
@@ -128,6 +129,10 @@
top: 12px; top: 12px;
} }
#hostSummariesMoreRows.scroll-spinner {
margin-right: 0;
}
.failed-hosts { .failed-hosts {
background-color: @failed-hosts-color; background-color: @failed-hosts-color;
} }