diff --git a/htdocs/adherents/list.php b/htdocs/adherents/list.php index 8828a72df28..bd5f70d0973 100644 --- a/htdocs/adherents/list.php +++ b/htdocs/adherents/list.php @@ -511,7 +511,7 @@ if (! empty($arrayfields['state.nom']['checked'])) if (! empty($arrayfields['country.code_iso']['checked'])) { print ''; - print $form->select_country($search_country, 'search_country', '', 0, 'maxwidth100'); + print $form->select_country($search_country, 'search_country', '', 0, 'minwidth100imp maxwidth100'); print ''; } // Phone pro diff --git a/htdocs/comm/propal/list.php b/htdocs/comm/propal/list.php index 67c347a97d5..0b3179bd239 100644 --- a/htdocs/comm/propal/list.php +++ b/htdocs/comm/propal/list.php @@ -564,7 +564,7 @@ if ($resql) if (! empty($arrayfields['country.code_iso']['checked'])) { print ''; - print $form->select_country($search_country, 'search_country', '', 0, 'maxwidth100'); + print $form->select_country($search_country, 'search_country', '', 0, 'minwidth100imp maxwidth100'); print ''; } // Company type diff --git a/htdocs/commande/list.php b/htdocs/commande/list.php index 95483513c72..c20abf44fe2 100644 --- a/htdocs/commande/list.php +++ b/htdocs/commande/list.php @@ -622,7 +622,7 @@ if ($resql) if (! empty($arrayfields['country.code_iso']['checked'])) { print ''; - print $form->select_country($search_country, 'search_country', '', 0, 'maxwidth100'); + print $form->select_country($search_country, 'search_country', '', 0, 'minwidth100imp maxwidth100'); print ''; } // Company type diff --git a/htdocs/compta/facture/list.php b/htdocs/compta/facture/list.php index 3363caddeef..600c4f7b57a 100644 --- a/htdocs/compta/facture/list.php +++ b/htdocs/compta/facture/list.php @@ -759,7 +759,7 @@ if ($resql) if (! empty($arrayfields['country.code_iso']['checked'])) { print ''; - print $form->select_country($search_country, 'search_country', '', 0, 'maxwidth100'); + print $form->select_country($search_country, 'search_country', '', 0, 'minwidth100imp maxwidth100'); print ''; } // Company type diff --git a/htdocs/contact/list.php b/htdocs/contact/list.php index 897dfaf557b..4419c087a3c 100644 --- a/htdocs/contact/list.php +++ b/htdocs/contact/list.php @@ -584,7 +584,7 @@ if (! empty($arrayfields['p.town']['checked'])) if (! empty($arrayfields['country.code_iso']['checked'])) { print ''; - print $form->select_country($search_country, 'search_country', '', 0, 'maxwidth100'); + print $form->select_country($search_country, 'search_country', '', 0, 'minwidth100imp maxwidth100'); print ''; } if (! empty($arrayfields['p.phone']['checked'])) diff --git a/htdocs/contrat/list.php b/htdocs/contrat/list.php index fb2422b7762..4431305322b 100644 --- a/htdocs/contrat/list.php +++ b/htdocs/contrat/list.php @@ -499,7 +499,7 @@ if (! empty($arrayfields['state.nom']['checked'])) if (! empty($arrayfields['country.code_iso']['checked'])) { print ''; - print $form->select_country($search_country, 'search_country', '', 0, 'maxwidth100'); + print $form->select_country($search_country, 'search_country', '', 0, 'minwidth100imp maxwidth100'); print ''; } // Company type diff --git a/htdocs/core/lib/functions.lib.php b/htdocs/core/lib/functions.lib.php index 7e150fc9a7f..37b8eaa320b 100644 --- a/htdocs/core/lib/functions.lib.php +++ b/htdocs/core/lib/functions.lib.php @@ -2980,7 +2980,7 @@ function img_picto($titlealt, $picto, $moreatt = '', $pictoisfullpath = false, $ //if (in_array($picto, array('switch_off', 'switch_on', 'off', 'on'))) if (empty($srconly) && in_array($pictowithoutext, array( 'bank', 'close_title', 'delete', 'edit', 'ellipsis-h', 'filter', 'grip', 'grip_title', 'list', 'listlight', 'off', 'on', 'play', 'playdisabled', 'printer', 'resize', - 'note', 'sign-out', 'split', 'switch_off', 'switch_on', 'unlink', 'uparrow', '1downarrow', '1uparrow', + 'note', 'sign-out', 'split', 'switch_off', 'switch_on', 'unlink', 'uparrow', '1downarrow', '1uparrow', '1leftarrow', '1rightarrow', 'jabber','skype','twitter','facebook','linkedin' ) )) { @@ -3053,12 +3053,10 @@ function img_picto($titlealt, $picto, $moreatt = '', $pictoisfullpath = false, $ $fakey = 'fa-mail-forward'; $facolor = '#555'; } - elseif ($pictowithoutext == '1uparrow') { - $fakey = 'fa-caret-up'; - $marginleftonlyshort = 1; - } - elseif ($pictowithoutext == '1downarrow') { - $fakey = 'fa-caret-down'; + elseif (in_array($pictowithoutext, array('1uparrow', '1downarrow', '1leftarrow', '1rightarrow', '1uparrow_selected', '1downarrow_selected', '1leftarrow_selected', '1rightarrow_selected'))) { + $convertarray=array('1uparrow'=>'caret-up', '1downarrow'=>'caret-down', '1leftarrow'=>'caret-left', '1rightarrow'=>'caret-right', '1uparrow_selected'=>'caret-up', '1downarrow_selected'=>'caret-down', '1leftarrow_selected'=>'caret-left', '1rightarrow_selected'=>'caret-right'); + $fakey = 'fa-'.$convertarray[$pictowithoutext]; + if (preg_match('/selected/', $pictowithoutext)) $facolor = '#888'; $marginleftonlyshort = 1; } elseif ($pictowithoutext == 'sign-out') { diff --git a/htdocs/core/modules/export/export_excelnew.modules.php b/htdocs/core/modules/export/export_excel2007new.modules.php similarity index 99% rename from htdocs/core/modules/export/export_excelnew.modules.php rename to htdocs/core/modules/export/export_excel2007new.modules.php index 1103dcc0dbe..10dbb2fa28c 100644 --- a/htdocs/core/modules/export/export_excelnew.modules.php +++ b/htdocs/core/modules/export/export_excel2007new.modules.php @@ -32,7 +32,7 @@ use PhpOffice\PhpSpreadsheet\Writer\Xlsx; /** * Class to build export files with Excel format */ -class ExportExcelnew extends ModeleExports +class ExportExcel2007new extends ModeleExports { /** * @var int ID diff --git a/htdocs/expedition/list.php b/htdocs/expedition/list.php index a490089325d..be7bcfa50ef 100644 --- a/htdocs/expedition/list.php +++ b/htdocs/expedition/list.php @@ -357,7 +357,7 @@ if ($resql) if (! empty($arrayfields['country.code_iso']['checked'])) { print ''; - print $form->select_country($search_country, 'search_country', '', 0, 'maxwidth100'); + print $form->select_country($search_country, 'search_country', '', 0, 'minwidth100imp maxwidth100'); print ''; } // Company type diff --git a/htdocs/exports/export.php b/htdocs/exports/export.php index 942ec66b002..f04f6419643 100644 --- a/htdocs/exports/export.php +++ b/htdocs/exports/export.php @@ -519,7 +519,7 @@ if ($step == 2 && $datatoexport) print '
'; print '
'; - print ''; + print '
'; // Module print ''; @@ -551,13 +551,13 @@ if ($step == 2 && $datatoexport) print ''; print ''; print ''; - print '
'.$langs->trans("Module").'
'; - print $langs->trans("SelectExportFields").' '; + print '
'; + print ''.$langs->trans("SelectExportFields").' '; if(empty($conf->global->EXPORTS_SHARE_MODELS))$htmlother->select_export_model($exportmodelid, 'exportmodelid', $datatoexport, 1, $user->id); else $htmlother->select_export_model($exportmodelid, 'exportmodelid', $datatoexport, 1); print ' '; print ''; - print '
'; + print '
'; print ''; @@ -565,10 +565,10 @@ if ($step == 2 && $datatoexport) print ''; print ''.$langs->trans("Entities").''; print ''.$langs->trans("ExportableFields").''; - print ''; - print ''.$langs->trans("All").""; + print ''; + print ''.$langs->trans("All").""; print ' / '; - print ''.$langs->trans("None").""; + print ''.$langs->trans("None").""; print ''; print ''.$langs->trans("ExportedFields").''; print ''; @@ -719,7 +719,7 @@ if ($step == 3 && $datatoexport) print '
'; print '
'; - print ''; + print '
'; // Module print ''; @@ -754,7 +754,7 @@ if ($step == 3 && $datatoexport) print '
'; // Combo list of export models - print $langs->trans("SelectFilterFields").'
'; + print ''.$langs->trans("SelectFilterFields").'

