Debug and fix when using dolibarr with jmobile
This commit is contained in:
parent
96e5651ed5
commit
abe3f192fa
@ -1,6 +1,6 @@
|
|||||||
<?php
|
<?php
|
||||||
/* Copyright (C) 2001-2006 Rodolphe Quiedeville <rodolphe@quiedeville.org>
|
/* Copyright (C) 2001-2006 Rodolphe Quiedeville <rodolphe@quiedeville.org>
|
||||||
* Copyright (C) 2004-2012 Laurent Destailleur <eldy@users.sourceforge.net>
|
* Copyright (C) 2004-2016 Laurent Destailleur <eldy@users.sourceforge.net>
|
||||||
*
|
*
|
||||||
* This program is free software; you can redistribute it and/or modify
|
* This program is free software; you can redistribute it and/or modify
|
||||||
* it under the terms of the GNU General Public License as published by
|
* it under the terms of the GNU General Public License as published by
|
||||||
@ -19,7 +19,7 @@
|
|||||||
/**
|
/**
|
||||||
* \file htdocs/compta/recap-compta.php
|
* \file htdocs/compta/recap-compta.php
|
||||||
* \ingroup compta
|
* \ingroup compta
|
||||||
* \brief Page de fiche recap compta
|
* \brief Page de fiche recap customer
|
||||||
*/
|
*/
|
||||||
|
|
||||||
require '../main.inc.php';
|
require '../main.inc.php';
|
||||||
@ -61,10 +61,11 @@ if ($socid > 0)
|
|||||||
|
|
||||||
dol_fiche_head($head, 'customer', $langs->trans("ThirdParty"), 0, 'company');
|
dol_fiche_head($head, 'customer', $langs->trans("ThirdParty"), 0, 'company');
|
||||||
dol_banner_tab($societe, 'socid', '', ($user->societe_id?0:1), 'rowid', 'nom');
|
dol_banner_tab($societe, 'socid', '', ($user->societe_id?0:1), 'rowid', 'nom');
|
||||||
|
dol_fiche_end();
|
||||||
|
|
||||||
if (! empty($conf->facture->enabled) && $user->rights->facture->lire)
|
if (! empty($conf->facture->enabled) && $user->rights->facture->lire)
|
||||||
{
|
{
|
||||||
// Factures
|
// Invoice list
|
||||||
print load_fiche_titre($langs->trans("CustomerPreview"));
|
print load_fiche_titre($langs->trans("CustomerPreview"));
|
||||||
|
|
||||||
print '<table class="noborder" width="100%">';
|
print '<table class="noborder" width="100%">';
|
||||||
@ -226,10 +227,7 @@ if ($socid > 0)
|
|||||||
}
|
}
|
||||||
|
|
||||||
print "</table>";
|
print "</table>";
|
||||||
print "<br>";
|
|
||||||
}
|
}
|
||||||
|
|
||||||
print '</div>';
|
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|||||||
@ -4850,7 +4850,7 @@ class Form
|
|||||||
</dt>
|
</dt>
|
||||||
<dd>
|
<dd>
|
||||||
<div class="multiselectcheckbox'.$htmlname.'">
|
<div class="multiselectcheckbox'.$htmlname.'">
|
||||||
<ul>
|
<ul class="ul'.$htmlname.'">
|
||||||
'.$lis.'
|
'.$lis.'
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@ -66,40 +66,69 @@ $hookmanager->initHooks(array('searchform'));
|
|||||||
|
|
||||||
// Define $searchform
|
// Define $searchform
|
||||||
$searchform = '';
|
$searchform = '';
|
||||||
|
|
||||||
// TODO Mutualize code here with function left_menu into main.inc.php page
|
// TODO Mutualize code here with function left_menu into main.inc.php page
|
||||||
|
if ($conf->use_javascript_ajax && 1 == 2)
|
||||||
|
{
|
||||||
|
if (! is_object($form)) $form=new Form($db);
|
||||||
|
$selected=-1;
|
||||||
|
$searchform.=$form->selectArrayAjax('searchselectcombo', DOL_URL_ROOT.'/core/ajax/selectsearchbox.php', $selected, 'data-role="none"', '', 0, 1, 'vmenusearchselectcombo', 1, $langs->trans("Search"), 0);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
// Define $searchform
|
||||||
if ((( ! empty($conf->societe->enabled) && (empty($conf->global->SOCIETE_DISABLE_PROSPECTS) || empty($conf->global->SOCIETE_DISABLE_CUSTOMERS))) || ! empty($conf->fournisseur->enabled)) && ! empty($conf->global->MAIN_SEARCHFORM_SOCIETE) && $user->rights->societe->lire)
|
if ((( ! empty($conf->societe->enabled) && (empty($conf->global->SOCIETE_DISABLE_PROSPECTS) || empty($conf->global->SOCIETE_DISABLE_CUSTOMERS))) || ! empty($conf->fournisseur->enabled)) && ! empty($conf->global->MAIN_SEARCHFORM_SOCIETE) && $user->rights->societe->lire)
|
||||||
{
|
{
|
||||||
$langs->load("companies");
|
$langs->load("companies");
|
||||||
$searchform.=printSearchForm(DOL_URL_ROOT.'/societe/list.php', DOL_URL_ROOT.'/societe/list.php', img_object('','company').' '.$langs->trans("ThirdParties"), 'soc', 'sall', '', 'company');
|
$searchform.=printSearchForm(DOL_URL_ROOT.'/societe/list.php', DOL_URL_ROOT.'/societe/list.php', $langs->trans("ThirdParties"), 'soc', 'sall', 'T', 'searchleftt', img_object('','company'));
|
||||||
$nbofsearch++;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (! empty($conf->societe->enabled) && ! empty($conf->global->MAIN_SEARCHFORM_CONTACT) && $user->rights->societe->lire)
|
if (! empty($conf->societe->enabled) && ! empty($conf->global->MAIN_SEARCHFORM_CONTACT) && $user->rights->societe->lire)
|
||||||
{
|
{
|
||||||
$langs->load("companies");
|
$langs->load("companies");
|
||||||
$searchform.=printSearchForm(DOL_URL_ROOT.'/contact/list.php', DOL_URL_ROOT.'/contact/list.php', img_object('','contact').' '.$langs->trans("Contacts"), 'contact', 'sall', '', 'contact');
|
$searchform.=printSearchForm(DOL_URL_ROOT.'/contact/list.php', DOL_URL_ROOT.'/contact/list.php', $langs->trans("Contacts"), 'contact', 'sall', 'A', 'searchleftc', img_object('','contact'));
|
||||||
$nbofsearch++;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (((! empty($conf->product->enabled) && $user->rights->produit->lire) || (! empty($conf->service->enabled) && $user->rights->service->lire))
|
if (((! empty($conf->product->enabled) && $user->rights->produit->lire) || (! empty($conf->service->enabled) && $user->rights->service->lire))
|
||||||
&& ! empty($conf->global->MAIN_SEARCHFORM_PRODUITSERVICE))
|
&& ! empty($conf->global->MAIN_SEARCHFORM_PRODUITSERVICE))
|
||||||
{
|
{
|
||||||
$langs->load("products");
|
$langs->load("products");
|
||||||
$searchform.=printSearchForm(DOL_URL_ROOT.'/product/list.php', DOL_URL_ROOT.'/product/list.php', img_object('','product').' '.$langs->trans("Products")."/".$langs->trans("Services"), 'products', 'sall', '', 'product');
|
$searchform.=printSearchForm(DOL_URL_ROOT.'/product/list.php', DOL_URL_ROOT.'/product/list.php', $langs->trans("Products")."/".$langs->trans("Services"), 'products', 'sall', 'P', 'searchleftp', img_object('','product'));
|
||||||
$nbofsearch++;
|
}
|
||||||
|
|
||||||
|
if (((! empty($conf->product->enabled) && $user->rights->produit->lire) || (! empty($conf->service->enabled) && $user->rights->service->lire)) && ! empty($conf->fournisseur->enabled)
|
||||||
|
&& ! empty($conf->global->MAIN_SEARCHFORM_PRODUITSERVICE_SUPPLIER))
|
||||||
|
{
|
||||||
|
$langs->load("products");
|
||||||
|
$searchform.=printSearchForm(DOL_URL_ROOT.'/fourn/product/list.php', DOL_URL_ROOT.'/fourn/product/list.php', $langs->trans("SupplierRef"), 'products', 'srefsupplier', '', 'searchlefts', img_object('','product'));
|
||||||
|
}
|
||||||
|
|
||||||
|
if (! empty($conf->projet->enabled) && ! empty($conf->global->MAIN_SEARCHFORM_PROJECT) && $user->rights->projet->lire)
|
||||||
|
{
|
||||||
|
$langs->load("projects");
|
||||||
|
$searchform.=printSearchForm(DOL_URL_ROOT.'/projet/list.php', DOL_URL_ROOT.'/projet/list.php', $langs->trans("Projects"), 'project', 'search_all', 'Q', 'searchleftproj', img_object('','projectpub'));
|
||||||
}
|
}
|
||||||
|
|
||||||
if (! empty($conf->adherent->enabled) && ! empty($conf->global->MAIN_SEARCHFORM_ADHERENT) && $user->rights->adherent->lire)
|
if (! empty($conf->adherent->enabled) && ! empty($conf->global->MAIN_SEARCHFORM_ADHERENT) && $user->rights->adherent->lire)
|
||||||
{
|
{
|
||||||
$langs->load("members");
|
$langs->load("members");
|
||||||
$searchform.=printSearchForm(DOL_URL_ROOT.'/adherents/list.php', DOL_URL_ROOT.'/adherents/list.php', img_object('','user').' '.$langs->trans("Members"), 'member', 'sall', '', 'member');
|
$searchform.=printSearchForm(DOL_URL_ROOT.'/adherents/list.php', DOL_URL_ROOT.'/adherents/list.php', $langs->trans("Members"), 'member', 'sall', 'M', 'searchleftm', img_object('','user'));
|
||||||
$nbofsearch++;
|
}
|
||||||
|
|
||||||
|
if (! empty($conf->user->enabled) && ! empty($conf->global->MAIN_SEARCHFORM_USER) && $user->rights->user->user->lire)
|
||||||
|
{
|
||||||
|
$langs->load("users");
|
||||||
|
$searchform.=printSearchForm(DOL_URL_ROOT.'/user/list.php', DOL_URL_ROOT.'/user/list.php', $langs->trans("Users"), 'user', 'sall', 'M', 'searchleftuser', img_object('','user'));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Execute hook printSearchForm
|
// Execute hook printSearchForm
|
||||||
$parameters=array();
|
$parameters=array('searchform'=>$searchform);
|
||||||
$reshook=$hookmanager->executeHooks('printSearchForm',$parameters);
|
$reshook=$hookmanager->executeHooks('printSearchForm',$parameters); // Note that $action and $object may have been modified by some hooks
|
||||||
if (empty($reshook)) $searchform.=$hookmanager->resPrint;
|
if (empty($reshook))
|
||||||
|
{
|
||||||
|
$searchform.=$hookmanager->resPrint;
|
||||||
|
}
|
||||||
else $searchform=$hookmanager->resPrint;
|
else $searchform=$hookmanager->resPrint;
|
||||||
|
|
||||||
|
|
||||||
@ -113,7 +142,7 @@ print $searchform;
|
|||||||
print '</div>'."\n";
|
print '</div>'."\n";
|
||||||
//print '</div></div>';
|
//print '</div></div>';
|
||||||
print '</div></div>';
|
print '</div></div>';
|
||||||
print "<!-- End SearchForm -->\n";
|
print "\n<!-- End SearchForm -->\n";
|
||||||
|
|
||||||
print '</div>';
|
print '</div>';
|
||||||
print '</body></html>'."\n";
|
print '</body></html>'."\n";
|
||||||
|
|||||||
@ -1,6 +1,6 @@
|
|||||||
<?php
|
<?php
|
||||||
/* Copyright (C) 2001-2004 Rodolphe Quiedeville <rodolphe@quiedeville.org>
|
/* Copyright (C) 2001-2004 Rodolphe Quiedeville <rodolphe@quiedeville.org>
|
||||||
* Copyright (C) 2004-2010 Laurent Destailleur <eldy@users.sourceforge.net>
|
* Copyright (C) 2004-2016 Laurent Destailleur <eldy@users.sourceforge.net>
|
||||||
*
|
*
|
||||||
* This program is free software; you can redistribute it and/or modify
|
* This program is free software; you can redistribute it and/or modify
|
||||||
* it under the terms of the GNU General Public License as published by
|
* it under the terms of the GNU General Public License as published by
|
||||||
@ -19,7 +19,7 @@
|
|||||||
/**
|
/**
|
||||||
* \file htdocs/fourn/recap-fourn.php
|
* \file htdocs/fourn/recap-fourn.php
|
||||||
* \ingroup fournisseur
|
* \ingroup fournisseur
|
||||||
* \brief Page de fiche recap fournisseur
|
* \brief Page de fiche recap supplier
|
||||||
*/
|
*/
|
||||||
|
|
||||||
require '../main.inc.php';
|
require '../main.inc.php';
|
||||||
@ -30,7 +30,7 @@ $langs->load("companies");
|
|||||||
$langs->load("bills");
|
$langs->load("bills");
|
||||||
|
|
||||||
// Security check
|
// Security check
|
||||||
$socid = $_GET["socid"];
|
$socid = GETPOST("socid",'int');
|
||||||
if ($user->societe_id > 0)
|
if ($user->societe_id > 0)
|
||||||
{
|
{
|
||||||
$action = '';
|
$action = '';
|
||||||
@ -43,6 +43,9 @@ if ($user->societe_id > 0)
|
|||||||
* View
|
* View
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
$form = new Form($db);
|
||||||
|
$userstatic=new User($db);
|
||||||
|
|
||||||
llxHeader();
|
llxHeader();
|
||||||
|
|
||||||
if ($socid > 0)
|
if ($socid > 0)
|
||||||
@ -56,36 +59,12 @@ if ($socid > 0)
|
|||||||
$head = societe_prepare_head($societe);
|
$head = societe_prepare_head($societe);
|
||||||
|
|
||||||
dol_fiche_head($head, 'supplier', $langs->trans("ThirdParty"), 0, 'company');
|
dol_fiche_head($head, 'supplier', $langs->trans("ThirdParty"), 0, 'company');
|
||||||
|
dol_banner_tab($societe, 'socid', '', ($user->societe_id?0:1), 'rowid', 'nom');
|
||||||
|
dol_fiche_end();
|
||||||
print "<table width=\"100%\">\n";
|
|
||||||
print '<tr><td valign="top" width="50%">';
|
|
||||||
|
|
||||||
print '<table class="border" width="100%">';
|
|
||||||
|
|
||||||
// Nom
|
|
||||||
print '<tr><td width="20%">'.$langs->trans("Name").'</td><td width="80%" colspan="3">'.$societe->nom.'</td></tr>';
|
|
||||||
|
|
||||||
// Prefix
|
|
||||||
if (! empty($conf->global->SOCIETE_USEPREFIX)) // Old not used prefix field
|
|
||||||
{
|
|
||||||
print '<tr><td>'.$langs->trans("Prefix").'</td><td colspan="3">';
|
|
||||||
print ($societe->prefix_comm?$societe->prefix_comm:' ');
|
|
||||||
print '</td></tr>';
|
|
||||||
}
|
|
||||||
|
|
||||||
print "</table>";
|
|
||||||
|
|
||||||
print "</td></tr></table>\n";
|
|
||||||
|
|
||||||
print '</div>';
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
if (! empty($conf->fournisseur->enabled) && $user->rights->facture->lire)
|
if (! empty($conf->fournisseur->enabled) && $user->rights->facture->lire)
|
||||||
{
|
{
|
||||||
// Invoices list
|
// Invoice list
|
||||||
print load_fiche_titre($langs->trans("SupplierPreview"));
|
print load_fiche_titre($langs->trans("SupplierPreview"));
|
||||||
|
|
||||||
print '<table class="noborder" width="100%">';
|
print '<table class="noborder" width="100%">';
|
||||||
@ -203,10 +182,9 @@ if ($socid > 0)
|
|||||||
{
|
{
|
||||||
dol_print_error($db);
|
dol_print_error($db);
|
||||||
}
|
}
|
||||||
print "</table>";
|
|
||||||
print "<br>";
|
|
||||||
}
|
|
||||||
|
|
||||||
|
print "</table>";
|
||||||
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|||||||
@ -1683,33 +1683,11 @@ function left_menu($menu_array_before, $helppagename='', $notused='', $menu_arra
|
|||||||
|
|
||||||
print '<div class="vmenu">'."\n\n";
|
print '<div class="vmenu">'."\n\n";
|
||||||
|
|
||||||
// Show other forms
|
// Show left menu with other forms
|
||||||
/*if ($searchform)
|
|
||||||
{
|
|
||||||
print "\n";
|
|
||||||
print "<!-- Begin SearchForm -->\n";
|
|
||||||
print '<div id="blockvmenusearch" class="blockvmenusearch">'."\n";
|
|
||||||
print $searchform;
|
|
||||||
print '</div>'."\n";
|
|
||||||
print "<!-- End SearchForm -->\n";
|
|
||||||
}*/
|
|
||||||
|
|
||||||
$menumanager->menu_array = $menu_array_before;
|
$menumanager->menu_array = $menu_array_before;
|
||||||
$menumanager->menu_array_after = $menu_array_after;
|
$menumanager->menu_array_after = $menu_array_after;
|
||||||
$menumanager->showmenu('left', array('searchform'=>$searchform, 'bookmarks'=>$bookmarks)); // output menu_array and menu found in database
|
$menumanager->showmenu('left', array('searchform'=>$searchform, 'bookmarks'=>$bookmarks)); // output menu_array and menu found in database
|
||||||
|
|
||||||
// Bookmarks
|
|
||||||
/*
|
|
||||||
if ($bookmarks)
|
|
||||||
{
|
|
||||||
print "\n";
|
|
||||||
print "<!-- Begin Bookmarks -->\n";
|
|
||||||
print '<div id="blockvmenubookmarks" class="blockvmenubookmarks">'."\n";
|
|
||||||
print $bookmarks;
|
|
||||||
print '</div>'."\n";
|
|
||||||
print "<!-- End Bookmarks -->\n";
|
|
||||||
}*/
|
|
||||||
|
|
||||||
// Dolibarr version + help + bug report link
|
// Dolibarr version + help + bug report link
|
||||||
print "\n";
|
print "\n";
|
||||||
print "<!-- Begin Help Block-->\n";
|
print "<!-- Begin Help Block-->\n";
|
||||||
|
|||||||
@ -654,7 +654,7 @@ if ($resql)
|
|||||||
// Company type
|
// Company type
|
||||||
if (! empty($arrayfields['typent.code']['checked']))
|
if (! empty($arrayfields['typent.code']['checked']))
|
||||||
{
|
{
|
||||||
print '<td class="liste_titre" align="center">';
|
print '<td class="liste_titre maxwidthonsmartphone" align="center">';
|
||||||
print $form->selectarray("search_type_thirdparty", $formcompany->typent_array(0), $search_type_thirdparty, 0, 0, 0, '', 0, 0, 0, (empty($conf->global->SOCIETE_SORT_ON_TYPEENT)?'ASC':$conf->global->SOCIETE_SORT_ON_TYPEENT));
|
print $form->selectarray("search_type_thirdparty", $formcompany->typent_array(0), $search_type_thirdparty, 0, 0, 0, '', 0, 0, 0, (empty($conf->global->SOCIETE_SORT_ON_TYPEENT)?'ASC':$conf->global->SOCIETE_SORT_ON_TYPEENT));
|
||||||
print '</td>';
|
print '</td>';
|
||||||
}
|
}
|
||||||
@ -702,7 +702,7 @@ if ($resql)
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Type (customer/prospect/supplier)
|
// Type (customer/prospect/supplier)
|
||||||
print '<td class="liste_titre" align="middle">';
|
print '<td class="liste_titre maxwidthonsmartphone" align="middle">';
|
||||||
print '<select class="flat" name="search_type">';
|
print '<select class="flat" name="search_type">';
|
||||||
print '<option value="-1"'.($search_type==''?' selected':'').'> </option>';
|
print '<option value="-1"'.($search_type==''?' selected':'').'> </option>';
|
||||||
if (empty($conf->global->SOCIETE_DISABLE_CUSTOMERS)) print '<option value="1,3"'.($search_type=='1,3'?' selected':'').'>'.$langs->trans('Customer').'</option>';
|
if (empty($conf->global->SOCIETE_DISABLE_CUSTOMERS)) print '<option value="1,3"'.($search_type=='1,3'?' selected':'').'>'.$langs->trans('Customer').'</option>';
|
||||||
@ -743,7 +743,7 @@ if ($resql)
|
|||||||
if (! empty($arrayfields['s.fk_stcomm']['checked']))
|
if (! empty($arrayfields['s.fk_stcomm']['checked']))
|
||||||
{
|
{
|
||||||
// Prospect status
|
// Prospect status
|
||||||
print '<td class="liste_titre" align="center">';
|
print '<td class="liste_titre maxwidthonsmartphone" align="center">';
|
||||||
$arraystcomm=array();
|
$arraystcomm=array();
|
||||||
foreach($prospectstatic->cacheprospectstatus as $key => $val)
|
foreach($prospectstatic->cacheprospectstatus as $key => $val)
|
||||||
{
|
{
|
||||||
@ -783,7 +783,7 @@ if ($resql)
|
|||||||
// Status
|
// Status
|
||||||
if (! empty($arrayfields['s.status']['checked']))
|
if (! empty($arrayfields['s.status']['checked']))
|
||||||
{
|
{
|
||||||
print '<td class="liste_titre" align="center">';
|
print '<td class="liste_titre maxwidthonsmartphone" align="center">';
|
||||||
print $form->selectarray('search_status', array('0'=>$langs->trans('ActivityCeased'),'1'=>$langs->trans('InActivity')),$search_status);
|
print $form->selectarray('search_status', array('0'=>$langs->trans('ActivityCeased'),'1'=>$langs->trans('InActivity')),$search_status);
|
||||||
print '</td>';
|
print '</td>';
|
||||||
}
|
}
|
||||||
|
|||||||
@ -582,8 +582,8 @@ td.showDragHandle {
|
|||||||
|
|
||||||
|
|
||||||
div.fiche {
|
div.fiche {
|
||||||
margin-<?php print $left; ?>: <?php print (GETPOST("optioncss") == 'print'?6:((empty($conf->global->MAIN_MENU_USE_JQUERY_LAYOUT))?($dol_hide_leftmenu?'8':'20'):'24')); ?>px;
|
margin-<?php print $left; ?>: <?php print (GETPOST("optioncss") == 'print'?6:((empty($conf->global->MAIN_MENU_USE_JQUERY_LAYOUT))?($dol_hide_leftmenu?'6':'20'):'24')); ?>px;
|
||||||
margin-<?php print $right; ?>: <?php print (GETPOST("optioncss") == 'print'?8:(empty($conf->dol_optimize_smallscreen)?'12':'8')); ?>px;
|
margin-<?php print $right; ?>: <?php print (GETPOST("optioncss") == 'print'?8:(empty($conf->dol_optimize_smallscreen)?'12':'6')); ?>px;
|
||||||
<?php if (! empty($conf->dol_hide_leftmenu) && ! empty($conf->dol_hide_topmenu)) print 'margin-top: 4px;'; ?>
|
<?php if (! empty($conf->dol_hide_leftmenu) && ! empty($conf->dol_hide_topmenu)) print 'margin-top: 4px;'; ?>
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -3664,6 +3664,9 @@ span.noborderoncategories {
|
|||||||
/* Multiselect with checkbox */
|
/* Multiselect with checkbox */
|
||||||
/* ============================================================================== */
|
/* ============================================================================== */
|
||||||
|
|
||||||
|
ul.ulselectedfields {
|
||||||
|
z-index: 100; /* To have the select box appears on first plan even when near buttons are decorated by jmobile */
|
||||||
|
}
|
||||||
dl.dropdown {
|
dl.dropdown {
|
||||||
margin:0px;
|
margin:0px;
|
||||||
padding:0px;
|
padding:0px;
|
||||||
@ -3754,8 +3757,12 @@ a.ui-link, a.ui-link:hover, .ui-btn:hover, span.ui-btn-text:hover, span.ui-btn-i
|
|||||||
.ui-select .ui-btn-icon-left .ui-btn-inner {
|
.ui-select .ui-btn-icon-left .ui-btn-inner {
|
||||||
padding-left: 38px;
|
padding-left: 38px;
|
||||||
}
|
}
|
||||||
.ui-select {
|
select {
|
||||||
display: inline-block;
|
/* display: inline-block; */ /* We can't set this. This disable ability to make */
|
||||||
|
/* TODO added by jmobile, replace jmobile with pure css*/
|
||||||
|
overflow:hidden;
|
||||||
|
white-space: nowrap;
|
||||||
|
text-overflow: ellipsis;
|
||||||
}
|
}
|
||||||
.fiche .ui-controlgroup {
|
.fiche .ui-controlgroup {
|
||||||
margin: 0px;
|
margin: 0px;
|
||||||
|
|||||||
@ -3511,6 +3511,9 @@ span.noborderoncategories {
|
|||||||
/* Multiselect with checkbox */
|
/* Multiselect with checkbox */
|
||||||
/* ============================================================================== */
|
/* ============================================================================== */
|
||||||
|
|
||||||
|
ul.ulselectedfields {
|
||||||
|
z-index: 100; /* To have the select box appears on first plan even when near buttons are decorated by jmobile */
|
||||||
|
}
|
||||||
dl.dropdown {
|
dl.dropdown {
|
||||||
margin:0px;
|
margin:0px;
|
||||||
padding:0px;
|
padding:0px;
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user