Job event detail page now working. Search expanded to work with boolean an integer types. Added new form generator layout. Fixed pagination bugs. Job cancel/delete working.

This commit is contained in:
chouseknecht
2013-05-21 02:57:34 -04:00
parent 3d3782fcee
commit 8343d20c60
13 changed files with 659 additions and 393 deletions

View File

@@ -16,6 +16,10 @@
padding-top: 40px;
}
hr {
border-color: #e3e3e3;
}
.container-fluid {
min-height: 700px ;
}
@@ -175,6 +179,13 @@
display: inline-block;
font-size: 18px;
margin-left: 15px;
min-width: 30px;
}
.search-widget label {
display:inline-block;
vertical-align: middle;
padding-right: 15px;
}
.nav-path {
@@ -241,7 +252,7 @@
.list-actions {
display: inline-block;
vertical-align: top;
margin-left: 15px;
margin-left: 10px;
margin-top: 3px;
}
/* End Display list actions */
@@ -256,15 +267,20 @@
background-color: #fff;
}
.job-error, .job-failed {
.job-error, .job-failed,
input[type="text"].job-failed,
input[type="text"].job-error
{
color: #da4f49;
}
.job-new {
.job-new, input[type="text"].job-new {
color: #778899;
}
.job-pending, .job-running {
.job-pending, .job-running, .job-success,
input[type="text"].job-success
{
color: #5bb75b;
}
@@ -273,5 +289,28 @@
font-weight: bold;
padding-left: 15px;
}
#job_events label {
margin-right: 10px;
}
#job_events {
text-align: center;
}
#job_events_items_form {
margin-top: 15px;
}
.form-items .search-widget {
margin-top: 15px;
}
.form-items .item-count {
display: inline-block;
font-size: small;
margin-top: 25px;
}
/* End Jobs Page */