azkaban-uncached
Details
ISSUES 3(+0 -3)
diff --git a/ISSUES b/ISSUES
index 9186c94..706c515 100644
--- a/ISSUES
+++ b/ISSUES
@@ -1,12 +1,9 @@
Azkaban 3 UI Issues
===================
- - Remind people to clear cache due to JavaScript mismatches.
- - Fix graph in executing flow panel.
- Make log view fit screen size
- Make graph view fit screen size
- Fix sidebar on graph views.
- - Job Summary stats table overflows.
- Unify error messages.
- Change chevron on My Projects list to proper expanders.
- Redesign Project Page flows list.
diff --git a/src/java/azkaban/webapp/servlet/velocity/jobdetailspage.vm b/src/java/azkaban/webapp/servlet/velocity/jobdetailspage.vm
index fc8d88b..5b296bb 100644
--- a/src/java/azkaban/webapp/servlet/velocity/jobdetailspage.vm
+++ b/src/java/azkaban/webapp/servlet/velocity/jobdetailspage.vm
@@ -132,12 +132,14 @@
<div class="panel panel-default" id="jobstats">
<div class="panel-heading">Job Stats</div>
- <table class="table table-striped table-bordered table-hover table-condensed">
- <thead id="statsHeader">
- </thead>
- <tbody id="statsBody">
- </tbody>
- </table>
+ <div class="panel-body panel-body-stats">
+ <table class="table table-striped table-bordered table-hover table-condensed">
+ <thead id="statsHeader">
+ </thead>
+ <tbody id="statsBody">
+ </tbody>
+ </table>
+ </div>
</div>
<div class="panel panel-default" id="hiveTable">
src/less/bootstrap-azkaban.less 11(+10 -1)
diff --git a/src/less/bootstrap-azkaban.less b/src/less/bootstrap-azkaban.less
index e141048..6472079 100644
--- a/src/less/bootstrap-azkaban.less
+++ b/src/less/bootstrap-azkaban.less
@@ -491,7 +491,7 @@ td {
.log-viewer {
padding: 0;
- background-color: #f0f0f0;
+ background-color: #fcfcfc;
pre {
margin: 0;
@@ -505,3 +505,12 @@ td {
white-space: pre;
}
}
+
+.panel-body-stats {
+ padding: 0;
+ overflow: auto;
+
+ table {
+ margin-bottom: 0;
+ }
+}