From 7ab0e2289df39eed03b0b8c8b2b350faf2b4e4ee Mon Sep 17 00:00:00 2001 From: Shixiong Zhu Date: Tue, 29 Dec 2015 19:54:10 -0800 Subject: [SPARK-12490][CORE] Limit the css style scope to fix the Streaming UI #10441 broke the Streaming UI because of the new CSS style. screen shot 2015-12-29 at 4 49 04 pm This PR just added a class for the new style and only applied them to the paged tables. Author: Shixiong Zhu Closes #10517 from zsxwing/fix-streaming-ui. --- core/src/main/resources/org/apache/spark/ui/static/webui.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'core/src/main/resources/org') 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 dd708ef2c2..48f86d1536 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 @@ -227,7 +227,7 @@ a.expandbutton { cursor:pointer; } -th a, th a:hover { +.table-head-clickable th a, .table-head-clickable th a:hover { /* Make the entire header clickable, not just the text label */ display: block; width: 100%; -- cgit v1.2.3