Merge remote-tracking branch 'origin/pull/12555' into QA_4_6

This commit is contained in:
Michal Čihař 2016-09-19 10:48:54 +02:00
commit 337e5755c0
3 changed files with 5 additions and 2 deletions

View File

@ -35,6 +35,7 @@ phpMyAdmin - ChangeLog
- issue #12320 Copying a user does not copy usergroup
- issue #12272 Adding a new row with default enum goes to no selection when you want to add more then 2 rows
- issue #12487 Drag and drop import prevents file dropping to blob column file selector on the insert tab
- issue #12554 Absence of scrolling makes it impossible to read longer text values in grid editing
4.6.4 (2016-08-16)
- issue [security] Weaknesses with cookie encryption, see PMASA-2016-29

View File

@ -2321,7 +2321,8 @@ fieldset .disabled-field td {
}
.cEdit .edit_box {
overflow: hidden;
overflow-x: hidden;
overflow-y: scroll;
padding: 0;
}

View File

@ -2873,7 +2873,8 @@ fieldset .disabled-field td {
}
.cEdit .edit_box {
overflow: hidden;
overflow-x: hidden;
overflow-y: scroll;
padding: 0;
margin: 0;
}