Repository: spark Updated Branches: refs/heads/branch-2.4 01c000b52 -> 0cf4c5bbe
[SPARK-25468][WEBUI] Highlight current page index in the spark UI ## What changes were proposed in this pull request? This PR is highlight current page index in the spark UI and history server UI, https://issues.apache.org/jira/browse/SPARK-25468 I have add the following code in webui.css ``` .paginate_button.active>a { color: #999999; text-decoration: underline; } ``` ## How was this patch tested? Manual tests for Chrome, Firefox and Safari Before modifying:  After modifying:  Closes #22516 from Adamyuanyuan/spark-adam-25468. Lead-authored-by: çå°å <wangxiaog...@chinatelecom.cn> Co-authored-by: Adam Wang <adamyuany...@users.noreply.github.com> Signed-off-by: Sean Owen <sean.o...@databricks.com> (cherry picked from commit 8b727994edd27104d49c6d690f93c6858fb9e1fc) Signed-off-by: Sean Owen <sean.o...@databricks.com> Project: http://git-wip-us.apache.org/repos/asf/spark/repo Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/0cf4c5bb Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/0cf4c5bb Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/0cf4c5bb Branch: refs/heads/branch-2.4 Commit: 0cf4c5bbec920490e902dca961d226e172a0c15b Parents: 01c000b5 Author: çå°å <wangxiaog...@chinatelecom.cn> Authored: Thu Sep 27 00:02:05 2018 -0500 Committer: Sean Owen <sean.o...@databricks.com> Committed: Thu Sep 27 00:02:29 2018 -0500 ---------------------------------------------------------------------- core/src/main/resources/org/apache/spark/ui/static/webui.css | 5 +++++ 1 file changed, 5 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/spark/blob/0cf4c5bb/core/src/main/resources/org/apache/spark/ui/static/webui.css ---------------------------------------------------------------------- diff --git a/core/src/main/resources/org/apache/spark/ui/static/webui.css b/core/src/main/resources/org/apache/spark/ui/static/webui.css index 935d9b1..4b060b0 100644 --- a/core/src/main/resources/org/apache/spark/ui/static/webui.css +++ b/core/src/main/resources/org/apache/spark/ui/static/webui.css @@ -251,4 +251,9 @@ a.expandbutton { .table-cell-width-limited td { max-width: 600px; +} + +.paginate_button.active > a { + color: #999999; + text-decoration: underline; } \ No newline at end of file --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@spark.apache.org For additional commands, e-mail: commits-h...@spark.apache.org