Repository: zeppelin Updated Branches: refs/heads/master 1d93d3db8 -> b5e039fe1
[ZEPPELIN-2708][DOCS] feat: Add v scroll to setup, usage menus in navbar ### What is this PR for? Added v scroll to setup, usage menus in the navbar. Because some users are experiencing trimmed menus (not sure exact OS, browser versions, See the JIRA issue) ### What type of PR is it? [Bug Fix | Improvement] ### Todos DONE ### What is the Jira issue? [ZEPPELIN-2708](https://issues.apache.org/jira/browse/ZEPPELIN-2708) ### How should this be tested? 1. cd `docs/` 2. run: `bundle exec jekyll serve --watch` ### Screenshots (if appropriate) #### Before (no scrollbar)  #### After   ### Questions: * Does the licenses files need update? - NO * Is there breaking changes for older versions? - NO * Does this needs documentation? - NO Author: 1ambda <1am...@gmail.com> Closes #2451 from 1ambda/ZEPPELIN-2708/provide-V-scrolls-for-navbar-menus and squashes the following commits: fb322b21 [1ambda] feat: Add v scroll to setup, usage menus Project: http://git-wip-us.apache.org/repos/asf/zeppelin/repo Commit: http://git-wip-us.apache.org/repos/asf/zeppelin/commit/b5e039fe Tree: http://git-wip-us.apache.org/repos/asf/zeppelin/tree/b5e039fe Diff: http://git-wip-us.apache.org/repos/asf/zeppelin/diff/b5e039fe Branch: refs/heads/master Commit: b5e039fe1b0428818865035531334f54b9f5e77b Parents: 1d93d3d Author: 1ambda <1am...@gmail.com> Authored: Thu Jun 29 20:24:38 2017 +0900 Committer: 1ambda <1am...@gmail.com> Committed: Mon Jul 3 21:54:06 2017 +0900 ---------------------------------------------------------------------- docs/_includes/themes/zeppelin/_navigation.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/zeppelin/blob/b5e039fe/docs/_includes/themes/zeppelin/_navigation.html ---------------------------------------------------------------------- diff --git a/docs/_includes/themes/zeppelin/_navigation.html b/docs/_includes/themes/zeppelin/_navigation.html index 102e8b2..906d6e8 100644 --- a/docs/_includes/themes/zeppelin/_navigation.html +++ b/docs/_includes/themes/zeppelin/_navigation.html @@ -36,7 +36,7 @@ <li> <a href="#" data-toggle="dropdown" class="dropdown-toggle">Usage<b class="caret"></b></a> - <ul class="dropdown-menu"> + <ul class="dropdown-menu scrollable-menu"> <li class="title"><span>Dynamic Form</span></li> <li><a href="{{BASE_PATH}}/usage/dynamic_form/intro.html">What is Dynamic Form?</a></li> <li role="separator" class="divider"></li> @@ -75,7 +75,7 @@ <li> <a href="#" data-toggle="dropdown" class="dropdown-toggle">Setup<b class="caret"></b></a> - <ul class="dropdown-menu"> + <ul class="dropdown-menu scrollable-menu"> <li class="title"><span>Basics</span></li> <li><a href="{{BASE_PATH}}/setup/basics/how_to_build.html">How to Build Zeppelin</a></li> <li><a href="{{BASE_PATH}}/setup/basics/multi_user_support.html">Multi-user Support</a></li>