Repository: incubator-zeppelin Updated Branches: refs/heads/master b33bf5000 -> e23f30340
#64 Force opacity 0 in .ace_text-input.ace_composition Force opacity 0 in ace_composition. This is to prevent the character collapse in writing texts in non-English language using IME. Author: dobachi <[email protected]> Closes #58 from dobashim/master and squashes the following commits: 2e58ebb [dobachi] #64 Force opacity 0 in .ace_text-input.ace_composition Project: http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/commit/e23f3034 Tree: http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/tree/e23f3034 Diff: http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/diff/e23f3034 Branch: refs/heads/master Commit: e23f3034053fbd8b8f4eff478c372d151a42c36b Parents: b33bf50 Author: dobachi <[email protected]> Authored: Sat May 2 00:18:49 2015 +0900 Committer: Lee moon soo <[email protected]> Committed: Wed May 6 08:32:02 2015 +0100 ---------------------------------------------------------------------- zeppelin-web/app/styles/notebook.css | 5 +++++ 1 file changed, 5 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/blob/e23f3034/zeppelin-web/app/styles/notebook.css ---------------------------------------------------------------------- diff --git a/zeppelin-web/app/styles/notebook.css b/zeppelin-web/app/styles/notebook.css index e605534..b5eb511 100644 --- a/zeppelin-web/app/styles/notebook.css +++ b/zeppelin-web/app/styles/notebook.css @@ -222,6 +222,11 @@ z-index:auto !important; } +/** Force opacity:0 to textarea in writing texts **/ +.ace_text-input.ace_composition { + opacity: 0 !important; +} + #main .emacs-mode .ace_cursor { background-color:#C0C0C0!important; border: none !important;
