Merge remote-tracking branch 'origin/master'
This commit is contained in:
commit
9700f11030
@ -31,6 +31,7 @@ phpMyAdmin - ChangeLog
|
||||
- bug #4845 White screen (Cloudflare)
|
||||
- bug #4794 Server error viewing table content
|
||||
- bug Fix issues related to number of decimal places in time
|
||||
- bug #4853 Relation view between 1600 and 1780 px
|
||||
|
||||
4.4.2.0 (2015-04-13)
|
||||
- bug #4835 PMA_hideShowConnection not called after submit_num_fields
|
||||
|
||||
@ -463,7 +463,8 @@ function PMA_getHtmlForForeignKeyRow($one_key, $odd_row, $columns, $i,
|
||||
. ' placeholder="' . __('Constraint name') . '" />';
|
||||
$html_output .= '</span>' . "\n";
|
||||
|
||||
$html_output .= '<span class="formelement clearfloat">';
|
||||
$html_output .= '<div class="floatleft">';
|
||||
$html_output .= '<span class="formelement">';
|
||||
// For ON DELETE and ON UPDATE, the default action
|
||||
// is RESTRICT as per MySQL doc; however, a SHOW CREATE TABLE
|
||||
// won't display the clause if it's set as RESTRICT.
|
||||
@ -477,7 +478,7 @@ function PMA_getHtmlForForeignKeyRow($one_key, $odd_row, $columns, $i,
|
||||
);
|
||||
$html_output .= '</span>' . "\n";
|
||||
|
||||
$html_output .= '<span class="formelement clearfloat">' . "\n";
|
||||
$html_output .= '<span class="formelement">' . "\n";
|
||||
$on_update = isset($one_key['on_update'])
|
||||
? $one_key['on_update'] : 'RESTRICT';
|
||||
$html_output .= PMA_generateDropdown(
|
||||
@ -487,6 +488,7 @@ function PMA_getHtmlForForeignKeyRow($one_key, $odd_row, $columns, $i,
|
||||
$on_update
|
||||
);
|
||||
$html_output .= '</span>';
|
||||
$html_output .= '</div>';
|
||||
|
||||
$column_array = array();
|
||||
$column_array[''] = '';
|
||||
|
||||
@ -247,19 +247,6 @@ fieldset .formelement {
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
@media all and (min-width: 1600px) {
|
||||
fieldset .formelement {
|
||||
clear: none;
|
||||
}
|
||||
#foreign_keys.relationalTable td:first-child + td select {
|
||||
width: auto;
|
||||
margin-right: 1%;
|
||||
}
|
||||
#foreign_keys.relationalTable {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
/* revert for Gecko */
|
||||
fieldset div[class=formelement] {
|
||||
white-space: normal;
|
||||
|
||||
@ -531,19 +531,6 @@ fieldset .formelement {
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
@media all and (min-width: 1600px) {
|
||||
fieldset .formelement {
|
||||
clear: none;
|
||||
}
|
||||
#foreign_keys.relationalTable td:first-child + td select {
|
||||
width: auto;
|
||||
margin-right: 1%;
|
||||
}
|
||||
#foreign_keys.relationalTable {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
/* revert for Gecko */
|
||||
fieldset div[class=formelement] {
|
||||
white-space: normal;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user