Repository: incubator-zeppelin Updated Branches: refs/heads/master 70ab1a376 -> c4f4b31f0
ZEPPELIN-937 : broken layout of Interpreter and Configurations table in mobile view. ### What is this PR for? Current contents table of Interpreter and Configurations menu are broken on mobile view. This PR for fixing this issue. ### What type of PR is it? Bug Fix ### What is the Jira issue? https://issues.apache.org/jira/browse/ZEPPELIN-937 ### How should this be tested? check Interpreter and Configurations menu on mobile view. ### Screenshots (if appropriate) - before (Configurations)  - before (Interpreter)  - after  ### Questions: * Does the licenses files need update? no * Is there breaking changes for older versions? no * Does this needs documentation? no Author: astroshim <[email protected]> Closes #946 from astroshim/ZEPPELIN-937 and squashes the following commits: d7afce9 [astroshim] add css to better mobile view. Project: http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/commit/c4f4b31f Tree: http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/tree/c4f4b31f Diff: http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/diff/c4f4b31f Branch: refs/heads/master Commit: c4f4b31f089198a5a458c2631affb447a8b08d3d Parents: 70ab1a3 Author: astroshim <[email protected]> Authored: Thu Jun 2 05:21:07 2016 +0900 Committer: Damien CORNEAU <[email protected]> Committed: Thu Jun 9 15:38:05 2016 +0900 ---------------------------------------------------------------------- zeppelin-web/src/app/configuration/configuration.css | 1 + zeppelin-web/src/app/interpreter/interpreter.css | 5 +++++ 2 files changed, 6 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/blob/c4f4b31f/zeppelin-web/src/app/configuration/configuration.css ---------------------------------------------------------------------- diff --git a/zeppelin-web/src/app/configuration/configuration.css b/zeppelin-web/src/app/configuration/configuration.css index d11f6ec..07d8bcd 100644 --- a/zeppelin-web/src/app/configuration/configuration.css +++ b/zeppelin-web/src/app/configuration/configuration.css @@ -43,6 +43,7 @@ .configuration table { table-layout: fixed; + word-break: break-all; } .configuration table tr .configurationPropertyKey { http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/blob/c4f4b31f/zeppelin-web/src/app/interpreter/interpreter.css ---------------------------------------------------------------------- diff --git a/zeppelin-web/src/app/interpreter/interpreter.css b/zeppelin-web/src/app/interpreter/interpreter.css index 8695f94..9843636 100644 --- a/zeppelin-web/src/app/interpreter/interpreter.css +++ b/zeppelin-web/src/app/interpreter/interpreter.css @@ -58,6 +58,11 @@ list-style-type: none; } +.interpreter table { + table-layout: fixed; + word-break: break-all; +} + .interpreter table tr .interpreterPropertyKey { padding : 5px 5px 5px 5px; }
