Thread: pgAdmin 4 commit: Query tool and debugger rendering issue in Linux

pgAdmin 4 commit: Query tool and debugger rendering issue in Linux

From
Dave Page
Date:
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.
Querytool 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-modalclasses. 

Fixes #1186

Branch
------
master

Details
-------
http://git.postgresql.org/gitweb?p=pgadmin4.git;a=commitdiff;h=ae99ce742857a663f874cf9df05d5c81463c722b
Author: Neel Patel <neel.patel@enterprisedb.com>

Modified Files
--------------
web/pgadmin/tools/datagrid/__init__.py             | 22 ++++++++++++++++++++--
.../tools/datagrid/templates/datagrid/index.html   | 10 +++++++---
web/pgadmin/tools/debugger/__init__.py             | 19 +++++++++++++++++++
.../tools/debugger/templates/debugger/direct.html  | 10 +++++++++-
4 files changed, 55 insertions(+), 6 deletions(-)