You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@zeppelin.apache.org by co...@apache.org on 2015/11/16 04:05:37 UTC

incubator-zeppelin git commit: Deactivate IE scrollbar on page

Repository: incubator-zeppelin
Updated Branches:
  refs/heads/master 070e08158 -> 4b94aa701


Deactivate IE scrollbar on page

The page scrollbar of IE (at least 10) is covering the content of the page
<img width="177" alt="screen shot 2015-11-13 at 4 39 29 pm" src="https://cloud.githubusercontent.com/assets/710411/11141176/25106cda-8a26-11e5-97b3-0d292d4bd6fe.png">

This PR is removing that style for a traditional scrollbar
<img width="181" alt="screen shot 2015-11-13 at 4 45 00 pm" src="https://cloud.githubusercontent.com/assets/710411/11141183/323fbd48-8a26-11e5-8056-b56e712e7d65.png">

Author: Damien CORNEAU <co...@gmail.com>

Closes #425 from corneadoug/fix/IEWindowScrollBar and squashes the following commits:

ff31829 [Damien CORNEAU] Deactivate IE scrollbar on page


Project: http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/commit/4b94aa70
Tree: http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/tree/4b94aa70
Diff: http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/diff/4b94aa70

Branch: refs/heads/master
Commit: 4b94aa701215b4426d94d22cd92257cdef823900
Parents: 070e081
Author: Damien CORNEAU <co...@gmail.com>
Authored: Fri Nov 13 16:45:48 2015 +0900
Committer: Damien CORNEAU <co...@gmail.com>
Committed: Mon Nov 16 12:05:17 2015 +0900

----------------------------------------------------------------------
 zeppelin-web/src/app/home/home.css | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-zeppelin/blob/4b94aa70/zeppelin-web/src/app/home/home.css
----------------------------------------------------------------------
diff --git a/zeppelin-web/src/app/home/home.css b/zeppelin-web/src/app/home/home.css
index 42c3170..0c62279 100644
--- a/zeppelin-web/src/app/home/home.css
+++ b/zeppelin-web/src/app/home/home.css
@@ -20,6 +20,7 @@ body {
 html,
 body {
   height: 100%;
+  -ms-overflow-style: scrollbar;
 }
 
 .bodyAsIframe {
@@ -308,4 +309,4 @@ This part should be removed when new version of bootstrap handles this issue.
 .btn-group > .tooltip + .btn,
 .btn-group > .popover + .btn {
   margin-left: -1px;
-}
\ No newline at end of file
+}