Repository: incubator-zeppelin Updated Branches: refs/heads/master 991d63578 -> ccba2ec2d
Add animation for dropdown menu Author: Renjith Kamath <[email protected]> Closes #479 from r-kamath/animateMenu and squashes the following commits: 55f9969 [Renjith Kamath] update animation time to 0.2s a57aca7 [Renjith Kamath] Add animation for dropdown menu Project: http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/commit/ccba2ec2 Tree: http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/tree/ccba2ec2 Diff: http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/diff/ccba2ec2 Branch: refs/heads/master Commit: ccba2ec2d509bd4bc250f65ad8e693a3f4c54341 Parents: 991d635 Author: Renjith Kamath <[email protected]> Authored: Thu Dec 3 15:26:02 2015 +0530 Committer: Damien CORNEAU <[email protected]> Committed: Fri Dec 4 17:59:35 2015 +0900 ---------------------------------------------------------------------- zeppelin-web/src/app/notebook/paragraph/paragraph.css | 14 ++++++++++++++ 1 file changed, 14 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/blob/ccba2ec2/zeppelin-web/src/app/notebook/paragraph/paragraph.css ---------------------------------------------------------------------- diff --git a/zeppelin-web/src/app/notebook/paragraph/paragraph.css b/zeppelin-web/src/app/notebook/paragraph/paragraph.css index 6588736..98a4b4b 100644 --- a/zeppelin-web/src/app/notebook/paragraph/paragraph.css +++ b/zeppelin-web/src/app/notebook/paragraph/paragraph.css @@ -182,6 +182,20 @@ color: #333333; } +.dropdown-menu { + display: block; + visibility: hidden; + opacity: 0; + -webkit-transition: opacity 0.2s linear; + -moz-transition: opacity 0.2s linear; + transition: opacity 0.2s linear; +} + +.open > .dropdown-menu { + visibility: visible; + opacity: 1; +} + /* Paragraph Menu */
