Fixed unwanted spaces in nested lists in IE
This commit is contained in:
@@ -266,7 +266,7 @@ function PMA_pluginGetOneOption($section, $plugin_name, $id, &$opt)
|
|||||||
$ret .= '</ul></div>';
|
$ret .= '</ul></div>';
|
||||||
} elseif ($opt['type'] == 'begin_subgroup') {
|
} elseif ($opt['type'] == 'begin_subgroup') {
|
||||||
/* each subgroup can have a header, which may also be a form element */
|
/* each subgroup can have a header, which may also be a form element */
|
||||||
$ret .= PMA_pluginGetOneOption($section, $plugin_name, $id, $opt['subgroup_header']) . '<li><ul';
|
$ret .= PMA_pluginGetOneOption($section, $plugin_name, $id, $opt['subgroup_header']) . '<li class="subgroup"><ul';
|
||||||
if(isset($opt['subgroup_header']['name'])) {
|
if(isset($opt['subgroup_header']['name'])) {
|
||||||
$ret .= ' id="ul_' . $opt['subgroup_header']['name'] . '">';
|
$ret .= ' id="ul_' . $opt['subgroup_header']['name'] . '">';
|
||||||
} else {
|
} else {
|
||||||
|
@@ -1340,6 +1340,15 @@ select#db_select, select#table_select {
|
|||||||
border-bottom: 1px #999999 solid;
|
border-bottom: 1px #999999 solid;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.export_sub_options li.subgroup {
|
||||||
|
display: inline-block;
|
||||||
|
margin-top: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.export_sub_options li {
|
||||||
|
margin-bottom: 0;
|
||||||
|
}
|
||||||
|
|
||||||
#quick_or_custom, #output_quick_export {
|
#quick_or_custom, #output_quick_export {
|
||||||
display: none;
|
display: none;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user