Skip to content

Commit 06794d2

Browse files
Backport PR elastic#8364
--------- **Commit 1:** Prevent visualization element from blocking mouse interaction in test:dev UI. * Original sha: 9907f93 * Authored by CJ Cenizal <cj@cenizal.com> on 2016-09-20T02:12:22Z
1 parent 723b788 commit 06794d2

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/fixtures/vislib/_vis_fixture.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@ let $visCanvas = $('<div>')
1111
position: 'fixed',
1212
top: '0px',
1313
left: '0px',
14-
overflow: 'hidden'
14+
overflow: 'hidden',
15+
'pointer-events': 'none', // Prevent element from blocking you from clicking a test
1516
})
1617
.appendTo('body');
1718

0 commit comments

Comments
 (0)