'fixed' layout of export screen for buggy safari and opera
This commit is contained in:
@@ -18,6 +18,9 @@ $Source$
|
|||||||
(bug #1397061 Left frame not loaded correct on MySQL error)
|
(bug #1397061 Left frame not loaded correct on MySQL error)
|
||||||
* libraries/common.lib.php, left.php:
|
* libraries/common.lib.php, left.php:
|
||||||
bug #1392924 undefined index: tab_count
|
bug #1392924 undefined index: tab_count
|
||||||
|
* libraries/display_export.lib.php, css/phpmyadmin.css.php,
|
||||||
|
themes/*/css/theme_right.css.php:
|
||||||
|
'fixed' layout of export screen for buggy safari and opera
|
||||||
|
|
||||||
2006-01-12 Marc Delisle <lem9@users.sourceforge.net>
|
2006-01-12 Marc Delisle <lem9@users.sourceforge.net>
|
||||||
* Documentation.html: typo, thanks to Cédric Corazza
|
* Documentation.html: typo, thanks to Cédric Corazza
|
||||||
|
@@ -225,11 +225,6 @@ fieldset div[class=formelement] select {
|
|||||||
height: auto;
|
height: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
#fieldsetexport #exportoptions {
|
|
||||||
float: left;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/* Calendar */
|
/* Calendar */
|
||||||
table.calendar { width: 100%; }
|
table.calendar { width: 100%; }
|
||||||
table.calendar td { text-align: center; }
|
table.calendar td { text-align: center; }
|
||||||
@@ -686,6 +681,14 @@ li#li_flush_privileges {
|
|||||||
min-width: 48%;
|
min-width: 48%;
|
||||||
float: <?php echo $left; ?>;
|
float: <?php echo $left; ?>;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#qbe_div_table_list {
|
||||||
|
float: <?php echo $left; ?>;
|
||||||
|
}
|
||||||
|
|
||||||
|
#qbe_div_sql_query {
|
||||||
|
float: <?php echo $left; ?>;
|
||||||
|
}
|
||||||
<?php
|
<?php
|
||||||
} // end styles 2.7.1
|
} // end styles 2.7.1
|
||||||
|
|
||||||
|
@@ -120,6 +120,15 @@ function show_checked_option() {
|
|||||||
<fieldset id="fieldsetexport">
|
<fieldset id="fieldsetexport">
|
||||||
<legend><?php echo $export_page_title; ?></legend>
|
<legend><?php echo $export_page_title; ?></legend>
|
||||||
|
|
||||||
|
<?php
|
||||||
|
/*
|
||||||
|
* this table is needed to fix rendering in Opera <= 9 and Safari <= 2
|
||||||
|
* normaly just the two fieldset would have float: left
|
||||||
|
*/
|
||||||
|
?>
|
||||||
|
<table><tr><td>
|
||||||
|
|
||||||
|
<div id="div_container_exportoptions">
|
||||||
<fieldset id="exportoptions">
|
<fieldset id="exportoptions">
|
||||||
<legend><?php echo $strExport; ?></legend>
|
<legend><?php echo $strExport; ?></legend>
|
||||||
|
|
||||||
@@ -234,7 +243,11 @@ function show_checked_option() {
|
|||||||
<?php } ?>
|
<?php } ?>
|
||||||
|
|
||||||
</fieldset>
|
</fieldset>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</td><td>
|
||||||
|
|
||||||
|
<div id="div_container_sub_exportoptions">
|
||||||
<?php if ( ! $hide_sql ) { /* SQL options */ ?>
|
<?php if ( ! $hide_sql ) { /* SQL options */ ?>
|
||||||
<fieldset id="sql_options">
|
<fieldset id="sql_options">
|
||||||
<legend>
|
<legend>
|
||||||
@@ -251,7 +264,7 @@ function show_checked_option() {
|
|||||||
?>
|
?>
|
||||||
</legend>
|
</legend>
|
||||||
<div class="formelementrow">
|
<div class="formelementrow">
|
||||||
<?php echo $strAddHeaderComment; ?>:
|
<?php echo $strAddHeaderComment; ?>:<br />
|
||||||
<input type="text" name="header_comment" size="30"
|
<input type="text" name="header_comment" size="30"
|
||||||
value="<?php echo $cfg['Export']['sql_header_comment']; ?>" />
|
value="<?php echo $cfg['Export']['sql_header_comment']; ?>" />
|
||||||
</div>
|
</div>
|
||||||
@@ -748,6 +761,8 @@ function show_checked_option() {
|
|||||||
<input type="hidden" name="xml_data" value="xml_data" />
|
<input type="hidden" name="xml_data" value="xml_data" />
|
||||||
</fieldset>
|
</fieldset>
|
||||||
|
|
||||||
|
</td></tr></table>
|
||||||
|
|
||||||
<script type="text/javascript" language="javascript">
|
<script type="text/javascript" language="javascript">
|
||||||
//<![CDATA[
|
//<![CDATA[
|
||||||
show_checked_option();
|
show_checked_option();
|
||||||
|
@@ -607,12 +607,6 @@ span.tabcaution {
|
|||||||
<?php } ?>
|
<?php } ?>
|
||||||
/* end topmenu */
|
/* end topmenu */
|
||||||
|
|
||||||
|
|
||||||
#fieldsetexport #exportoptions {
|
|
||||||
float: left;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/* Calendar */
|
/* Calendar */
|
||||||
table.calendar {
|
table.calendar {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
@@ -573,11 +573,6 @@ span.tabcaution {
|
|||||||
/* end topmenu */
|
/* end topmenu */
|
||||||
|
|
||||||
|
|
||||||
#fieldsetexport #exportoptions {
|
|
||||||
float: left;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/* Calendar */
|
/* Calendar */
|
||||||
table.calendar {
|
table.calendar {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
|
Reference in New Issue
Block a user