Increase the size of the resize handle of the edit grid text pop-out. Fixes #3083

Allow horizontal sizing of the edit grid text pop-out. Fixes #3805
pull/19/head
Akshay Joshi 2018-12-13 10:56:45 +00:00 committed by Dave Page
parent d68eede3e6
commit 52fb8e197f
2 changed files with 7 additions and 1 deletions

View File

@ -16,9 +16,11 @@ Features
Bug fixes
*********
| `Bug #3083 <https://redmine.postgresql.org/issues/3083>`_ - Increase the size of the resize handle of the edit grid text pop-out.
| `Bug #3354 <https://redmine.postgresql.org/issues/3354>`_ - Fix handling of array types as inputs to the debugger.
| `Bug #3599 <https://redmine.postgresql.org/issues/3599>`_ - Run Postfix in the container build so passwords can be reset etc.
| `Bug #3619 <https://redmine.postgresql.org/issues/3619>`_ - Add titles to the code areas of the Query Tool and Debugger to ensure that panels can be re-docked within them.
| `Bug #3711 <https://redmine.postgresql.org/issues/3711>`_ - Fix an encoding issue in the query tool.
| `Bug #3757 <https://redmine.postgresql.org/issues/3757>`_ - Hide Radio buttons that should not be shown on the maintenance dialogue.
| `Bug #3798 <https://redmine.postgresql.org/issues/3798>`_ - Ensure the browser toolbar buttons work in languages other than English.
| `Bug #3798 <https://redmine.postgresql.org/issues/3798>`_ - Ensure the browser toolbar buttons work in languages other than English.
| `Bug #3805 <https://redmine.postgresql.org/issues/3805>`_ - Allow horizontal sizing of the edit grid text pop-out.

View File

@ -195,3 +195,7 @@ li.CodeMirror-hint-active {
color: $color-fg-inverse;
background-color: $color-primary;
}
.pg_text_editor textarea {
resize: both;
}