Repository: incubator-zeppelin Updated Branches: refs/heads/master 69537f141 -> 8febe795b
[ZEPPELIN-552] Shadow on focused paragraph in default looknfeel ### What is this PR for? Add visual indication of focused paragraph by adding shadow in 'default' looknfeel. ### What type of PR is it? Improvement ### Is there a relevant Jira issue? https://issues.apache.org/jira/browse/ZEPPELIN-552 ### How should this be tested? focus paragraph by click editor or output of paragraph ### Screenshots (if appropriate)  ### Questions: * Does the licenses files need update? no * Is there breaking changes for older versions? no * Does this needs documentation? no Author: Lee moon soo <[email protected]> Closes #592 from Leemoonsoo/ZEPPELIN-552 and squashes the following commits: adc67fb [Lee moon soo] Shadown on focused paragraph in default looknfeel Project: http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/commit/8febe795 Tree: http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/tree/8febe795 Diff: http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/diff/8febe795 Branch: refs/heads/master Commit: 8febe795bfda08905906233175ba3c704da987f1 Parents: 69537f1 Author: Lee moon soo <[email protected]> Authored: Sat Jan 2 17:15:20 2016 -0800 Committer: Lee moon soo <[email protected]> Committed: Thu Jan 7 13:58:49 2016 -0800 ---------------------------------------------------------------------- zeppelin-web/src/assets/styles/looknfeel/default.css | 5 +++++ 1 file changed, 5 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/blob/8febe795/zeppelin-web/src/assets/styles/looknfeel/default.css ---------------------------------------------------------------------- diff --git a/zeppelin-web/src/assets/styles/looknfeel/default.css b/zeppelin-web/src/assets/styles/looknfeel/default.css index 93d302a..78a3bb3 100644 --- a/zeppelin-web/src/assets/styles/looknfeel/default.css +++ b/zeppelin-web/src/assets/styles/looknfeel/default.css @@ -27,3 +27,8 @@ body { .nv-controlsWrap { display: block; } + +.paragraph-col .focused { + box-shadow: 0px 2px 7px rgba(0, 0, 0, 0.3); + border-color: white; +}
