aboutsummaryrefslogtreecommitdiff
path: root/core/src/main/resources/org
diff options
context:
space:
mode:
authorJosh Rosen <joshrosen@databricks.com>2015-12-28 16:42:11 -0800
committerJosh Rosen <joshrosen@databricks.com>2015-12-28 16:42:11 -0800
commit124a3a5e4eece3aabca44fbdd2f8c4c086d6eec3 (patch)
tree163772ce00776556f569fb937350c51b7968c3d7 /core/src/main/resources/org
parent710b41172958a0b3a2b70c48821aefc81893731b (diff)
downloadspark-124a3a5e4eece3aabca44fbdd2f8c4c086d6eec3.tar.gz
spark-124a3a5e4eece3aabca44fbdd2f8c4c086d6eec3.tar.bz2
spark-124a3a5e4eece3aabca44fbdd2f8c4c086d6eec3.zip
[SPARK-12490] Don't use Javascript for web UI's paginated table controls
The web UI's paginated table uses Javascript to implement certain navigation controls, such as table sorting and the "go to page" form. This is unnecessary and should be simplified to use plain HTML form controls and links. /cc zsxwing, who wrote this original code, and yhuai. Author: Josh Rosen <joshrosen@databricks.com> Closes #10441 from JoshRosen/simplify-paginated-table-sorting.
Diffstat (limited to 'core/src/main/resources/org')
-rw-r--r--core/src/main/resources/org/apache/spark/ui/static/webui.css11
1 files changed, 10 insertions, 1 deletions
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 b54e33a96f..dd708ef2c2 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
@@ -225,4 +225,13 @@ a.expandbutton {
background-color: #49535a !important;
color: white;
cursor:pointer;
-} \ No newline at end of file
+}
+
+th a, th a:hover {
+ /* Make the entire header clickable, not just the text label */
+ display: block;
+ width: 100%;
+ /* Suppress the default link styling */
+ color: #333;
+ text-decoration: none;
+}