Fixed pagination issue. Moved reset of iterator + 'HidePaginator' var to Refresh.js helper exclusively. Latest changes to job details page.

This commit is contained in:
Chris Houseknecht
2014-04-18 09:57:37 -04:00
parent 63fa194415
commit 51b9a7bd0b
8 changed files with 207 additions and 87 deletions

View File

@@ -996,28 +996,32 @@ input[type="checkbox"].checkbox-no-label {
.icon-job-running:before,
.icon-job-success:before,
.icon-job-successful:before,
.icon-job-changed:before {
.icon-job-changed:before,
.icon-job-ok:before {
content: "\f111";
}
.icon-job-stopped:before,
.icon-job-error:before,
.icon-job-failed:before,
.icon-job-canceled:before {
.icon-job-canceled:before,
.icon-job-unreachable:before {
content: "\f06a";
}
.icon-job-pending:before,
.icon-job-waiting:before,
.icon-job-new:before,
.icon-job-none:before {
.icon-job-none:before,
.icon-job-skipped:before {
content: "\f10c";
}
.icon-job-active,
.icon-job-running,
.icon-job-success,
.icon-job-successful {
.icon-job-successful,
.icon-job-ok {
color: @green;
}
@@ -1033,14 +1037,16 @@ input[type="checkbox"].checkbox-no-label {
.icon-job-stopped,
.icon-job-error,
.icon-job-failed,
.icon-job-canceled {
.icon-job-canceled,
.icon-job-unreachable {
color: @red;
}
.icon-job-none,
.icon-job-pending,
.icon-job-waiting,
.icon-job-new {
.icon-job-new,
.icon-job-skipped {
color: @grey;
opacity: 0.45;
}