From fb9e1b4eaf0ce9e95e954dd64b4c382674830370 Mon Sep 17 00:00:00 2001 From: Gunther Brunner Date: Wed, 1 Jul 2015 17:36:42 +0900 Subject: [PATCH] Fix long-standing bug that prevents vertical scrolling on the device list when it has horizontal scrolling. It only happens on latest versions of Chrome when used along a MacBook Trackpad. Couldn't reproduce on other browsers/hardware. --- res/web_modules/nine-bootstrap/nine-bootstrap.scss | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/res/web_modules/nine-bootstrap/nine-bootstrap.scss b/res/web_modules/nine-bootstrap/nine-bootstrap.scss index 5fcad8a7..d5373312 100644 --- a/res/web_modules/nine-bootstrap/nine-bootstrap.scss +++ b/res/web_modules/nine-bootstrap/nine-bootstrap.scss @@ -980,6 +980,11 @@ input[type="search"].input-sm { overflow: inherit !important; } +/* FIX Scrolling bug that only happens on latest Chrome + Macbook Trackpad */ +.pane-center.fa-pane-scroller { + z-index: 10; +} + .input-group-btn .btn { margin-right: 0; }