Fixed unwanted spaces in nested lists in IE

This commit is contained in:
lorilee
2010-08-02 14:14:27 -07:00
parent c41d4be0b1
commit 75353d1c4a
2 changed files with 10 additions and 1 deletions

View File

@@ -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 {

View File

@@ -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;
} }