Repository: spark Updated Branches: refs/heads/branch-2.0 7306c5f90 -> 5487fa0b8
[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  After  Author: Robert Kruszewski <[email protected]> Closes #14791 from robert3005/robertk/event-timeline. (cherry picked from commit 9fbced5b25c2f24d50c50516b4b7737f7e3eaf86) Signed-off-by: Sean Owen <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/spark/repo Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/5487fa0b Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/5487fa0b Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/5487fa0b Branch: refs/heads/branch-2.0 Commit: 5487fa0b8708deb31a872a943a6cccd6e922c575 Parents: 7306c5f Author: Robert Kruszewski <[email protected]> Authored: Sat Aug 27 08:47:15 2016 +0100 Committer: Sean Owen <[email protected]> Committed: Sat Aug 27 08:47:24 2016 +0100 ---------------------------------------------------------------------- .../main/resources/org/apache/spark/ui/static/timeline-view.css | 4 ++++ 1 file changed, 4 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/spark/blob/5487fa0b/core/src/main/resources/org/apache/spark/ui/static/timeline-view.css ---------------------------------------------------------------------- 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 0f40046..f9ad9f8 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; } --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
