aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Kruszewski <robertk@palantir.com>2016-08-27 08:47:15 +0100
committerSean Owen <sowen@cloudera.com>2016-08-27 08:47:15 +0100
commit9fbced5b25c2f24d50c50516b4b7737f7e3eaf86 (patch)
treeeaa5f0cf12cca1077441cef1b7cf67ed89a5fb8d
parent40168dbe771ae662ed61851a1f3c677dd14fe344 (diff)
downloadspark-9fbced5b25c2f24d50c50516b4b7737f7e3eaf86.tar.gz
spark-9fbced5b25c2f24d50c50516b4b7737f7e3eaf86.tar.bz2
spark-9fbced5b25c2f24d50c50516b4b7737f7e3eaf86.zip
[SPARK-17216][UI] fix event timeline bars length
## What changes were proposed in this pull request? Make event timeline bar expand to full length of the bar (which is total time) This issue occurs only on chrome, firefox looks fine. Haven't tested other browsers. ## How was this patch tested? Inspection in browsers Before ![screen shot 2016-08-24 at 3 38 24 pm](https://cloud.githubusercontent.com/assets/512084/17935104/0d6cda74-6a12-11e6-9c66-e00cfa855606.png) After ![screen shot 2016-08-24 at 3 36 39 pm](https://cloud.githubusercontent.com/assets/512084/17935114/15740ea4-6a12-11e6-83a1-7c06eef6abb8.png) Author: Robert Kruszewski <robertk@palantir.com> Closes #14791 from robert3005/robertk/event-timeline.
-rw-r--r--core/src/main/resources/org/apache/spark/ui/static/timeline-view.css4
1 files changed, 4 insertions, 0 deletions
diff --git a/core/src/main/resources/org/apache/spark/ui/static/timeline-view.css b/core/src/main/resources/org/apache/spark/ui/static/timeline-view.css
index 0f400461c5..f9ad9f8378 100644
--- a/core/src/main/resources/org/apache/spark/ui/static/timeline-view.css
+++ b/core/src/main/resources/org/apache/spark/ui/static/timeline-view.css
@@ -83,6 +83,10 @@ rect.getting-result-time-proportion {
stroke: #75B0A6;
}
+.vis-item .vis-item-content {
+ width: 100%
+}
+
.vis.timeline {
line-height: 14px;
}