pgadmin4/web/pgadmin/tools/debugger
Neel Patel ae99ce7428 Query tool and debugger rendering issue in Linux
Issue : -

Whenever we open any alertify dialog inside the query tool and debugger panel then panel contents are not visible. Query tool panel display as blank.
This issue is only reproducible in Linux.

Solution:-

Animations and transitions are not automatically GPU accelerated and by default use browser's slow rendering engine.
We need to set 'translate3d' value of '-webkit-transform' property in order to use GPU.

After applying this property under linux, Webkit calculates wrong position of the elements so panel contents are not visible.

To make it work, we need to explicitly set '-webkit-transform' property to 'none' for .ajs-notifier, .ajs-message, .ajs-modal classes.

Fixes #1186
2016-06-21 15:24:48 +01:00
..
static/css Fixed below review comments 2016-05-06 16:05:32 +05:30
templates/debugger Query tool and debugger rendering issue in Linux 2016-06-21 15:24:48 +01:00
__init__.py Query tool and debugger rendering issue in Linux 2016-06-21 15:24:48 +01:00