You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@spark.apache.org by sr...@apache.org on 2018/09/27 05:02:21 UTC

spark git commit: [SPARK-25468][WEBUI] Highlight current page index in the spark UI

Repository: spark
Updated Branches:
  refs/heads/master ee214ef3a -> 8b727994e


[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:
![image](https://user-images.githubusercontent.com/10048468/45914897-01ca6c00-be7e-11e8-8e31-47d45db0c3bf.png)

After modifying:
![image](https://user-images.githubusercontent.com/10048468/45913987-7e564e00-be70-11e8-9c16-de17e2c63308.png)

Closes #22516 from Adamyuanyuan/spark-adam-25468.

Lead-authored-by: 王小刚 <wa...@chinatelecom.cn>
Co-authored-by: Adam Wang <Ad...@users.noreply.github.com>
Signed-off-by: Sean Owen <se...@databricks.com>


Project: http://git-wip-us.apache.org/repos/asf/spark/repo
Commit: http://git-wip-us.apache.org/repos/asf/spark/commit/8b727994
Tree: http://git-wip-us.apache.org/repos/asf/spark/tree/8b727994
Diff: http://git-wip-us.apache.org/repos/asf/spark/diff/8b727994

Branch: refs/heads/master
Commit: 8b727994edd27104d49c6d690f93c6858fb9e1fc
Parents: ee214ef
Author: 王小刚 <wa...@chinatelecom.cn>
Authored: Thu Sep 27 00:02:05 2018 -0500
Committer: Sean Owen <se...@databricks.com>
Committed: Thu Sep 27 00:02:05 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/8b727994/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-unsubscribe@spark.apache.org
For additional commands, e-mail: commits-help@spark.apache.org