From 9220dcaa97fae226be1effcf06bfc4e11e0d27af Mon Sep 17 00:00:00 2001 From: Murtuza Zabuawala Date: Mon, 14 Mar 2016 09:31:36 +0000 Subject: [PATCH] Fix an issue with uneditable text fields containing large amounts of data, --- web/pgadmin/static/css/overrides.css | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/web/pgadmin/static/css/overrides.css b/web/pgadmin/static/css/overrides.css index 9726cecd9..9421f6781 100755 --- a/web/pgadmin/static/css/overrides.css +++ b/web/pgadmin/static/css/overrides.css @@ -298,7 +298,7 @@ iframe { .pgadmin-controls > .pgadmin-node-select[disabled], .pgadmin-controls > input.form-control[disabled], .pgadmin-controls > select.form-control[disabled] { - height: 28px; + min-height: 28px; padding: 3px 6px !important; } @@ -422,10 +422,11 @@ iframe { } .pg-prop-content .uneditable-input { - white-space: nowrap; + white-space: initial; overflow: hidden; text-overflow: ellipsis; -o-text-overow: ellipsis; + height: auto !important; } .form-control {