'; // un formulaire en plus pour recuperer les filtres @@ -905,10 +905,10 @@ if ($step == 4 && $datatoexport) print '
'; print '
'; - print '
'.$langs->trans("Module").'
'; + print '
'; // Module - print ''; + print ''; print ''; } // Company type diff --git a/htdocs/fourn/facture/list.php b/htdocs/fourn/facture/list.php index 4d5a3d32c78..73d5a4b3a4d 100644 --- a/htdocs/fourn/facture/list.php +++ b/htdocs/fourn/facture/list.php @@ -671,7 +671,7 @@ if ($resql) if (! empty($arrayfields['country.code_iso']['checked'])) { print ''; } // Company type diff --git a/htdocs/reception/list.php b/htdocs/reception/list.php index 3340a192081..bbf554ed6b1 100644 --- a/htdocs/reception/list.php +++ b/htdocs/reception/list.php @@ -666,7 +666,7 @@ if ($resql) if (! empty($arrayfields['country.code_iso']['checked'])) { print ''; } // Company type diff --git a/htdocs/societe/list.php b/htdocs/societe/list.php index cf42b59f558..28a9b283d6d 100644 --- a/htdocs/societe/list.php +++ b/htdocs/societe/list.php @@ -265,7 +265,7 @@ if (empty($reshook)) $search_status=-1; $search_stcomm=''; $search_level=''; - $search_parent_name=-1; + $search_parent_name=''; $search_import_key=''; $toselect=''; $search_array_options=array(); @@ -738,7 +738,7 @@ if (! empty($arrayfields['region.nom']['checked'])) if (! empty($arrayfields['country.code_iso']['checked'])) { print ''; } // Company type diff --git a/htdocs/supplier_proposal/list.php b/htdocs/supplier_proposal/list.php index 17dc033361e..e6dd96d3641 100644 --- a/htdocs/supplier_proposal/list.php +++ b/htdocs/supplier_proposal/list.php @@ -493,7 +493,7 @@ if ($resql) if (! empty($arrayfields['country.code_iso']['checked'])) { print ''; } // Company type diff --git a/htdocs/takepos/customers.php b/htdocs/takepos/customers.php index 93a49d1d91c..3bf79f38382 100644 --- a/htdocs/takepos/customers.php +++ b/htdocs/takepos/customers.php @@ -765,7 +765,7 @@ if (! empty($arrayfields['region.nom']['checked'])) if (! empty($arrayfields['country.code_iso']['checked'])) { print ''; } // Company type diff --git a/htdocs/theme/eldy/img/1downarrow.png b/htdocs/theme/eldy/img/1downarrow.png deleted file mode 100644 index 1d8a1164ae0..00000000000 Binary files a/htdocs/theme/eldy/img/1downarrow.png and /dev/null differ diff --git a/htdocs/theme/eldy/img/1downarrow_selected.png b/htdocs/theme/eldy/img/1downarrow_selected.png deleted file mode 100644 index 17934d7c62e..00000000000 Binary files a/htdocs/theme/eldy/img/1downarrow_selected.png and /dev/null differ diff --git a/htdocs/theme/eldy/img/1leftarrow.png b/htdocs/theme/eldy/img/1leftarrow.png deleted file mode 100644 index 554cdc3d76c..00000000000 Binary files a/htdocs/theme/eldy/img/1leftarrow.png and /dev/null differ diff --git a/htdocs/theme/eldy/img/1leftarrow_selected.png b/htdocs/theme/eldy/img/1leftarrow_selected.png deleted file mode 100644 index 554cdc3d76c..00000000000 Binary files a/htdocs/theme/eldy/img/1leftarrow_selected.png and /dev/null differ diff --git a/htdocs/theme/eldy/img/1rightarrow.png b/htdocs/theme/eldy/img/1rightarrow.png deleted file mode 100644 index 95fdc377ee9..00000000000 Binary files a/htdocs/theme/eldy/img/1rightarrow.png and /dev/null differ diff --git a/htdocs/theme/eldy/img/1rightarrow_selected.png b/htdocs/theme/eldy/img/1rightarrow_selected.png deleted file mode 100644 index 95fdc377ee9..00000000000 Binary files a/htdocs/theme/eldy/img/1rightarrow_selected.png and /dev/null differ diff --git a/htdocs/theme/eldy/img/1uparrow.png b/htdocs/theme/eldy/img/1uparrow.png deleted file mode 100644 index 331731b750c..00000000000 Binary files a/htdocs/theme/eldy/img/1uparrow.png and /dev/null differ diff --git a/htdocs/theme/eldy/img/1uparrow_selected.png b/htdocs/theme/eldy/img/1uparrow_selected.png deleted file mode 100644 index d9d8462fe43..00000000000 Binary files a/htdocs/theme/eldy/img/1uparrow_selected.png and /dev/null differ diff --git a/htdocs/theme/eldy/style.css.php b/htdocs/theme/eldy/style.css.php index 51f9d8d2990..1baf1650494 100644 --- a/htdocs/theme/eldy/style.css.php +++ b/htdocs/theme/eldy/style.css.php @@ -769,6 +769,9 @@ select.flat.selectlimit { .nomarginleft { margin-left: 0px !important; } +.marginbottomonly { + margin-bottom: 10px !important; +} .selectlimit, .selectlimit:focus { border-left: none !important; border-top: none !important; @@ -1007,6 +1010,7 @@ select.selectarrowonleft option { .minwidth50imp { min-width: 50px !important; } .minwidth75imp { min-width: 75px !important; } .minwidth100imp { min-width: 100px !important; } + .minwidth150imp { min-width: 150px !important; } .minwidth200imp { min-width: 200px !important; } .minwidth300imp { min-width: 300px !important; } .minwidth400imp { min-width: 300px !important; } @@ -1020,8 +1024,9 @@ select.selectarrowonleft option { .minwidth50imp { min-width: 50px !important; } .minwidth75imp { min-width: 70px !important; } .minwidth100imp { min-width: 80px !important; } - .minwidth200imp { min-width: 100px !important; } - .minwidth300imp { min-width: 100px !important; } + .minwidth150imp { min-width: 100px !important; } + .minwidth200imp { min-width: 110px !important; } + .minwidth300imp { min-width: 120px !important; } .minwidth400imp { min-width: 150px !important; } .minwidth500imp { min-width: 250px !important; } } @@ -1100,9 +1105,10 @@ select.selectarrowonleft option { .maxwidth400onsmartphone { max-width: 400px; } .minwidth50imp { min-width: 50px !important; } .minwidth75imp { min-width: 60px !important; } - .minwidth100imp { min-width: 60px !important; } - .minwidth200imp { min-width: 60px !important; } - .minwidth300imp { min-width: 100px !important; } + .minwidth100imp { min-width: 80px !important; } + .minwidth150imp { min-width: 90px !important; } + .minwidth200imp { min-width: 100px !important; } + .minwidth300imp { min-width: 120px !important; } .minwidth400imp { min-width: 150px !important; } .minwidth500imp { min-width: 250px !important; } .titlefield { width: auto; } diff --git a/htdocs/theme/md/img/1downarrow.png b/htdocs/theme/md/img/1downarrow.png deleted file mode 100644 index 1d8a1164ae0..00000000000 Binary files a/htdocs/theme/md/img/1downarrow.png and /dev/null differ diff --git a/htdocs/theme/md/img/1downarrow_selected.png b/htdocs/theme/md/img/1downarrow_selected.png deleted file mode 100644 index 17934d7c62e..00000000000 Binary files a/htdocs/theme/md/img/1downarrow_selected.png and /dev/null differ diff --git a/htdocs/theme/md/img/1leftarrow.png b/htdocs/theme/md/img/1leftarrow.png deleted file mode 100644 index 554cdc3d76c..00000000000 Binary files a/htdocs/theme/md/img/1leftarrow.png and /dev/null differ diff --git a/htdocs/theme/md/img/1leftarrow_selected.png b/htdocs/theme/md/img/1leftarrow_selected.png deleted file mode 100644 index 554cdc3d76c..00000000000 Binary files a/htdocs/theme/md/img/1leftarrow_selected.png and /dev/null differ diff --git a/htdocs/theme/md/img/1rightarrow.png b/htdocs/theme/md/img/1rightarrow.png deleted file mode 100644 index 95fdc377ee9..00000000000 Binary files a/htdocs/theme/md/img/1rightarrow.png and /dev/null differ diff --git a/htdocs/theme/md/img/1rightarrow_selected.png b/htdocs/theme/md/img/1rightarrow_selected.png deleted file mode 100644 index 95fdc377ee9..00000000000 Binary files a/htdocs/theme/md/img/1rightarrow_selected.png and /dev/null differ diff --git a/htdocs/theme/md/img/1uparrow.png b/htdocs/theme/md/img/1uparrow.png deleted file mode 100644 index 331731b750c..00000000000 Binary files a/htdocs/theme/md/img/1uparrow.png and /dev/null differ diff --git a/htdocs/theme/md/img/1uparrow_selected.png b/htdocs/theme/md/img/1uparrow_selected.png deleted file mode 100644 index d9d8462fe43..00000000000 Binary files a/htdocs/theme/md/img/1uparrow_selected.png and /dev/null differ diff --git a/htdocs/theme/md/style.css.php b/htdocs/theme/md/style.css.php index 5bd5c386641..6f22cf2746d 100644 --- a/htdocs/theme/md/style.css.php +++ b/htdocs/theme/md/style.css.php @@ -756,6 +756,9 @@ select.flat.selectlimit { .nomarginleft { margin-left: 0px !important; } +.marginbottomonly { + margin-bottom: 10px !important; +} .selectlimit, .selectlimit:focus { border-left: none !important; border-top: none !important; @@ -967,6 +970,7 @@ select.selectarrowonleft option { .minwidth50imp { min-width: 50px !important; } .minwidth75imp { min-width: 75px !important; } .minwidth100imp { min-width: 100px !important; } + .minwidth150imp { min-width: 150px !important; } .minwidth200imp { min-width: 200px !important; } .minwidth300imp { min-width: 300px !important; } .minwidth400imp { min-width: 300px !important; } @@ -980,20 +984,21 @@ select.selectarrowonleft option { .minwidth50imp { min-width: 50px !important; } .minwidth75imp { min-width: 70px !important; } .minwidth100imp { min-width: 80px !important; } - .minwidth200imp { min-width: 100px !important; } - .minwidth300imp { min-width: 100px !important; } - .minwidth400imp { min-width: 100px !important; } - .minwidth500imp { min-width: 100px !important; } + .minwidth150imp { min-width: 100px !important; } + .minwidth200imp { min-width: 110px !important; } + .minwidth300imp { min-width: 120px !important; } + .minwidth400imp { min-width: 150px !important; } + .minwidth500imp { min-width: 250px !important; } } /* Force values for small screen 767 */ @media only screen and (max-width: 767px) { body { - font-size: px; + font-size: ; } div.refidno { - font-size: px !important; + font-size: !important; } } @@ -1056,11 +1061,12 @@ select.selectarrowonleft option { .maxwidth400onsmartphone { max-width: 400px; } .minwidth50imp { min-width: 50px !important; } .minwidth75imp { min-width: 60px !important; } - .minwidth100imp { min-width: 60px !important; } - .minwidth200imp { min-width: 60px !important; } - .minwidth300imp { min-width: 60px !important; } - .minwidth400imp { min-width: 60px !important; } - .minwidth500imp { min-width: 60px !important; } + .minwidth100imp { min-width: 80px !important; } + .minwidth150imp { min-width: 90px !important; } + .minwidth200imp { min-width: 100px !important; } + .minwidth300imp { min-width: 120px !important; } + .minwidth400imp { min-width: 150px !important; } + .minwidth500imp { min-width: 250px !important; } .titlefield { width: auto; } .titlefieldcreate { width: auto; }
'.$langs->trans("Module").'
'.$langs->trans("Module").''; //print img_object($objexport->array_export_module[0]->getName(),$objexport->array_export_module[0]->picto).' '; print $objexport->array_export_module[0]->getName(); @@ -962,7 +962,7 @@ if ($step == 4 && $datatoexport) // Select request if all fields are selected $sqlmaxforexport=$objexport->build_sql(0, array(), array()); - print $langs->trans("ChooseFieldsOrdersAndTitle").'
'; + print '
'.$langs->trans("ChooseFieldsOrdersAndTitle").'
'; print ''; print ''; @@ -1166,7 +1166,7 @@ if ($step == 5 && $datatoexport) print '
'; print '
'; - print '
'; + print '
'; // Module print ''; @@ -1193,7 +1193,7 @@ if ($step == 5 && $datatoexport) } print ''; - // List of filtered fiels + // List of filtered fields if (isset($objexport->array_export_TypeFields[0]) && is_array($objexport->array_export_TypeFields[0])) { print ''; @@ -1222,9 +1222,9 @@ if ($step == 5 && $datatoexport) // List of available export formats $htmltabloflibs = '
'.$langs->trans("Module").''.$list.'
'.$langs->trans("FilteredFields").'
'; $htmltabloflibs.= ''; - $htmltabloflibs.= ''; + $htmltabloflibs.= ''; $htmltabloflibs.= ''; - $htmltabloflibs.= ''; + $htmltabloflibs.= ''; $htmltabloflibs.= ''."\n"; $liste=$objmodelexport->liste_modeles($db); @@ -1238,7 +1238,7 @@ if ($step == 5 && $datatoexport) } $htmltabloflibs.= ''; - $htmltabloflibs.= ''; @@ -1266,17 +1266,11 @@ if ($step == 5 && $datatoexport) print '
'.$langs->trans("AvailableFormats").''.$langs->trans("AvailableFormats").''.$langs->trans("LibraryUsed").''.$langs->trans("LibraryVersion").''.$langs->trans("LibraryVersion").'
'.img_picto_common($key, $objmodelexport->getPictoForKey($key)).' '; + $htmltabloflibs.= ''.img_picto_common($key, $objmodelexport->getPictoForKey($key)).' '; $text=$objmodelexport->getDriverDescForKey($key); $label=$listeall[$key]; $htmltabloflibs.= $form->textwithpicto($label, $text).'
'; - print '
'; - if (! is_dir($conf->export->dir_temp)) dol_mkdir($conf->export->dir_temp); - // Affiche liste des documents + // Show existing generated documents // NB: La fonction show_documents rescanne les modules qd genallowed=1, sinon prend $liste print $formfile->showdocuments('export', '', $upload_dir, $_SERVER["PHP_SELF"].'?step=5&datatoexport='.$datatoexport, $liste, 1, (! empty($_POST['model'])?$_POST['model']:'csv'), 1, 1, 0, 0, 0, '', $langs->trans('Files'), '', '', ''); - - print '
'; - - print '
'; } llxFooter(); diff --git a/htdocs/fourn/commande/list.php b/htdocs/fourn/commande/list.php index 56bde44b7bd..265d00f6bbe 100644 --- a/htdocs/fourn/commande/list.php +++ b/htdocs/fourn/commande/list.php @@ -792,7 +792,7 @@ if ($resql) if (! empty($arrayfields['country.code_iso']['checked'])) { print '
'; - print $form->select_country($search_country, 'search_country', '', 0, 'maxwidth100'); + print $form->select_country($search_country, 'search_country', '', 0, 'minwidth100imp maxwidth100'); print ''; - print $form->select_country($search_country, 'search_country', '', 0, 'maxwidth100'); + print $form->select_country($search_country, 'search_country', '', 0, 'minwidth100imp maxwidth100'); print ''; - print $form->select_country($search_country, 'search_country', '', 0, 'maxwidth100'); + print $form->select_country($search_country, 'search_country', '', 0, 'minwidth100imp maxwidth100'); print ''; - print $form->select_country($search_country, 'search_country', '', 0, 'maxwidth100'); + print $form->select_country($search_country, 'search_country', '', 0, 'minwidth100imp maxwidth100'); print ''; - print $form->select_country($search_country, 'search_country', '', 0, 'maxwidth100'); + print $form->select_country($search_country, 'search_country', '', 0, 'minwidth100imp maxwidth100'); print ''; - print $form->select_country($search_country, 'search_country', '', 0, 'maxwidth100'); + print $form->select_country($search_country, 'search_country', '', 0, 'minwidth100imp maxwidth100'); print '