diff --git a/build/makepack-howto.txt b/build/makepack-howto.txt index 173c01c6f8b..813db9bb4b8 100644 --- a/build/makepack-howto.txt +++ b/build/makepack-howto.txt @@ -10,13 +10,12 @@ beta version of Dolibarr, step by step. - Check all files are commited. - Update version/info in ChangeLog. To generate a changelog, you can do "git log `git merge-base 3.7.0 origin/develop`.. --no-merges --pretty=short --oneline | sed -e "s/^[0-9a-z]* //" | grep -e '^FIX\|NEW' | sort -u | sed 's/FIXED:/FIX:/g' | sed 's/FIXED :/FIX:/g' | sed 's/FIX :/FIX:/g' | sed 's/FIX /FIX: /g' | sed 's/NEW :/NEW:/g' | sed 's/NEW /NEW: /g' > /tmp/aaa" - Update version number with x.y.z-w in htdocs/filefunc.inc.php -- Update version number with x.y.z-w in build/debian/changelog - Commit all changes. -- Add a Tag (x.y.z-beta) and push it: git push --tags -- Create a branch (x.y). - Run makepack-dolibarr.pl to generate all packages. +- Create a branch (x.y), if version seems stable enough. + - Move build files into www.dolibarr.org web site (/home/dolibarr/wwwroot/files/lastbuild). @@ -31,7 +30,6 @@ complete release of Dolibarr, step by step. - Check all files are commited. - Update version/info in ChangeLog. To generate a changelog, you can do "git log `git merge-base 3.7.0 origin/develop`.. --no-merges --pretty=short --oneline | sed -e "s/^[0-9a-z]* //" | grep -e '^FIX\|NEW' | sort -u | sed 's/FIXED:/FIX:/g' | sed 's/FIXED :/FIX:/g' | sed 's/FIX :/FIX:/g' | sed 's/FIX /FIX: /g' | sed 's/NEW :/NEW:/g' | sed 's/NEW /NEW: /g' > /tmp/aaa" - Update version number with x.y.z in htdocs/filefunc.inc.php -- Update version number with x.y.z in build/debian/changelog - Commit all changes. - Run makepack-dolibarr.pl to generate all packages. diff --git a/htdocs/admin/agenda_other.php b/htdocs/admin/agenda_other.php index 364680757cf..b9051f6f33a 100644 --- a/htdocs/admin/agenda_other.php +++ b/htdocs/admin/agenda_other.php @@ -74,8 +74,9 @@ if (preg_match('/del_(.*)/',$action,$reg)) if ($action == 'set') { - dolibarr_set_const($db, 'AGENDA_DEFAULT_FILTER_TYPE', GETPOST('AGENDA_DEFAULT_FILTER_TYPE'), 'chaine', 0, '', $conf->entity); - dolibarr_set_const($db, 'AGENDA_DEFAULT_FILTER_STATUS', GETPOST('AGENDA_DEFAULT_FILTER_STATUS'), 'chaine', 0, '', $conf->entity); + dolibarr_set_const($db, 'AGENDA_USE_EVENT_TYPE_DEFAULT', GETPOST('AGENDA_USE_EVENT_TYPE_DEFAULT'), 'chaine', 0, '', $conf->entity); + dolibarr_set_const($db, 'AGENDA_DEFAULT_FILTER_TYPE', GETPOST('AGENDA_DEFAULT_FILTER_TYPE'), 'chaine', 0, '', $conf->entity); + dolibarr_set_const($db, 'AGENDA_DEFAULT_FILTER_STATUS', GETPOST('AGENDA_DEFAULT_FILTER_STATUS'), 'chaine', 0, '', $conf->entity); dolibarr_set_const($db, 'AGENDA_DEFAULT_VIEW', GETPOST('AGENDA_DEFAULT_VIEW'), 'chaine', 0, '', $conf->entity); } @@ -127,6 +128,17 @@ else } print ''."\n"; +if (! empty($conf->global->AGENDA_USE_EVENT_TYPE)) +{ + $var=!$var; + print ''."\n"; + print ''.$langs->trans("AGENDA_USE_EVENT_TYPE_DEFAULT").''."\n"; + print ' '."\n"; + print ''."\n"; + $formactions->select_type_actions($conf->global->AGENDA_USE_EVENT_TYPE_DEFAULT, "AGENDA_USE_EVENT_TYPE_DEFAULT", '', 0, 1); + print ''."\n"; +} + // AGENDA_DEFAULT_FILTER_TYPE $var=!$var; print ''."\n"; diff --git a/htdocs/admin/company.php b/htdocs/admin/company.php index e2b378f5aa2..eb78ead387b 100644 --- a/htdocs/admin/company.php +++ b/htdocs/admin/company.php @@ -414,9 +414,9 @@ if ($action == 'edit' || $action == 'updateedit') // Forme juridique $var=!$var; - print ''; + print ''; if ($mysoc->country_code) { - print $formcompany->select_juridicalstatus($conf->global->MAIN_INFO_SOCIETE_FORME_JURIDIQUE, $mysoc->country_code, '', 'legal_form'); + print $formcompany->select_juridicalstatus($conf->global->MAIN_INFO_SOCIETE_FORME_JURIDIQUE, $mysoc->country_code, '', 'forme_juridique_code'); } else { print $countrynotdefined; } diff --git a/htdocs/admin/dict.php b/htdocs/admin/dict.php index b5af472a6cf..e2f4b03754c 100644 --- a/htdocs/admin/dict.php +++ b/htdocs/admin/dict.php @@ -151,7 +151,7 @@ $tabsql[8] = "SELECT t.id as rowid, t.code as code, t.libelle, t.fk_country a $tabsql[9] = "SELECT c.code_iso as code, c.label, c.unicode, c.active FROM ".MAIN_DB_PREFIX."c_currencies AS c"; $tabsql[10]= "SELECT t.rowid, t.taux, t.localtax1_type, t.localtax1, t.localtax2_type, t.localtax2, c.label as country, c.code as country_code, t.fk_pays as country_id, t.recuperableonly, t.note, t.active, t.accountancy_code_sell, t.accountancy_code_buy FROM ".MAIN_DB_PREFIX."c_tva as t, ".MAIN_DB_PREFIX."c_country as c WHERE t.fk_pays=c.rowid"; $tabsql[11]= "SELECT t.rowid as rowid, element, source, code, libelle, active FROM ".MAIN_DB_PREFIX."c_type_contact AS t"; -$tabsql[12]= "SELECT c.rowid as rowid, c.code, c.sortorder, c.libelle, c.libelle_facture, nbjour, fdm, decalage, active FROM ".MAIN_DB_PREFIX.'c_payment_term AS c'; +$tabsql[12]= "SELECT c.rowid as rowid, c.code, c.libelle, c.libelle_facture, c.nbjour, c.fdm, c.decalage, c.active, c.sortorder FROM ".MAIN_DB_PREFIX.'c_payment_term AS c'; $tabsql[13]= "SELECT c.id as rowid, c.code, c.libelle, c.type, c.active, c.accountancy_code FROM ".MAIN_DB_PREFIX."c_paiement AS c"; $tabsql[14]= "SELECT e.rowid as rowid, e.code as code, e.libelle, e.price, e.organization, e.fk_pays as country_id, c.code as country_code, c.label as country, e.active FROM ".MAIN_DB_PREFIX."c_ecotaxe AS e, ".MAIN_DB_PREFIX."c_country as c WHERE e.fk_pays=c.rowid and c.active=1"; $tabsql[15]= "SELECT rowid as rowid, code, label as libelle, width, height, unit, active FROM ".MAIN_DB_PREFIX."c_paper_format"; @@ -215,7 +215,7 @@ $tabfield[8] = "code,libelle,country_id,country"; $tabfield[9] = "code,label,unicode"; $tabfield[10]= "country_id,country,taux,recuperableonly,localtax1_type,localtax1,localtax2_type,localtax2,accountancy_code_sell,accountancy_code_buy,note"; $tabfield[11]= "element,source,code,libelle"; -$tabfield[12]= "code,libelle,libelle_facture,nbjour,fdm,decalage"; +$tabfield[12]= "code,libelle,libelle_facture,nbjour,fdm,decalage,sortorder"; $tabfield[13]= "code,libelle,type,accountancy_code"; $tabfield[14]= "code,libelle,price,organization,country_id,country"; $tabfield[15]= "code,libelle,width,height,unit"; @@ -247,7 +247,7 @@ $tabfieldvalue[8] = "code,libelle,country"; $tabfieldvalue[9] = "code,label,unicode"; $tabfieldvalue[10]= "country,taux,recuperableonly,localtax1_type,localtax1,localtax2_type,localtax2,accountancy_code_sell,accountancy_code_buy,note"; $tabfieldvalue[11]= "element,source,code,libelle"; -$tabfieldvalue[12]= "code,libelle,libelle_facture,nbjour,fdm,decalage"; +$tabfieldvalue[12]= "code,libelle,libelle_facture,nbjour,fdm,decalage,sortorder"; $tabfieldvalue[13]= "code,libelle,type,accountancy_code"; $tabfieldvalue[14]= "code,libelle,price,organization,country"; $tabfieldvalue[15]= "code,libelle,width,height,unit"; @@ -279,7 +279,7 @@ $tabfieldinsert[8] = "code,libelle,fk_country"; $tabfieldinsert[9] = "code_iso,label,unicode"; $tabfieldinsert[10]= "fk_pays,taux,recuperableonly,localtax1_type,localtax1,localtax2_type,localtax2,accountancy_code_sell,accountancy_code_buy,note"; $tabfieldinsert[11]= "element,source,code,libelle"; -$tabfieldinsert[12]= "code,libelle,libelle_facture,nbjour,fdm,decalage"; +$tabfieldinsert[12]= "code,libelle,libelle_facture,nbjour,fdm,decalage,sortorder"; $tabfieldinsert[13]= "code,libelle,type,accountancy_code"; $tabfieldinsert[14]= "code,libelle,price,organization,fk_pays"; $tabfieldinsert[15]= "code,label,width,height,unit"; @@ -1595,6 +1595,7 @@ function fieldList($fieldlist, $obj='', $tabname='', $context='') if ($fieldlist[$field]=='accountancy_code') $size='size="10" '; if ($fieldlist[$field]=='accountancy_code_sell') $size='size="10" '; if ($fieldlist[$field]=='accountancy_code_buy') $size='size="10" '; + if ($fieldlist[$field]=='sortorder') $size='size="2" '; print ''; print ''; } diff --git a/htdocs/admin/ihm.php b/htdocs/admin/ihm.php index 31bbbb5d550..8d93dfc950c 100644 --- a/htdocs/admin/ihm.php +++ b/htdocs/admin/ihm.php @@ -89,8 +89,8 @@ if ($action == 'update') dolibarr_set_const($db, "MAIN_HELP_DISABLELINK", $_POST["MAIN_HELP_DISABLELINK"],'chaine',0,'',0); // Param for all entities dolibarr_set_const($db, "MAIN_BUGTRACK_ENABLELINK", $_POST["MAIN_BUGTRACK_ENABLELINK"],'chaine',0,'',$conf->entity); - if (GETPOST('check_THEME_ELDY_USE_HOVER') == 'on') dolibarr_set_const($db,"THEME_ELDY_USE_HOVER", 1,'chaine',0,'',$conf->entity); - else dolibarr_set_const($db,"THEME_ELDY_USE_HOVER",0,'chaine',0,'',$conf->entity); + if (GETPOST('THEME_ELDY_USE_HOVER') == '') dolibarr_del_const($db, "THEME_ELDY_USE_HOVER", $conf->entity); + else dolibarr_set_const($db, "THEME_ELDY_USE_HOVER", $_POST["THEME_ELDY_USE_HOVER"], 'chaine', 0, '', $conf->entity); // This one is not always defined if (isset($_POST["MAIN_USE_PREVIEW_TABS"])) dolibarr_set_const($db, "MAIN_USE_PREVIEW_TABS", $_POST["MAIN_USE_PREVIEW_TABS"],'chaine',0,'',$conf->entity); diff --git a/htdocs/categories/categorie.php b/htdocs/categories/categorie.php index b573d02bf16..aca45c5ca52 100644 --- a/htdocs/categories/categorie.php +++ b/htdocs/categories/categorie.php @@ -419,7 +419,7 @@ else if ($id || $ref) // Ref print ''.$langs->trans("Ref").''; print ''; - print $form->showrefnav($member,'id','','1','rowid','ref','','&type=3'); + print $form->showrefnav($member,'id','','1','rowid','ref','','&type='.$type); print ''; // Login diff --git a/htdocs/categories/class/categorie.class.php b/htdocs/categories/class/categorie.class.php index bcb53f8a0f5..845313c5d36 100644 --- a/htdocs/categories/class/categorie.class.php +++ b/htdocs/categories/class/categorie.class.php @@ -228,6 +228,8 @@ class Categorie extends CommonObject $error=0; + dol_syslog(get_class($this).'::create', LOG_DEBUG); + // Clean parameters $this->label = trim($this->label); $this->description = trim($this->description); @@ -246,7 +248,6 @@ class Categorie extends CommonObject $this->db->begin(); - dol_syslog(get_class($this).'::create', LOG_DEBUG); $sql = "INSERT INTO ".MAIN_DB_PREFIX."categorie ("; $sql.= "fk_parent,"; $sql.= " label,"; @@ -275,7 +276,6 @@ class Categorie extends CommonObject $sql.= $conf->entity; $sql.= ")"; - dol_syslog(get_class($this).'::create', LOG_DEBUG); $res = $this->db->query($sql); if ($res) { diff --git a/htdocs/comm/action/card.php b/htdocs/comm/action/card.php index 1e4b969644c..daeab2ba408 100644 --- a/htdocs/comm/action/card.php +++ b/htdocs/comm/action/card.php @@ -647,7 +647,8 @@ if ($action == 'create') if (! empty($conf->global->AGENDA_USE_EVENT_TYPE)) { print ''.$langs->trans("Type").''; - $formactions->select_type_actions(GETPOST("actioncode")?GETPOST("actioncode"):$object->type_code, "actioncode","systemauto"); + $default=(empty($conf->global->AGENDA_USE_EVENT_TYPE_DEFAULT)?'':$conf->global->AGENDA_USE_EVENT_TYPE_DEFAULT); + $formactions->select_type_actions(GETPOST("actioncode")?GETPOST("actioncode"):($object->type_code?$object->type_code:$default), "actioncode","systemauto"); print ''; } diff --git a/htdocs/comm/action/index.php b/htdocs/comm/action/index.php index 6b3384b92dd..dd2bd1dd9c3 100644 --- a/htdocs/comm/action/index.php +++ b/htdocs/comm/action/index.php @@ -949,7 +949,7 @@ if (empty($action) || $action == 'show_month') // View by month $newparam=preg_replace('/viewcal=[0-9]+&?/i','',$newparam); $newparam=preg_replace('/showbirthday_=/i','showbirthday=',$newparam); // Restore correct parameter $newparam.='&viewcal=1'; - echo ''; + echo '
'; echo ' '; $i=0; while ($i < 7) @@ -1026,7 +1026,7 @@ elseif ($action == 'show_week') // View by week $newparam=preg_replace('/viewweek=[0-9]+&?/i','',$newparam); $newparam=preg_replace('/showbirthday_=/i','showbirthday=',$newparam); // Restore correct parameter $newparam.='&viewweek=1'; - echo '
'; + echo '
'; echo ' '; $i=0; while ($i < 7) @@ -1083,7 +1083,7 @@ else // View by day $timestamp=dol_mktime(12,0,0,$month,$day,$year); $arraytimestamp=dol_getdate($timestamp); - echo '
'; + echo '
'; echo ' '; echo ' \n"; echo " \n"; @@ -1210,7 +1210,7 @@ function show_day_events($db, $day, $month, $year, $monthshown, $style, &$eventa // We decide to choose color of owner of event (event->userownerid is user id of owner, event->userassigned contains all users assigned to event) if (! empty($cacheusers[$event->userownerid]->color)) $color=$cacheusers[$event->userownerid]->color; } - else if ($event->type_code == 'ICALEVENT') + else if ($event->type_code == 'ICALEVENT') // Event come from external ical file { $numical++; if (! empty($event->icalname)) { @@ -1220,7 +1220,7 @@ function show_day_events($db, $day, $month, $year, $monthshown, $style, &$eventa $numicals[dol_string_nospecial($event->icalname)]++; } $color=$event->icalcolor; - $cssclass=(! empty($event->icalname)?'family_ext'.md5($event->icalname):'family_other unmovable'); + $cssclass=(! empty($event->icalname)?'family_ext'.md5($event->icalname):'family_other'); } else if ($event->type_code == 'BIRTHDAY') { @@ -1266,6 +1266,10 @@ function show_day_events($db, $day, $month, $year, $monthshown, $style, &$eventa { $cssclass.= " unmovable"; } + else if ($event->type_code == 'ICALEVENT') + { + $cssclass.= " unmovable"; + } else if ($event->date_end_in_calendar && date('Ymd',$event->date_start_in_calendar) != date('Ymd',$event->date_end_in_calendar)) { $tmpyearend = date('Y',$event->date_end_in_calendar); diff --git a/htdocs/comm/propal.php b/htdocs/comm/propal.php index e8f374c3b8d..e05c5a63dd9 100644 --- a/htdocs/comm/propal.php +++ b/htdocs/comm/propal.php @@ -2121,18 +2121,20 @@ if ($action == 'create') if ($action != 'statut' && $action != 'editline') { // Validate - if ($object->statut == Propal::STATUS_DRAFT && $object->total_ttc >= 0 && count($object->lines) > 0 && - ((empty($conf->global->MAIN_USE_ADVANCED_PERMS) && ! empty($user->rights->propal->creer)) + if ($object->statut == Propal::STATUS_DRAFT && $object->total_ttc >= 0 && count($object->lines) > 0) + { + if ((empty($conf->global->MAIN_USE_ADVANCED_PERMS) && ! empty($user->rights->propal->creer)) || (! empty($conf->global->MAIN_USE_ADVANCED_PERMS) && ! empty($user->rights->propal->propal_advance->validate))) - ) { - if (count($object->lines) > 0) + { print '
' . $langs->trans('Validate') . '
'; - // else print ''.$langs->trans('Validate').''; + } + else + print '
' . $langs->trans('Validate') . '
'; } // Create event if ($conf->agenda->enabled && ! empty($conf->global->MAIN_ADD_EVENT_ON_ELEMENT_CARD)) // Add hidden condition because this is not a "workflow" action so should appears somewhere else on page. { - print '' . $langs->trans("AddAction") . ''; + print '
' . $langs->trans("AddAction") . '
'; } // Edit if ($object->statut == Propal::STATUS_VALIDATED && $user->rights->propal->creer) { diff --git a/htdocs/commande/list.php b/htdocs/commande/list.php index 1c2f34c0931..7b431ff1944 100644 --- a/htdocs/commande/list.php +++ b/htdocs/commande/list.php @@ -338,7 +338,7 @@ if ($resql) print ''; print ''; print '
'.$langs->trans("Day".$arraytimestamp['wday'])."
'; $liststatus=array('0'=>$langs->trans("StatusOrderDraftShort"), '1'=>$langs->trans("StatusOrderValidated"), '2'=>$langs->trans("StatusOrderSentShort"), '3'=>$langs->trans("StatusOrderToBill"), '4'=>$langs->trans("StatusOrderProcessed"), '-1'=>$langs->trans("StatusOrderCanceledShort")); - print $form->selectarray('viewstatut', $liststatus, $viewstatut, 1); + print $form->selectarray('viewstatut', $liststatus, $viewstatut, -4); print ''; print ''; diff --git a/htdocs/compta/facture/list.php b/htdocs/compta/facture/list.php index 11931de6a7e..83066e21df6 100644 --- a/htdocs/compta/facture/list.php +++ b/htdocs/compta/facture/list.php @@ -3,7 +3,7 @@ * Copyright (C) 2004 Eric Seigne * Copyright (C) 2004-2012 Laurent Destailleur * Copyright (C) 2005 Marc Barilley / Ocebo - * Copyright (C) 2005-2013 Regis Houssin + * Copyright (C) 2005-2015 Regis Houssin * Copyright (C) 2006 Andre Cianfarani * Copyright (C) 2010-2012 Juanjo Menent * Copyright (C) 2012 Christophe Battarel @@ -69,7 +69,7 @@ $search_refcustomer=GETPOST('search_refcustomer','alpha'); $search_societe=GETPOST('search_societe','alpha'); $search_montant_ht=GETPOST('search_montant_ht','alpha'); $search_montant_ttc=GETPOST('search_montant_ttc','alpha'); -$search_status=GETPOST('search_status','alpha'); +$search_status=GETPOST('search_status','int'); $sortfield = GETPOST("sortfield",'alpha'); $sortorder = GETPOST("sortorder",'alpha'); @@ -191,7 +191,7 @@ if ($search_refcustomer) $sql .= natural_search('f.ref_client', $search_refcusto if ($search_societe) $sql .= natural_search('s.nom', $search_societe); if ($search_montant_ht != '') $sql.= natural_search('f.total', $search_montant_ht, 1); if ($search_montant_ttc != '') $sql.= natural_search('f.total_ttc', $search_montant_ttc, 1); -if ($search_status >= 0 ) $sql.= " AND f.fk_statut = ".$db->escape($search_status); +if ($search_status != '') $sql.= " AND f.fk_statut = ".$db->escape($search_status); if ($month > 0) { if ($year > 0 && empty($day)) diff --git a/htdocs/compta/index.php b/htdocs/compta/index.php index cf5d6c990aa..59ed9afc504 100644 --- a/htdocs/compta/index.php +++ b/htdocs/compta/index.php @@ -1,7 +1,7 @@ * Copyright (C) 2004-2013 Laurent Destailleur - * Copyright (C) 2005-2012 Regis Houssin + * Copyright (C) 2005-2015 Regis Houssin * Copyright (C) 2015 Juanjo Menent * Copyright (C) 2015 Jean-François Ferry * Copyright (C) 2015 Raphaël Doursenaud @@ -781,6 +781,7 @@ if (! empty($conf->facture->enabled) && $user->rights->facture->lire) print ''; print ''; + print ''; if (! empty($conf->global->MAIN_SHOW_HT_ON_SUMMARY)) print ''; print ''; print ''; @@ -830,6 +831,7 @@ if (! empty($conf->facture->enabled) && $user->rights->facture->lire) $societestatic->code_fournisseur = $obj->code_fournisseur; print $societestatic->getNomUrl(1,'customer',44); print ''; + print ''; if (! empty($conf->global->MAIN_SHOW_HT_ON_SUMMARY)) print ''; print ''; print ''; @@ -844,6 +846,7 @@ if (! empty($conf->facture->enabled) && $user->rights->facture->lire) } print ''; + print ''; if (! empty($conf->global->MAIN_SHOW_HT_ON_SUMMARY)) print ''; print ''; print ''; @@ -852,7 +855,7 @@ if (! empty($conf->facture->enabled) && $user->rights->facture->lire) } else { - $colspan=5; + $colspan=6; if (! empty($conf->global->MAIN_SHOW_HT_ON_SUMMARY)) $colspan++; print ''; } @@ -873,6 +876,7 @@ if (! empty($conf->fournisseur->enabled) && $user->rights->fournisseur->facture- $facstatic=new FactureFournisseur($db); $sql = "SELECT ff.rowid, ff.ref, ff.fk_statut, ff.libelle, ff.total_ht, ff.total_tva, ff.total_ttc, ff.paye"; + $sql.= ", ff.date_lim_reglement"; $sql.= ", s.nom as name"; $sql.= ", s.rowid as socid"; $sql.= ", s.code_client"; @@ -889,6 +893,7 @@ if (! empty($conf->fournisseur->enabled) && $user->rights->fournisseur->facture- if ($socid) $sql.= " AND ff.fk_soc = ".$socid; $sql.= " GROUP BY ff.rowid, ff.ref, ff.fk_statut, ff.libelle, ff.total_ht, ff.tva, ff.total_tva, ff.total_ttc, ff.paye,"; $sql.= " s.nom, s.rowid, s.code_client, s.code_fournisseur"; + $sql.= " ORDER BY ff.date_lim_reglement ASC"; $resql=$db->query($sql); if ($resql) @@ -898,6 +903,7 @@ if (! empty($conf->fournisseur->enabled) && $user->rights->fournisseur->facture- print '
'.$langs->trans("BillsCustomersUnpaid",$num).' '.$num.''.$langs->trans("DateDue").''.$langs->trans("AmountHT").''.$langs->trans("AmountTTC").''.$langs->trans("Received").''.dol_print_date($db->jdate($obj->datelimite),'day').''.price($obj->total_ht).''.price($obj->total_ttc).''.price($obj->am).'
'.$langs->trans("Total").'   ('.$langs->trans("RemainderToTake").': '.price($total_ttc-$totalam).')  '.price($total).''.price($total_ttc).''.price($totalam).'
'.$langs->trans("NoInvoice").'
'; print ''; + print ''; if (! empty($conf->global->MAIN_SHOW_HT_ON_SUMMARY)) print ''; print ''; print ''; @@ -926,6 +932,7 @@ if (! empty($conf->fournisseur->enabled) && $user->rights->fournisseur->facture- $societestatic->code_client = $obj->code_client; $societestatic->code_fournisseur = $obj->code_fournisseur; print ''; + print ''; if (! empty($conf->global->MAIN_SHOW_HT_ON_SUMMARY)) print ''; print ''; print ''; @@ -939,6 +946,7 @@ if (! empty($conf->fournisseur->enabled) && $user->rights->fournisseur->facture- } print ''; + print ''; if (! empty($conf->global->MAIN_SHOW_HT_ON_SUMMARY)) print ''; print ''; print ''; @@ -947,7 +955,7 @@ if (! empty($conf->fournisseur->enabled) && $user->rights->fournisseur->facture- } else { - $colspan=5; + $colspan=6; if (! empty($conf->global->MAIN_SHOW_HT_ON_SUMMARY)) $colspan++; print ''; } diff --git a/htdocs/compta/tva/clients.php b/htdocs/compta/tva/clients.php index b2a2d6b2638..b57b0d050d7 100644 --- a/htdocs/compta/tva/clients.php +++ b/htdocs/compta/tva/clients.php @@ -100,6 +100,10 @@ if ($user->societe_id) { } $result = restrictedArea($user, 'tax', '', '', 'charges'); +// Define modecompta ('CREANCES-DETTES' or 'RECETTES-DEPENSES') +$modecompta = $conf->global->ACCOUNTING_MODE; +if (GETPOST("modecompta")) $modecompta=GETPOST("modecompta"); + /* @@ -292,7 +296,14 @@ if (is_array($coll_list)) { } else { $langs->load("errors"); if ($coll_list == -1) { - print ''; + if ($modecompta == 'CREANCES-DETTES') + { + print ''; + } + else + { + print ''; + } } else if ($coll_list == -2) { print ''; } else { @@ -377,7 +388,14 @@ if (is_array($coll_list)) { } else { $langs->load("errors"); if ($coll_list == -1) { - print ''; + if ($modecompta == 'CREANCES-DETTES') + { + print ''; + } + else + { + print ''; + } } else if ($coll_list == -2) { print ''; } else { @@ -457,7 +475,14 @@ if ($special_report) { } else { $langs->load("errors"); if ($coll_list == -1) { - print ''; + if ($modecompta == 'CREANCES-DETTES') + { + print ''; + } + else + { + print ''; + } } else { if ($coll_list == -2) { print ''; @@ -530,7 +555,14 @@ if ($special_report) { } else { $langs->load("errors"); if ($coll_list == -1) { - print ''; + if ($modecompta == 'CREANCES-DETTES') + { + print ''; + } + else + { + print ''; + } } else { if ($coll_list == -2) { print ''; diff --git a/htdocs/core/class/commonobject.class.php b/htdocs/core/class/commonobject.class.php index fbef4168743..38848b6788d 100644 --- a/htdocs/core/class/commonobject.class.php +++ b/htdocs/core/class/commonobject.class.php @@ -1084,18 +1084,18 @@ abstract class CommonObject function getValueFrom($table, $id, $field) { $result=false; - - $sql = "SELECT ".$field." FROM ".MAIN_DB_PREFIX.$table; - $sql.= " WHERE rowid = ".$id; - - dol_syslog(get_class($this).'::getValueFrom', LOG_DEBUG); - $resql = $this->db->query($sql); - if ($resql) - { - $row = $this->db->fetch_row($resql); - $result = $row[0]; - } - + if (!empty($id) && !empty($field) && !empty($table)) { + $sql = "SELECT ".$field." FROM ".MAIN_DB_PREFIX.$table; + $sql.= " WHERE rowid = ".$id; + + dol_syslog(get_class($this).'::getValueFrom', LOG_DEBUG); + $resql = $this->db->query($sql); + if ($resql) + { + $row = $this->db->fetch_row($resql); + $result = $row[0]; + } + } return $result; } diff --git a/htdocs/core/lib/company.lib.php b/htdocs/core/lib/company.lib.php index a84c4548706..150dd2cadf5 100644 --- a/htdocs/core/lib/company.lib.php +++ b/htdocs/core/lib/company.lib.php @@ -94,7 +94,7 @@ function societe_prepare_head(Societe $object) }*/ // Tab to link resources - if ($conf->resource->enabled && ! empty($conf->global->RESOURCE_ON_THIRDPARTIES)) + if (! empty($conf->resource->enabled) && ! empty($conf->global->RESOURCE_ON_THIRDPARTIES)) { $head[$h][0] = DOL_URL_ROOT.'/resource/element_resource.php?element=societe&element_id='.$object->id; $head[$h][1] = $langs->trans("Resources"); diff --git a/htdocs/core/lib/functions.lib.php b/htdocs/core/lib/functions.lib.php index f07ff99c72a..81f14683383 100644 --- a/htdocs/core/lib/functions.lib.php +++ b/htdocs/core/lib/functions.lib.php @@ -2810,9 +2810,10 @@ function load_fiche_titre($titre, $mesg='', $picto='title_generic.png', $pictois * @param string $picto Icon to use before title (should be a 32x32 transparent png file) * @param int $pictoisfullpath 1=Icon name is a full absolute url of image * @param string $morehtml More html to show + * @param string $morecss More css to the table * @return void */ -function print_barre_liste($titre, $page, $file, $options='', $sortfield='', $sortorder='', $center='', $num=-1, $totalnboflines=0, $picto='title_generic.png', $pictoisfullpath=0, $morehtml='') +function print_barre_liste($titre, $page, $file, $options='', $sortfield='', $sortorder='', $center='', $num=-1, $totalnboflines=0, $picto='title_generic.png', $pictoisfullpath=0, $morehtml='', $morecss='') { global $conf,$langs; @@ -2830,7 +2831,7 @@ function print_barre_liste($titre, $page, $file, $options='', $sortfield='', $so print "\n"; print "\n"; - print '
'.$langs->trans("BillsSuppliersUnpaid",$num).' '.$num.''.$langs->trans("DateDue").''.$langs->trans("AmountHT").''.$langs->trans("AmountTTC").''.$langs->trans("Paid").''.$societestatic->getNomUrl(1, 'supplier', 44).''.dol_print_date($db->jdate($obj->date_lim_reglement),'day').''.price($obj->total_ht).''.price($obj->total_ttc).''.price($obj->am).'
'.$langs->trans("Total").'   ('.$langs->trans("RemainderToPay").': '.price($total_ttc-$totalam).')  '.price($total).''.price($total_ttc).''.price($totalam).'
'.$langs->trans("NoInvoice").'
' . $langs->trans("ErrorNoAccountancyModuleLoaded") . '
' . $langs->trans("ErrorNoAccountancyModuleLoaded") . '
' . $langs->trans("FeatureNotYetAvailable") . '
' . $langs->trans("FeatureNotYetAvailable") . '
' . $langs->trans("ErrorNoAccountancyModuleLoaded") . '
' . $langs->trans("ErrorNoAccountancyModuleLoaded") . '
' . $langs->trans("FeatureNotYetAvailable") . '
' . $langs->trans("FeatureNotYetAvailable") . '
' . $langs->trans("ErrorNoAccountancyModuleLoaded") . '
' . $langs->trans("ErrorNoAccountancyModuleLoaded") . '
' . $langs->trans("FeatureNotYetAvailable") . '
' . $langs->trans("FeatureNotYetAvailable") . '
' . $langs->trans("ErrorNoAccountancyModuleLoaded") . '
' . $langs->trans("ErrorNoAccountancyModuleLoaded") . '
' . $langs->trans("FeatureNotYetAvailable") . '
' . $langs->trans("FeatureNotYetAvailable") . '
'; + print '
'; // Left if ($picto && $titre) print ''; diff --git a/htdocs/core/lib/pdf.lib.php b/htdocs/core/lib/pdf.lib.php index 0ab44fb927b..e2aabec427a 100644 --- a/htdocs/core/lib/pdf.lib.php +++ b/htdocs/core/lib/pdf.lib.php @@ -1341,7 +1341,10 @@ function pdf_getlinevatrate($object,$i,$outputlangs,$hidedetails=0) if (! empty($object->lines[$i]->fk_parent_line)) $special_code = $object->getSpecialCode($object->lines[$i]->fk_parent_line); $parameters = array('i'=>$i,'outputlangs'=>$outputlangs,'hidedetails'=>$hidedetails,'special_code'=>$special_code); $action=''; - return $hookmanager->executeHooks('pdf_getlinevatrate',$parameters,$object,$action); // Note that $action and $object may have been modified by some hooks + $reshook = $hookmanager->executeHooks('pdf_getlinevatrate',$parameters,$object,$action); // Note that $action and $object may have been modified by some hooks + + if(!empty($hookmanager->resPrint)) return $hookmanager->resPrint; + else return $reshook; } else { @@ -1371,7 +1374,10 @@ function pdf_getlineupexcltax($object,$i,$outputlangs,$hidedetails=0) if (! empty($object->lines[$i]->fk_parent_line)) $special_code = $object->getSpecialCode($object->lines[$i]->fk_parent_line); $parameters = array('i'=>$i,'outputlangs'=>$outputlangs,'hidedetails'=>$hidedetails,'special_code'=>$special_code); $action=''; - return $hookmanager->executeHooks('pdf_getlineupexcltax',$parameters,$object,$action); // Note that $action and $object may have been modified by some hooks + $reshook = $hookmanager->executeHooks('pdf_getlineupexcltax',$parameters,$object,$action); // Note that $action and $object may have been modified by some hooks + + if(!empty($hookmanager->resPrint)) return $hookmanager->resPrint; + else return $reshook; } else { @@ -1428,7 +1434,11 @@ function pdf_getlineqty($object,$i,$outputlangs,$hidedetails=0) if (! empty($object->lines[$i]->fk_parent_line)) $special_code = $object->getSpecialCode($object->lines[$i]->fk_parent_line); $parameters = array('i'=>$i,'outputlangs'=>$outputlangs,'hidedetails'=>$hidedetails,'special_code'=>$special_code); $action=''; - return $hookmanager->executeHooks('pdf_getlineqty',$parameters,$object,$action); // Note that $action and $object may have been modified by some hooks + $reshook = $hookmanager->executeHooks('pdf_getlineqty',$parameters,$object,$action); // Note that $action and $object may have been modified by some hooks + + if(!empty($hookmanager->resPrint)) return $hookmanager->resPrint; + else return $reshook; + } else { @@ -1458,7 +1468,10 @@ function pdf_getlineqty_asked($object,$i,$outputlangs,$hidedetails=0) if (! empty($object->lines[$i]->fk_parent_line)) $special_code = $object->getSpecialCode($object->lines[$i]->fk_parent_line); $parameters = array('i'=>$i,'outputlangs'=>$outputlangs,'hidedetails'=>$hidedetails,'special_code'=>$special_code); $action=''; - return $hookmanager->executeHooks('pdf_getlineqty_asked',$parameters,$object,$action); // Note that $action and $object may have been modified by some hooks + $reshook = $hookmanager->executeHooks('pdf_getlineqty_asked',$parameters,$object,$action); // Note that $action and $object may have been modified by some hooks + + if(!empty($hookmanager->resPrint)) return $hookmanager->resPrint; + else return $reshook; } else { @@ -1488,7 +1501,10 @@ function pdf_getlineqty_shipped($object,$i,$outputlangs,$hidedetails=0) if (! empty($object->lines[$i]->fk_parent_line)) $special_code = $object->getSpecialCode($object->lines[$i]->fk_parent_line); $parameters = array('i'=>$i,'outputlangs'=>$outputlangs,'hidedetails'=>$hidedetails,'special_code'=>$special_code); $action=''; - return $hookmanager->executeHooks('pdf_getlineqty_shipped',$parameters,$object,$action); // Note that $action and $object may have been modified by some hooks + $reshook = $hookmanager->executeHooks('pdf_getlineqty_shipped',$parameters,$object,$action); // Note that $action and $object may have been modified by some hooks + + if(!empty($hookmanager->resPrint)) return $hookmanager->resPrint; + else return $reshook; } else { @@ -1518,7 +1534,10 @@ function pdf_getlineqty_keeptoship($object,$i,$outputlangs,$hidedetails=0) if (! empty($object->lines[$i]->fk_parent_line)) $special_code = $object->getSpecialCode($object->lines[$i]->fk_parent_line); $parameters = array('i'=>$i,'outputlangs'=>$outputlangs,'hidedetails'=>$hidedetails,'special_code'=>$special_code); $action=''; - return $hookmanager->executeHooks('pdf_getlineqty_keeptoship',$parameters,$object,$action); // Note that $action and $object may have been modified by some hooks + $reshook = $hookmanager->executeHooks('pdf_getlineqty_keeptoship',$parameters,$object,$action); // Note that $action and $object may have been modified by some hooks + + if(!empty($hookmanager->resPrint)) return $hookmanager->resPrint; + else return $reshook; } else { @@ -1553,8 +1572,12 @@ function pdf_getlineunit($object, $i, $outputlangs, $hidedetails = 0, $hookmanag 'special_code' => $special_code ); $action = ''; - return $hookmanager->executeHooks('pdf_getlineunit', $parameters, $object, + $reshook = $hookmanager->executeHooks('pdf_getlineunit', $parameters, $object, $action); // Note that $action and $object may have been modified by some hooks + + if(!empty($hookmanager->resPrint)) return $hookmanager->resPrint; + else return $reshook; + } else { if (empty($hidedetails) || $hidedetails > 1) { return $langs->transnoentitiesnoconv($object->lines[$i]->getLabelOfUnit('short')); @@ -1587,7 +1610,10 @@ function pdf_getlineremisepercent($object,$i,$outputlangs,$hidedetails=0) if (! empty($object->lines[$i]->fk_parent_line)) $special_code = $object->getSpecialCode($object->lines[$i]->fk_parent_line); $parameters = array('i'=>$i,'outputlangs'=>$outputlangs,'hidedetails'=>$hidedetails,'special_code'=>$special_code); $action=''; - return $hookmanager->executeHooks('pdf_getlineremisepercent',$parameters,$object,$action); // Note that $action and $object may have been modified by some hooks + $reshook = $hookmanager->executeHooks('pdf_getlineremisepercent',$parameters,$object,$action); // Note that $action and $object may have been modified by some hooks + + if(!empty($hookmanager->resPrint)) return $hookmanager->resPrint; + else return $reshook; } else { @@ -1614,7 +1640,10 @@ function pdf_getlineprogress($object, $i, $outputlangs, $hidedetails = 0, $hookm if (!empty($object->lines[$i]->fk_parent_line)) $special_code = $object->getSpecialCode($object->lines[$i]->fk_parent_line); $parameters = array('i' => $i, 'outputlangs' => $outputlangs, 'hidedetails' => $hidedetails, 'special_code' => $special_code); $action = ''; - return $hookmanager->executeHooks('pdf_getlineprogress', $parameters, $object, $action); // Note that $action and $object may have been modified by some hooks + $reshook = $hookmanager->executeHooks('pdf_getlineprogress', $parameters, $object, $action); // Note that $action and $object may have been modified by some hooks + + if(!empty($hookmanager->resPrint)) return $hookmanager->resPrint; + else return $reshook; } else { if (empty($hidedetails) || $hidedetails > 1) return $object->lines[$i]->situation_percent . '%'; } @@ -1649,7 +1678,10 @@ function pdf_getlinetotalexcltax($object,$i,$outputlangs,$hidedetails=0) if (! empty($object->lines[$i]->fk_parent_line)) $special_code = $object->getSpecialCode($object->lines[$i]->fk_parent_line); $parameters = array('i'=>$i,'outputlangs'=>$outputlangs,'hidedetails'=>$hidedetails,'special_code'=>$special_code); $action=''; - return $hookmanager->executeHooks('pdf_getlinetotalexcltax',$parameters,$object,$action); // Note that $action and $object may have been modified by some hooks + $reshook = $hookmanager->executeHooks('pdf_getlinetotalexcltax',$parameters,$object,$action); // Note that $action and $object may have been modified by some hooks + + if(!empty($hookmanager->resPrint)) return $hookmanager->resPrint; + else return $reshook; } else { @@ -1684,7 +1716,10 @@ function pdf_getlinetotalwithtax($object,$i,$outputlangs,$hidedetails=0) if (! empty($object->lines[$i]->fk_parent_line)) $special_code = $object->getSpecialCode($object->lines[$i]->fk_parent_line); $parameters = array('i'=>$i,'outputlangs'=>$outputlangs,'hidedetails'=>$hidedetails,'special_code'=>$special_code); $action=''; - return $hookmanager->executeHooks('pdf_getlinetotalwithtax',$parameters,$object,$action); // Note that $action and $object may have been modified by some hooks + $reshook = $hookmanager->executeHooks('pdf_getlinetotalwithtax',$parameters,$object,$action); // Note that $action and $object may have been modified by some hooks + + if(!empty($hookmanager->resPrint)) return $hookmanager->resPrint; + else return $reshook; } else { @@ -1808,7 +1843,7 @@ function pdf_getLinkedObjects($object,$outputlangs) else // We show both info of order and shipment { $linkedobjects[$objecttype]['ref_title'] = $outputlangs->transnoentities("RefOrder") . ' / ' . $outputlangs->transnoentities("RefSending"); - $linkedobjects[$objecttype]['ref_value'] = $outputlangs->transnoentities($order->ref) . ($order->ref_client ? ' ('.$order->ref_client.')' : ''); + $linkedobjects[$objecttype]['ref_value'] = $outputlangs->convToOutputCharset($order->ref) . ($order->ref_client ? ' ('.$order->ref_client.')' : ''); $linkedobjects[$objecttype]['ref_value'].= ' / ' . $outputlangs->transnoentities($elementobject->ref); $linkedobjects[$objecttype]['date_title'] = $outputlangs->transnoentities("OrderDate") . ' / ' . $outputlangs->transnoentities("DateSending"); $linkedobjects[$objecttype]['date_value'] = dol_print_date($order->date,'day','',$outputlangs); diff --git a/htdocs/core/lib/tax.lib.php b/htdocs/core/lib/tax.lib.php index b2b99d34d3b..2387332e670 100644 --- a/htdocs/core/lib/tax.lib.php +++ b/htdocs/core/lib/tax.lib.php @@ -79,7 +79,7 @@ function tax_prepare_head(ChargeSociales $object) * @param int $y Year * @param string $date_start Start date * @param string $date_end End date - * @param int $modetax 0 or 1 (option vat on debit) + * @param int $modetax 0 or 1 (option vat on debit, 1 => $modecompta = 'CREANCES-DETTES') * @param string $direction 'sell' or 'buy' * @param int $m Month * @return array List of customers third parties with vat, -1 if no accountancy module, -2 if not yet developped, -3 if error diff --git a/htdocs/core/lib/usergroups.lib.php b/htdocs/core/lib/usergroups.lib.php index f5f8df18ba1..cb62b63377f 100644 --- a/htdocs/core/lib/usergroups.lib.php +++ b/htdocs/core/lib/usergroups.lib.php @@ -400,9 +400,24 @@ function show_theme($fuser,$edit=0,$foruserprofile=false) else { print ''; - print ''; - print ''; + print ''; print ''; } diff --git a/htdocs/core/modules/commande/doc/pdf_einstein.modules.php b/htdocs/core/modules/commande/doc/pdf_einstein.modules.php index 96bd7b49b92..0716519457c 100644 --- a/htdocs/core/modules/commande/doc/pdf_einstein.modules.php +++ b/htdocs/core/modules/commande/doc/pdf_einstein.modules.php @@ -771,9 +771,10 @@ class pdf_einstein extends ModelePDFCommandes // If payment mode not forced or forced to VIR, show payment with BAN if (empty($object->mode_reglement_code) || $object->mode_reglement_code == 'VIR') { - if (! empty($object->fk_bank) || ! empty($conf->global->FACTURE_RIB_NUMBER)) + if (! empty($object->fk_account) || ! empty($object->fk_bank) || ! empty($conf->global->FACTURE_RIB_NUMBER)) { - $bankid=(empty($object->fk_bank)?$conf->global->FACTURE_RIB_NUMBER:$object->fk_bank); + $bankid=(empty($object->fk_account)?$conf->global->FACTURE_RIB_NUMBER:$object->fk_account); + if (! empty($object->fk_bank)) $bankid=$object->fk_bank; // For backward compatibility when object->fk_account is forced with object->fk_bank $account = new Account($this->db); $account->fetch($bankid); diff --git a/htdocs/core/modules/facture/doc/pdf_crabe.modules.php b/htdocs/core/modules/facture/doc/pdf_crabe.modules.php index 48be2c907c8..ecedfd2092a 100644 --- a/htdocs/core/modules/facture/doc/pdf_crabe.modules.php +++ b/htdocs/core/modules/facture/doc/pdf_crabe.modules.php @@ -958,9 +958,10 @@ class pdf_crabe extends ModelePDFFactures // If payment mode not forced or forced to VIR, show payment with BAN if (empty($object->mode_reglement_code) || $object->mode_reglement_code == 'VIR') { - if (! empty($object->fk_account) || ! empty($conf->global->FACTURE_RIB_NUMBER)) + if (! empty($object->fk_account) || ! empty($object->fk_bank) || ! empty($conf->global->FACTURE_RIB_NUMBER)) { $bankid=(empty($object->fk_account)?$conf->global->FACTURE_RIB_NUMBER:$object->fk_account); + if (! empty($object->fk_bank)) $bankid=$object->fk_bank; // For backward compatibility when object->fk_account is forced with object->fk_bank $account = new Account($this->db); $account->fetch($bankid); diff --git a/htdocs/core/modules/modProjet.class.php b/htdocs/core/modules/modProjet.class.php index 59a882b0df5..c2594f767ba 100644 --- a/htdocs/core/modules/modProjet.class.php +++ b/htdocs/core/modules/modProjet.class.php @@ -114,7 +114,23 @@ class modProjet extends DolibarrModules $this->const[$r][2] = "DOL_DATA_ROOT/doctemplates/tasks"; $this->const[$r][3] = ""; $this->const[$r][4] = 0; - + $r++; + + $this->const[$r][0] = "PROJECT_USE_OPPORTUNIES"; + $this->const[$r][1] = "chaine"; + $this->const[$r][2] = "1"; + $this->const[$r][3] = ""; + $this->const[$r][4] = 0; + $r++; + + /* not required (0 = not present) + $this->const[$r][0] = "PROJECT_HIDE_TASKS"; + $this->const[$r][1] = "chaine"; + $this->const[$r][2] = "0"; + $this->const[$r][3] = ""; + $this->const[$r][4] = 0; + */ + // Boxes $this->boxes = array(); $r=0; diff --git a/htdocs/core/modules/propale/doc/pdf_azur.modules.php b/htdocs/core/modules/propale/doc/pdf_azur.modules.php index d54b175750c..7fb02fe0514 100644 --- a/htdocs/core/modules/propale/doc/pdf_azur.modules.php +++ b/htdocs/core/modules/propale/doc/pdf_azur.modules.php @@ -917,9 +917,10 @@ class pdf_azur extends ModelePDFPropales // If payment mode not forced or forced to VIR, show payment with BAN if (empty($object->mode_reglement_code) || $object->mode_reglement_code == 'VIR') { - if (! empty($object->fk_bank) || ! empty($conf->global->FACTURE_RIB_NUMBER)) + if (! empty($object->fk_account) || ! empty($object->fk_bank) || ! empty($conf->global->FACTURE_RIB_NUMBER)) { - $bankid=(empty($object->fk_bank)?$conf->global->FACTURE_RIB_NUMBER:$object->fk_bank); + $bankid=(empty($object->fk_account)?$conf->global->FACTURE_RIB_NUMBER:$object->fk_account); + if (! empty($object->fk_bank)) $bankid=$object->fk_bank; // For backward compatibility when object->fk_account is forced with object->fk_bank $account = new Account($this->db); $account->fetch($bankid); diff --git a/htdocs/expensereport/card.php b/htdocs/expensereport/card.php index 3094bc1ccfd..c32b6505cb1 100644 --- a/htdocs/expensereport/card.php +++ b/htdocs/expensereport/card.php @@ -1089,7 +1089,7 @@ if (! empty($conf->global->DEPLACEMENT_TO_CLEAN)) // Create if ($action == 'create') { - print print load_fiche_titre($langs->trans("NewTrip")); + print load_fiche_titre($langs->trans("NewTrip")); print ''; print ''; diff --git a/htdocs/install/inc.php b/htdocs/install/inc.php index c0af9185d35..e5ad6f019a1 100644 --- a/htdocs/install/inc.php +++ b/htdocs/install/inc.php @@ -83,6 +83,7 @@ if (! defined('DONOTLOADCONF') && file_exists($conffile)) if ($result) { if (empty($dolibarr_main_db_type)) $dolibarr_main_db_type='mysqli'; // For backward compatibility + if (empty($dolibarr_main_db_port) && ($dolibarr_main_db_type=='mysqli' || $dolibarr_main_db_type=='mysql')) $dolibarr_main_db_port='3306'; // For backward compatibility // Clean parameters $dolibarr_main_data_root =isset($dolibarr_main_data_root)?trim($dolibarr_main_data_root):''; diff --git a/htdocs/install/mysql/migration/3.8.0-3.9.0.sql b/htdocs/install/mysql/migration/3.8.0-3.9.0.sql index 6375a9296dc..2b761758974 100755 --- a/htdocs/install/mysql/migration/3.8.0-3.9.0.sql +++ b/htdocs/install/mysql/migration/3.8.0-3.9.0.sql @@ -19,13 +19,18 @@ -- -- VMYSQL4.1 DELETE FROM llx_usergroup_user WHERE fk_usergroup NOT IN (SELECT rowid from llx_usergroup); -INSERT INTO llx_const (name, value, type, note, visible) values ('MAIN_DELAY_EXPENSEREPORTS_TO_PAY','31','chaine','Tolérance de retard avant alerte (en jours) sur les notes de frais impayées',0); +INSERT INTO llx_const (name, value, type, note, visible) values (__ENCRYPT('MAIN_DELAY_EXPENSEREPORTS_TO_PAY')__,__ENCRYPT('31')__,'chaine','Tolérance de retard avant alerte (en jours) sur les notes de frais impayées',0); ALTER TABLE llx_accounting_system MODIFY COLUMN pcg_version varchar(32); ALTER TABLE llx_accountingaccount MODIFY COLUMN fk_pcg_version varchar(32); UPDATE llx_const SET name = __ENCRYPT('ACCOUNTING_EXPORT_PREFIX_SPEC')__ WHERE __DECRYPT('name')__ = 'EXPORT_PREFIX_SPEC'; +UPDATE llx_const set value = __ENCRYPT('eldy')__ WHERE __DECRYPT('value')__ = 'auguria'; +UPDATE llx_const set value = __ENCRYPT('eldy')__ WHERE __DECRYPT('value')__ = 'bureau2crea'; +UPDATE llx_const set value = __ENCRYPT('eldy')__ WHERE __DECRYPT('value')__ = 'amarok'; +UPDATE llx_const set value = __ENCRYPT('eldy')__ WHERE __DECRYPT('value')__ = 'cameleo'; + ALTER TABLE llx_accountingaccount RENAME TO llx_accounting_account; ALTER TABLE llx_societe ADD COLUMN model_pdf varchar(255); @@ -45,3 +50,6 @@ create table llx_overwrite_trans ALTER TABLE llx_payment_salary ADD COLUMN datec datetime after tms; ALTER TABLE llx_payment_salary CHANGE COLUMN fk_user_creat fk_user_author integer; +ALTER TABLE llx_adherent ADD COLUMN pass_crypted varchar(128) after pass; + + diff --git a/htdocs/install/mysql/tables/llx_adherent.sql b/htdocs/install/mysql/tables/llx_adherent.sql index 493d5b1124d..9af9f5b1f26 100644 --- a/htdocs/install/mysql/tables/llx_adherent.sql +++ b/htdocs/install/mysql/tables/llx_adherent.sql @@ -35,6 +35,7 @@ create table llx_adherent firstname varchar(50), login varchar(50), -- login pass varchar(50), -- password + pass_crypted varchar(128), fk_adherent_type integer NOT NULL, morphy varchar(3) NOT NULL, -- personne morale / personne physique societe varchar(128), -- company name (should be same lenght than societe.name) diff --git a/htdocs/install/mysql/tables/llx_document_generator.sql b/htdocs/install/mysql/tables/llx_document_generator.sql deleted file mode 100644 index cfbc08f894f..00000000000 --- a/htdocs/install/mysql/tables/llx_document_generator.sql +++ /dev/null @@ -1,26 +0,0 @@ --- =================================================================== --- Copyright (C) 2007 Rodolphe Quiedeville --- --- 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 --- the Free Software Foundation; either version 3 of the License, or --- (at your option) any later version. --- --- This program is distributed in the hope that it will be useful, --- but WITHOUT ANY WARRANTY; without even the implied warranty of --- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the --- GNU General Public License for more details. --- --- You should have received a copy of the GNU General Public License --- along with this program. If not, see . --- --- =================================================================== - -create table llx_document_generator -( - rowid integer UNSIGNED NOT NULL PRIMARY KEY, - name varchar(255) NOT NULL, - classfile varchar(255) NOT NULL, - class varchar(255) NOT NULL - -)ENGINE=innodb; diff --git a/htdocs/langs/en_US/admin.lang b/htdocs/langs/en_US/admin.lang index 798bf8fed09..04c30beb813 100755 --- a/htdocs/langs/en_US/admin.lang +++ b/htdocs/langs/en_US/admin.lang @@ -1545,6 +1545,7 @@ AgendaSetup=Events and agenda module setup PasswordTogetVCalExport=Key to authorize export link PastDelayVCalExport=Do not export event older than AGENDA_USE_EVENT_TYPE=Use events types (managed into menu Setup -> Dictionary -> Type of agenda events) +AGENDA_USE_EVENT_TYPE_DEFAULT=Set automatically this default value for type of event into event create form AGENDA_DEFAULT_FILTER_TYPE=Set automatically this type of event into search filter of agenda view AGENDA_DEFAULT_FILTER_STATUS=Set automatically this status for events into search filter of agenda view AGENDA_DEFAULT_VIEW=Which tab do you want to open by default when selecting menu Agenda @@ -1652,12 +1653,13 @@ SomethingMakeInstallFromWebNotPossible2=For this reason, process to upgrade desc InstallModuleFromWebHasBeenDisabledByFile=Install of external module from application has been disabled by your administrator. You must ask him to remove the file %s to allow this feature. ConfFileMuseContainCustom=Installing an external module from application save the module files into directory %s. To have this directory processed by Dolibarr, you must setup your conf/conf.php to have option
- $dolibarr_main_url_root_alt enabled to value $dolibarr_main_url_root_alt="/custom"
- $dolibarr_main_document_root_alt enabled to value "%s/custom" HighlightLinesOnMouseHover=Highlight table lines when mouse move passes over +HighlightLinesColor=Color of highlight line when mouse move passes over (keep empty for no highlight) PressF5AfterChangingThis=Press F5 on keyboard after changing this value to have it effective NotSupportedByAllThemes=Will works with eldy theme but is not supported by all themes BackgroundColor=Background color TopMenuBackgroundColor=Background color for Top menu LeftMenuBackgroundColor=Background color for Left menu -BackgroundTableTitleColor=Background color for table title line +BackgroundTableTitleColor=Background color for Table title line BackgroundTableLineOddColor=Background color for odd table lines BackgroundTableLineEvenColor=Background color for even table lines MinimumNoticePeriod=Minimum notice period (Your leave request must be done before this delay) diff --git a/htdocs/product/class/productcustomerprice.class.php b/htdocs/product/class/productcustomerprice.class.php index 8cf659c9b89..a4905c30075 100644 --- a/htdocs/product/class/productcustomerprice.class.php +++ b/htdocs/product/class/productcustomerprice.class.php @@ -302,8 +302,8 @@ class Productcustomerprice extends CommonObject { global $langs; - if (! empty($sortfield)) $sortfield = "t.rowid"; - if (! empty($sortorder)) $sortorder = "DESC"; + if ( empty($sortfield)) $sortfield = "t.rowid"; + if ( empty($sortorder)) $sortorder = "DESC"; $sql = "SELECT"; $sql .= " t.rowid,"; @@ -346,8 +346,9 @@ class Productcustomerprice extends CommonObject } } } - - $sql.= $this->db->order($sortfield, $sortorder); + if (!empty($sortfield)) { + $sql.= $this->db->order($sortfield, $sortorder); + } if (! empty($limit)) $sql .= ' ' . $this->db->plimit($limit + 1, $offset); dol_syslog(get_class($this) . "::fetch_all", LOG_DEBUG); diff --git a/htdocs/product/list.php b/htdocs/product/list.php index 77e8373d2a7..de5abca1de4 100644 --- a/htdocs/product/list.php +++ b/htdocs/product/list.php @@ -315,13 +315,13 @@ else $titlefield=$langs->trans("SellingPrice"); if (! empty($conf->global->PRODUIT_CUSTOMER_PRICES)) { - $titlefields=$form->textwithpicto($langs->trans("SellingPrice"), $langs->trans("DefaultPriceRealPriceMayDependOnCustomer")); + $titlefield=$form->textwithpicto($langs->trans("SellingPrice"), $langs->trans("DefaultPriceRealPriceMayDependOnCustomer")); } - print_liste_field_titre($titlefields, $_SERVER["PHP_SELF"], "p.price",$param,"",'align="right"',$sortfield,$sortorder); + print_liste_field_titre($titlefield, $_SERVER["PHP_SELF"], "p.price",$param,"",'align="right"',$sortfield,$sortorder); } - if ($user->rights->fournisseur->lire) print '
'; - if (! empty($conf->stock->enabled) && $user->rights->stock->lire && $type != 1) print ''; - if (! empty($conf->stock->enabled) && $user->rights->stock->lire && $type != 1) print ''; + if ($user->rights->fournisseur->lire) print_liste_field_titre($langs->trans("BuyingPriceMinShort"), '', '', '', '', 'align="right"'); + if (! empty($conf->stock->enabled) && $user->rights->stock->lire && $type != 1) print_liste_field_titre($langs->trans("DesiredStock"), '', '', '', '', 'align="right"'); + if (! empty($conf->stock->enabled) && $user->rights->stock->lire && $type != 1) print_liste_field_titre($langs->trans("PhysicalStock"), '', '', '', '', 'align="right"'); print_liste_field_titre($langs->trans("Sell"), $_SERVER["PHP_SELF"], "p.tosell",$param,"",'align="center"',$sortfield,$sortorder); print_liste_field_titre($langs->trans("Buy"), $_SERVER["PHP_SELF"], "p.tobuy",$param,"",'align="center"',$sortfield,$sortorder); print_liste_field_titre('',$_SERVER["PHP_SELF"],"",'','','',$sortfield,$sortorder,'maxwidthsearch '); @@ -553,7 +553,7 @@ else $param.=($fourn_id?"&fourn_id=".$fourn_id:""); $param.=($search_categ?"&search_categ=".$search_categ:""); $param.=isset($type)?"&type=".$type:""; - print_barre_liste('', $page, "list.php", $param, $sortfield, $sortorder,'',$num,$nbtotalofrecords); + print_barre_liste('', $page, $_SERVER["PHP_SELF"], $param, $sortfield, $sortorder, '', $num, $nbtotalofrecords, '', '', '', 'paginationatbottom'); $db->free($resql); diff --git a/htdocs/product/stats/card.php b/htdocs/product/stats/card.php index d8ca1fa15d0..5fe6d5a4be3 100644 --- a/htdocs/product/stats/card.php +++ b/htdocs/product/stats/card.php @@ -223,7 +223,7 @@ if (! empty($id) || ! empty($ref)) // Show graph - print '
'.img_picto('', $picto, '', $pictoisfullpath).'
'.$langs->trans("HighlightLinesOnMouseHover").''; - print '   ('.$langs->trans("NotSupportedByAllThemes").', '.$langs->trans("PressF5AfterChangingThis").')'; + print ''.$langs->trans("HighlightLinesColor").''; + //print ''; + //print '   ('.$langs->trans("NotSupportedByAllThemes").', '.$langs->trans("PressF5AfterChangingThis").')'; + if ($edit) + { + if ($conf->global->THEME_ELDY_USE_HOVER == '1') $color='edf4fb'; + else $color = colorArrayToHex(colorStringToArray($conf->global->THEME_ELDY_USE_HOVER,array()),''); + print $formother->selectColor($color,'THEME_ELDY_USE_HOVER','formcolor',1).' '; + } + else + { + if ($conf->global->THEME_ELDY_USE_HOVER == '1') $color='edf4fb'; + else $color = colorArrayToHex(colorStringToArray($conf->global->THEME_ELDY_USE_HOVER,array()),''); + if ($color) print ''; + else print $langs->trans("None"); + } + print '   ('.$langs->trans("Default").': edf4fb, '.$langs->trans("NotSupportedByAllThemes").', '.$langs->trans("PressF5AfterChangingThis").')'; print '
'.$langs->trans("BuyingPriceMinShort").''.$langs->trans("DesiredStock").''.$langs->trans("PhysicalStock").'
'; + print '
'; // Label print ''; // Status diff --git a/htdocs/societe/soc.php b/htdocs/societe/soc.php index 8cebfb3f470..0a961d5637f 100644 --- a/htdocs/societe/soc.php +++ b/htdocs/societe/soc.php @@ -56,6 +56,7 @@ if (! empty($conf->notification->enabled)) $langs->load("mails"); $mesg=''; $error=0; $errors=array(); $action = (GETPOST('action') ? GETPOST('action') : 'view'); +$cancel = GETPOST('cancel'); $backtopage = GETPOST('backtopage','alpha'); $confirm = GETPOST('confirm'); $socid = GETPOST('socid','int'); @@ -98,6 +99,16 @@ if ($reshook < 0) setEventMessages($hookmanager->error, $hookmanager->errors, 'e if (empty($reshook)) { + if ($cancel) + { + $action=''; + if (! empty($backtopage)) + { + header("Location: ".$backtopage); + exit; + } + } + if ($action == 'confirm_merge' && $confirm == 'yes') { $object->fetch($socid); @@ -1158,11 +1169,11 @@ else print ''; // Legal Form - print ''; + print ''; print ''; // Juridical type - print ''; // Capital diff --git a/htdocs/theme/amarok/AUTHOR b/htdocs/theme/amarok/AUTHOR deleted file mode 100755 index 13e88907936..00000000000 --- a/htdocs/theme/amarok/AUTHOR +++ /dev/null @@ -1,2 +0,0 @@ -2012 Nicolas Péré -2012 Xavier Peyronnet \ No newline at end of file diff --git a/htdocs/theme/amarok/ckeditor/config.js b/htdocs/theme/amarok/ckeditor/config.js deleted file mode 100755 index 97f1c0a0b62..00000000000 --- a/htdocs/theme/amarok/ckeditor/config.js +++ /dev/null @@ -1,92 +0,0 @@ -/* -Copyright (c) 2003-2010, CKSource - Frederico Knabben. All rights reserved. -For licensing, see LICENSE.html or http://ckeditor.com/license -*/ - -CKEDITOR.editorConfig = function( config ) -{ - // Define changes to default configuration here. - // http://docs.cksource.com/CKEditor_3.x/Developers_Guide - // http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.config.html - config.enterMode = CKEDITOR.ENTER_BR; - config.resize_enabled = false; - //config.resize_maxHeight = 3000; - //config.resize_maxWidth = 3000; - //config.height = '300px'; - //config.resize_dir = 'vertical'; // horizontal, vertical, both - config.removePlugins = 'elementspath,save'; // config.removePlugins = 'elementspath,save,font'; - config.removeDialogTabs = 'flash:advanced'; // config.removeDialogTabs = 'flash:advanced;image:Link'; - config.protectedSource.push( /<\?[\s\S]*?\?>/g ); // Prevent PHP Code to be formatted - //config.menu_groups = 'clipboard,table,anchor,link,image'; // for context menu 'clipboard,form,tablecell,tablecellproperties,tablerow,tablecolumn,table,anchor,link,image,flash,checkbox,radio,textfield,hiddenfield,imagebutton,button,select,textarea' - //config.language = 'de'; - //config.defaultLanguage = 'en'; - //config.contentsLanguage = 'fr'; - config.fullPage = false; // Not a full html page string, just part of it - config.dialog_backgroundCoverColor = 'rgb(255, 254, 253)'; - //config.contentsCss = '/css/mysitestyles.css'; - config.image_previewText=' '; // Must no be empty - - config.toolbar_Full = - [ - ['Source','-','Save','NewPage','Preview','-','Templates'], - ['Cut','Copy','Paste','PasteText','PasteFromWord','-','Print', 'SpellChecker', 'Scayt'], - ['Undo','Redo','-','Find','Replace','-','SelectAll','RemoveFormat'], - ['Form', 'Checkbox', 'Radio', 'TextField', 'Textarea', 'Select', 'Button', 'ImageButton', 'HiddenField'], - '/', - ['Bold','Italic','Underline','Strike','-','Subscript','Superscript'], - ['NumberedList','BulletedList','-','Outdent','Indent','Blockquote','CreateDiv'], - ['JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock'], - ['BidiLtr', 'BidiRtl'], - ['Link','Unlink','Anchor'], - ['Image','Flash','Table','HorizontalRule','Smiley','SpecialChar','PageBreak','Iframe'], - '/', - ['Styles','Format','Font','FontSize'], - ['TextColor','BGColor'], - ['Maximize', 'ShowBlocks','-','About'] - ]; - - // Used for mailing fields - config.toolbar_dolibarr_mailings = - [ - ['Source','Maximize'], - ['Cut','Copy','Paste','-','SpellChecker'], - ['Undo','Redo','-','Find','Replace'], - ['Format','Font','FontSize'], - ['Bold','Italic','Underline','Strike','Subscript','Superscript','-','TextColor','RemoveFormat'], - ['NumberedList','BulletedList','Outdent','Indent','CreateDiv'], - ['JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock'], - ['Link','Unlink','Anchor','Image','Table','HorizontalRule','SpecialChar'] - ]; - - // Used for notes fields - config.toolbar_dolibarr_notes = - [ - ['Source','Maximize'], - ['Cut','Copy','Paste','-','SpellChecker'], - ['Undo','Redo','-','Find','Replace'], - ['Format','Font','FontSize'], - ['Bold','Italic','Underline','Strike','Subscript','Superscript','-','TextColor','RemoveFormat'], - ['NumberedList','BulletedList','Outdent','Indent'], - ['JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock'], - ['Link','Unlink','Image','Table','HorizontalRule','SpecialChar'] - ]; - - // Used for details lines - config.toolbar_dolibarr_details = - [ - ['Source','Maximize'], - ['Cut','Copy','Paste','-','SpellChecker'], - ['Font','FontSize'], - ['Bold','Italic','Underline','Strike','Subscript','Superscript','-','TextColor','RemoveFormat'], - ['NumberedList','BulletedList','Outdent','Indent'], - ['JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock'], - ['Link','Unlink','SpecialChar'] - ]; - - // Used for mailing fields - config.toolbar_dolibarr_readonly = - [ - ['Source','Maximize'], - ['Find'] - ]; -}; diff --git a/htdocs/theme/amarok/graph-color.php b/htdocs/theme/amarok/graph-color.php deleted file mode 100644 index 037e6a86d6f..00000000000 --- a/htdocs/theme/amarok/graph-color.php +++ /dev/null @@ -1,30 +0,0 @@ - - * Copyright (C) 2004-2007 Laurent Destailleur - * - * 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 - * the Free Software Foundation; either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ - -/** - * \file htdocs/theme/amarok/graph-color.php - * \brief File to declare colors to use to build graphics with theme Amarok - * \ingroup core - */ - -global $theme_bordercolor, $theme_datacolor, $theme_bgcolor, $theme_bgcoloronglet; -$theme_bordercolor = array(235,235,224); -$theme_datacolor = array(array(190,190,220), array(200,160,180), array(125,135,150), array(170,140,190), array(190,190,170)); -$theme_bgcolor = array(hexdec('F4'),hexdec('F4'),hexdec('F4')); -$theme_bgcoloronglet = array(hexdec('DE'),hexdec('E7'),hexdec('EC')); - diff --git a/htdocs/theme/amarok/img/1downarrow.png b/htdocs/theme/amarok/img/1downarrow.png deleted file mode 100644 index 33c655f345d..00000000000 Binary files a/htdocs/theme/amarok/img/1downarrow.png and /dev/null differ diff --git a/htdocs/theme/amarok/img/1downarrow_selected.png b/htdocs/theme/amarok/img/1downarrow_selected.png deleted file mode 100644 index c8615bac56c..00000000000 Binary files a/htdocs/theme/amarok/img/1downarrow_selected.png and /dev/null differ diff --git a/htdocs/theme/amarok/img/1leftarrow.png b/htdocs/theme/amarok/img/1leftarrow.png deleted file mode 100644 index a24894e25df..00000000000 Binary files a/htdocs/theme/amarok/img/1leftarrow.png and /dev/null differ diff --git a/htdocs/theme/amarok/img/1leftarrow_selected.png b/htdocs/theme/amarok/img/1leftarrow_selected.png deleted file mode 100644 index 912f9a753be..00000000000 Binary files a/htdocs/theme/amarok/img/1leftarrow_selected.png and /dev/null differ diff --git a/htdocs/theme/amarok/img/1rightarrow.png b/htdocs/theme/amarok/img/1rightarrow.png deleted file mode 100644 index b6474eaad46..00000000000 Binary files a/htdocs/theme/amarok/img/1rightarrow.png and /dev/null differ diff --git a/htdocs/theme/amarok/img/1rightarrow_selected.png b/htdocs/theme/amarok/img/1rightarrow_selected.png deleted file mode 100644 index 911ce8e2d56..00000000000 Binary files a/htdocs/theme/amarok/img/1rightarrow_selected.png and /dev/null differ diff --git a/htdocs/theme/amarok/img/1uparrow.png b/htdocs/theme/amarok/img/1uparrow.png deleted file mode 100644 index b0d939999bd..00000000000 Binary files a/htdocs/theme/amarok/img/1uparrow.png and /dev/null differ diff --git a/htdocs/theme/amarok/img/1uparrow_selected.png b/htdocs/theme/amarok/img/1uparrow_selected.png deleted file mode 100644 index f311f885994..00000000000 Binary files a/htdocs/theme/amarok/img/1uparrow_selected.png and /dev/null differ diff --git a/htdocs/theme/amarok/img/1updownarrow.png b/htdocs/theme/amarok/img/1updownarrow.png deleted file mode 100644 index 07ae44c2c51..00000000000 Binary files a/htdocs/theme/amarok/img/1updownarrow.png and /dev/null differ diff --git a/htdocs/theme/amarok/img/addfile.png b/htdocs/theme/amarok/img/addfile.png deleted file mode 100644 index 35ace7e4cf2..00000000000 Binary files a/htdocs/theme/amarok/img/addfile.png and /dev/null differ diff --git a/htdocs/theme/amarok/img/background_login.png b/htdocs/theme/amarok/img/background_login.png deleted file mode 100644 index e981431ce51..00000000000 Binary files a/htdocs/theme/amarok/img/background_login.png and /dev/null differ diff --git a/htdocs/theme/amarok/img/button_edit.png b/htdocs/theme/amarok/img/button_edit.png deleted file mode 100644 index 2118cf41db3..00000000000 Binary files a/htdocs/theme/amarok/img/button_edit.png and /dev/null differ diff --git a/htdocs/theme/amarok/img/calc.png b/htdocs/theme/amarok/img/calc.png deleted file mode 100644 index 11142a85f66..00000000000 Binary files a/htdocs/theme/amarok/img/calc.png and /dev/null differ diff --git a/htdocs/theme/amarok/img/calendar.png b/htdocs/theme/amarok/img/calendar.png deleted file mode 100644 index 9238928c701..00000000000 Binary files a/htdocs/theme/amarok/img/calendar.png and /dev/null differ diff --git a/htdocs/theme/amarok/img/call.png b/htdocs/theme/amarok/img/call.png deleted file mode 100644 index c0d4c2d9200..00000000000 Binary files a/htdocs/theme/amarok/img/call.png and /dev/null differ diff --git a/htdocs/theme/amarok/img/call_out.png b/htdocs/theme/amarok/img/call_out.png deleted file mode 100644 index e1615f425d4..00000000000 Binary files a/htdocs/theme/amarok/img/call_out.png and /dev/null differ diff --git a/htdocs/theme/amarok/img/close.png b/htdocs/theme/amarok/img/close.png deleted file mode 100644 index 1acc7a534d9..00000000000 Binary files a/htdocs/theme/amarok/img/close.png and /dev/null differ diff --git a/htdocs/theme/amarok/img/close_title.png b/htdocs/theme/amarok/img/close_title.png deleted file mode 100644 index ec4338e8bca..00000000000 Binary files a/htdocs/theme/amarok/img/close_title.png and /dev/null differ diff --git a/htdocs/theme/amarok/img/cron.png b/htdocs/theme/amarok/img/cron.png deleted file mode 100644 index ddfe62e7b24..00000000000 Binary files a/htdocs/theme/amarok/img/cron.png and /dev/null differ diff --git a/htdocs/theme/amarok/img/delete.png b/htdocs/theme/amarok/img/delete.png deleted file mode 100644 index a8706fe5011..00000000000 Binary files a/htdocs/theme/amarok/img/delete.png and /dev/null differ diff --git a/htdocs/theme/amarok/img/detail.png b/htdocs/theme/amarok/img/detail.png deleted file mode 100644 index 10dc7d72019..00000000000 Binary files a/htdocs/theme/amarok/img/detail.png and /dev/null differ diff --git a/htdocs/theme/amarok/img/disable.png b/htdocs/theme/amarok/img/disable.png deleted file mode 100644 index f7322f6d68a..00000000000 Binary files a/htdocs/theme/amarok/img/disable.png and /dev/null differ diff --git a/htdocs/theme/amarok/img/edit.png b/htdocs/theme/amarok/img/edit.png deleted file mode 100644 index faff605e3ca..00000000000 Binary files a/htdocs/theme/amarok/img/edit.png and /dev/null differ diff --git a/htdocs/theme/amarok/img/edit_add.png b/htdocs/theme/amarok/img/edit_add.png deleted file mode 100644 index 8a5877aeeb5..00000000000 Binary files a/htdocs/theme/amarok/img/edit_add.png and /dev/null differ diff --git a/htdocs/theme/amarok/img/edit_remove.png b/htdocs/theme/amarok/img/edit_remove.png deleted file mode 100644 index 0f32e706b39..00000000000 Binary files a/htdocs/theme/amarok/img/edit_remove.png and /dev/null differ diff --git a/htdocs/theme/amarok/img/editdelete.png b/htdocs/theme/amarok/img/editdelete.png deleted file mode 100644 index f7322f6d68a..00000000000 Binary files a/htdocs/theme/amarok/img/editdelete.png and /dev/null differ diff --git a/htdocs/theme/amarok/img/error.png b/htdocs/theme/amarok/img/error.png deleted file mode 100644 index 899fa9f6b63..00000000000 Binary files a/htdocs/theme/amarok/img/error.png and /dev/null differ diff --git a/htdocs/theme/amarok/img/file.png b/htdocs/theme/amarok/img/file.png deleted file mode 100644 index 221eaf83e86..00000000000 Binary files a/htdocs/theme/amarok/img/file.png and /dev/null differ diff --git a/htdocs/theme/amarok/img/filenew.png b/htdocs/theme/amarok/img/filenew.png deleted file mode 100644 index 92995d64faa..00000000000 Binary files a/htdocs/theme/amarok/img/filenew.png and /dev/null differ diff --git a/htdocs/theme/amarok/img/filter.png b/htdocs/theme/amarok/img/filter.png deleted file mode 100644 index ec64ee55bcd..00000000000 Binary files a/htdocs/theme/amarok/img/filter.png and /dev/null differ diff --git a/htdocs/theme/amarok/img/folder-open.png b/htdocs/theme/amarok/img/folder-open.png deleted file mode 100644 index 186680e7ff4..00000000000 Binary files a/htdocs/theme/amarok/img/folder-open.png and /dev/null differ diff --git a/htdocs/theme/amarok/img/folder.png b/htdocs/theme/amarok/img/folder.png deleted file mode 100644 index 5c28dea0aa5..00000000000 Binary files a/htdocs/theme/amarok/img/folder.png and /dev/null differ diff --git a/htdocs/theme/amarok/img/grip_title.png b/htdocs/theme/amarok/img/grip_title.png deleted file mode 100644 index 8053007e9dd..00000000000 Binary files a/htdocs/theme/amarok/img/grip_title.png and /dev/null differ diff --git a/htdocs/theme/amarok/img/help.png b/htdocs/theme/amarok/img/help.png deleted file mode 100644 index f092e463807..00000000000 Binary files a/htdocs/theme/amarok/img/help.png and /dev/null differ diff --git a/htdocs/theme/amarok/img/helpdoc.png b/htdocs/theme/amarok/img/helpdoc.png deleted file mode 100644 index 02ea7c7a194..00000000000 Binary files a/htdocs/theme/amarok/img/helpdoc.png and /dev/null differ diff --git a/htdocs/theme/amarok/img/high.png b/htdocs/theme/amarok/img/high.png deleted file mode 100644 index 899fa9f6b63..00000000000 Binary files a/htdocs/theme/amarok/img/high.png and /dev/null differ diff --git a/htdocs/theme/amarok/img/history.png b/htdocs/theme/amarok/img/history.png deleted file mode 100644 index 1e37cac68a7..00000000000 Binary files a/htdocs/theme/amarok/img/history.png and /dev/null differ diff --git a/htdocs/theme/amarok/img/indent1.png b/htdocs/theme/amarok/img/indent1.png deleted file mode 100644 index 0acd18fe2bb..00000000000 Binary files a/htdocs/theme/amarok/img/indent1.png and /dev/null differ diff --git a/htdocs/theme/amarok/img/info.png b/htdocs/theme/amarok/img/info.png deleted file mode 100644 index 5f7683898a8..00000000000 Binary files a/htdocs/theme/amarok/img/info.png and /dev/null differ diff --git a/htdocs/theme/amarok/img/lock.png b/htdocs/theme/amarok/img/lock.png deleted file mode 100644 index fed5806fdda..00000000000 Binary files a/htdocs/theme/amarok/img/lock.png and /dev/null differ diff --git a/htdocs/theme/amarok/img/logout.png b/htdocs/theme/amarok/img/logout.png deleted file mode 100644 index fed5806fdda..00000000000 Binary files a/htdocs/theme/amarok/img/logout.png and /dev/null differ diff --git a/htdocs/theme/amarok/img/mainlevel.gif b/htdocs/theme/amarok/img/mainlevel.gif deleted file mode 100755 index 11e6209153c..00000000000 Binary files a/htdocs/theme/amarok/img/mainlevel.gif and /dev/null differ diff --git a/htdocs/theme/amarok/img/money.png b/htdocs/theme/amarok/img/money.png deleted file mode 100644 index d8c8109abca..00000000000 Binary files a/htdocs/theme/amarok/img/money.png and /dev/null differ diff --git a/htdocs/theme/amarok/img/next.png b/htdocs/theme/amarok/img/next.png deleted file mode 100644 index 774ca27e79b..00000000000 Binary files a/htdocs/theme/amarok/img/next.png and /dev/null differ diff --git a/htdocs/theme/amarok/img/object_account.png b/htdocs/theme/amarok/img/object_account.png deleted file mode 100644 index d41f8fdee80..00000000000 Binary files a/htdocs/theme/amarok/img/object_account.png and /dev/null differ diff --git a/htdocs/theme/amarok/img/object_action.png b/htdocs/theme/amarok/img/object_action.png deleted file mode 100644 index 9238928c701..00000000000 Binary files a/htdocs/theme/amarok/img/object_action.png and /dev/null differ diff --git a/htdocs/theme/amarok/img/object_address.png b/htdocs/theme/amarok/img/object_address.png deleted file mode 100644 index b20734da69a..00000000000 Binary files a/htdocs/theme/amarok/img/object_address.png and /dev/null differ diff --git a/htdocs/theme/amarok/img/object_barcode.png b/htdocs/theme/amarok/img/object_barcode.png deleted file mode 100644 index 3296d7bedf6..00000000000 Binary files a/htdocs/theme/amarok/img/object_barcode.png and /dev/null differ diff --git a/htdocs/theme/amarok/img/object_bill.png b/htdocs/theme/amarok/img/object_bill.png deleted file mode 100644 index b9af25f5788..00000000000 Binary files a/htdocs/theme/amarok/img/object_bill.png and /dev/null differ diff --git a/htdocs/theme/amarok/img/object_billa.png b/htdocs/theme/amarok/img/object_billa.png deleted file mode 100644 index bc9a81ea505..00000000000 Binary files a/htdocs/theme/amarok/img/object_billa.png and /dev/null differ diff --git a/htdocs/theme/amarok/img/object_billd.png b/htdocs/theme/amarok/img/object_billd.png deleted file mode 100644 index 5558e18d682..00000000000 Binary files a/htdocs/theme/amarok/img/object_billd.png and /dev/null differ diff --git a/htdocs/theme/amarok/img/object_billr.png b/htdocs/theme/amarok/img/object_billr.png deleted file mode 100644 index 7c7601ac88d..00000000000 Binary files a/htdocs/theme/amarok/img/object_billr.png and /dev/null differ diff --git a/htdocs/theme/amarok/img/object_book.png b/htdocs/theme/amarok/img/object_book.png deleted file mode 100644 index 2532b9e46bb..00000000000 Binary files a/htdocs/theme/amarok/img/object_book.png and /dev/null differ diff --git a/htdocs/theme/amarok/img/object_bookmark.png b/htdocs/theme/amarok/img/object_bookmark.png deleted file mode 100644 index a33b726273e..00000000000 Binary files a/htdocs/theme/amarok/img/object_bookmark.png and /dev/null differ diff --git a/htdocs/theme/amarok/img/object_calendar.png b/htdocs/theme/amarok/img/object_calendar.png deleted file mode 100644 index a9e239feec0..00000000000 Binary files a/htdocs/theme/amarok/img/object_calendar.png and /dev/null differ diff --git a/htdocs/theme/amarok/img/object_calendarday.png b/htdocs/theme/amarok/img/object_calendarday.png deleted file mode 100644 index eca345725a2..00000000000 Binary files a/htdocs/theme/amarok/img/object_calendarday.png and /dev/null differ diff --git a/htdocs/theme/amarok/img/object_calendarweek.png b/htdocs/theme/amarok/img/object_calendarweek.png deleted file mode 100644 index 807b7d5e53f..00000000000 Binary files a/htdocs/theme/amarok/img/object_calendarweek.png and /dev/null differ diff --git a/htdocs/theme/amarok/img/object_category-expanded.png b/htdocs/theme/amarok/img/object_category-expanded.png deleted file mode 100644 index 186680e7ff4..00000000000 Binary files a/htdocs/theme/amarok/img/object_category-expanded.png and /dev/null differ diff --git a/htdocs/theme/amarok/img/object_category.png b/htdocs/theme/amarok/img/object_category.png deleted file mode 100644 index 5c28dea0aa5..00000000000 Binary files a/htdocs/theme/amarok/img/object_category.png and /dev/null differ diff --git a/htdocs/theme/amarok/img/object_commercial.png b/htdocs/theme/amarok/img/object_commercial.png deleted file mode 100644 index eea2b611196..00000000000 Binary files a/htdocs/theme/amarok/img/object_commercial.png and /dev/null differ diff --git a/htdocs/theme/amarok/img/object_company.png b/htdocs/theme/amarok/img/object_company.png deleted file mode 100644 index 5b718fd3f92..00000000000 Binary files a/htdocs/theme/amarok/img/object_company.png and /dev/null differ diff --git a/htdocs/theme/amarok/img/object_contact.png b/htdocs/theme/amarok/img/object_contact.png deleted file mode 100644 index e837d2e70bc..00000000000 Binary files a/htdocs/theme/amarok/img/object_contact.png and /dev/null differ diff --git a/htdocs/theme/amarok/img/object_contact_all.png b/htdocs/theme/amarok/img/object_contact_all.png deleted file mode 100644 index 83b2c8ec0a3..00000000000 Binary files a/htdocs/theme/amarok/img/object_contact_all.png and /dev/null differ diff --git a/htdocs/theme/amarok/img/object_contract.png b/htdocs/theme/amarok/img/object_contract.png deleted file mode 100644 index a3d207dec20..00000000000 Binary files a/htdocs/theme/amarok/img/object_contract.png and /dev/null differ diff --git a/htdocs/theme/amarok/img/object_dir.png b/htdocs/theme/amarok/img/object_dir.png deleted file mode 100644 index 996415f98e3..00000000000 Binary files a/htdocs/theme/amarok/img/object_dir.png and /dev/null differ diff --git a/htdocs/theme/amarok/img/object_email.png b/htdocs/theme/amarok/img/object_email.png deleted file mode 100644 index 5657fdb26c0..00000000000 Binary files a/htdocs/theme/amarok/img/object_email.png and /dev/null differ diff --git a/htdocs/theme/amarok/img/object_energie.png b/htdocs/theme/amarok/img/object_energie.png deleted file mode 100644 index 255b847da99..00000000000 Binary files a/htdocs/theme/amarok/img/object_energie.png and /dev/null differ diff --git a/htdocs/theme/amarok/img/object_generic.png b/htdocs/theme/amarok/img/object_generic.png deleted file mode 100644 index 1128986cecd..00000000000 Binary files a/htdocs/theme/amarok/img/object_generic.png and /dev/null differ diff --git a/htdocs/theme/amarok/img/object_globe.png b/htdocs/theme/amarok/img/object_globe.png deleted file mode 100644 index 238b830405f..00000000000 Binary files a/htdocs/theme/amarok/img/object_globe.png and /dev/null differ diff --git a/htdocs/theme/amarok/img/object_group.png b/htdocs/theme/amarok/img/object_group.png deleted file mode 100644 index 83b2c8ec0a3..00000000000 Binary files a/htdocs/theme/amarok/img/object_group.png and /dev/null differ diff --git a/htdocs/theme/amarok/img/object_intervention.png b/htdocs/theme/amarok/img/object_intervention.png deleted file mode 100644 index 84f5b87c805..00000000000 Binary files a/htdocs/theme/amarok/img/object_intervention.png and /dev/null differ diff --git a/htdocs/theme/amarok/img/object_invoice.png b/htdocs/theme/amarok/img/object_invoice.png deleted file mode 100644 index b9af25f5788..00000000000 Binary files a/htdocs/theme/amarok/img/object_invoice.png and /dev/null differ diff --git a/htdocs/theme/amarok/img/object_label.png b/htdocs/theme/amarok/img/object_label.png deleted file mode 100644 index a73cbb9e9bb..00000000000 Binary files a/htdocs/theme/amarok/img/object_label.png and /dev/null differ diff --git a/htdocs/theme/amarok/img/object_list.png b/htdocs/theme/amarok/img/object_list.png deleted file mode 100644 index edd4a53aefa..00000000000 Binary files a/htdocs/theme/amarok/img/object_list.png and /dev/null differ diff --git a/htdocs/theme/amarok/img/object_margin.png b/htdocs/theme/amarok/img/object_margin.png deleted file mode 100644 index 13e4b92c9ce..00000000000 Binary files a/htdocs/theme/amarok/img/object_margin.png and /dev/null differ diff --git a/htdocs/theme/amarok/img/object_order.png b/htdocs/theme/amarok/img/object_order.png deleted file mode 100644 index 6550c11c061..00000000000 Binary files a/htdocs/theme/amarok/img/object_order.png and /dev/null differ diff --git a/htdocs/theme/amarok/img/object_payment.png b/htdocs/theme/amarok/img/object_payment.png deleted file mode 100644 index 7215fc22aa8..00000000000 Binary files a/htdocs/theme/amarok/img/object_payment.png and /dev/null differ diff --git a/htdocs/theme/amarok/img/object_phoning.png b/htdocs/theme/amarok/img/object_phoning.png deleted file mode 100644 index b1266e84127..00000000000 Binary files a/htdocs/theme/amarok/img/object_phoning.png and /dev/null differ diff --git a/htdocs/theme/amarok/img/object_phoning_fax.png b/htdocs/theme/amarok/img/object_phoning_fax.png deleted file mode 100644 index b1266e84127..00000000000 Binary files a/htdocs/theme/amarok/img/object_phoning_fax.png and /dev/null differ diff --git a/htdocs/theme/amarok/img/object_product.png b/htdocs/theme/amarok/img/object_product.png deleted file mode 100644 index cb94e71a868..00000000000 Binary files a/htdocs/theme/amarok/img/object_product.png and /dev/null differ diff --git a/htdocs/theme/amarok/img/object_project.png b/htdocs/theme/amarok/img/object_project.png deleted file mode 100644 index 68bb77ae989..00000000000 Binary files a/htdocs/theme/amarok/img/object_project.png and /dev/null differ diff --git a/htdocs/theme/amarok/img/object_projectpub.png b/htdocs/theme/amarok/img/object_projectpub.png deleted file mode 100644 index b50dba8ef2d..00000000000 Binary files a/htdocs/theme/amarok/img/object_projectpub.png and /dev/null differ diff --git a/htdocs/theme/amarok/img/object_projecttask.png b/htdocs/theme/amarok/img/object_projecttask.png deleted file mode 100644 index 2dc8d0111b6..00000000000 Binary files a/htdocs/theme/amarok/img/object_projecttask.png and /dev/null differ diff --git a/htdocs/theme/amarok/img/object_propal.png b/htdocs/theme/amarok/img/object_propal.png deleted file mode 100644 index efd49ca0163..00000000000 Binary files a/htdocs/theme/amarok/img/object_propal.png and /dev/null differ diff --git a/htdocs/theme/amarok/img/object_reduc.png b/htdocs/theme/amarok/img/object_reduc.png deleted file mode 100644 index 221eaf83e86..00000000000 Binary files a/htdocs/theme/amarok/img/object_reduc.png and /dev/null differ diff --git a/htdocs/theme/amarok/img/object_rss.png b/htdocs/theme/amarok/img/object_rss.png deleted file mode 100644 index 9ba662a6086..00000000000 Binary files a/htdocs/theme/amarok/img/object_rss.png and /dev/null differ diff --git a/htdocs/theme/amarok/img/object_sending.png b/htdocs/theme/amarok/img/object_sending.png deleted file mode 100644 index 5ef8072d54e..00000000000 Binary files a/htdocs/theme/amarok/img/object_sending.png and /dev/null differ diff --git a/htdocs/theme/amarok/img/object_service.png b/htdocs/theme/amarok/img/object_service.png deleted file mode 100644 index 290a65f8a46..00000000000 Binary files a/htdocs/theme/amarok/img/object_service.png and /dev/null differ diff --git a/htdocs/theme/amarok/img/object_stock.png b/htdocs/theme/amarok/img/object_stock.png deleted file mode 100644 index 19ae2cdc0d3..00000000000 Binary files a/htdocs/theme/amarok/img/object_stock.png and /dev/null differ diff --git a/htdocs/theme/amarok/img/object_task.png b/htdocs/theme/amarok/img/object_task.png deleted file mode 100644 index 2dc8d0111b6..00000000000 Binary files a/htdocs/theme/amarok/img/object_task.png and /dev/null differ diff --git a/htdocs/theme/amarok/img/object_technic.png b/htdocs/theme/amarok/img/object_technic.png deleted file mode 100644 index 0f1737ce582..00000000000 Binary files a/htdocs/theme/amarok/img/object_technic.png and /dev/null differ diff --git a/htdocs/theme/amarok/img/object_trip.png b/htdocs/theme/amarok/img/object_trip.png deleted file mode 100644 index 4ffacc73e86..00000000000 Binary files a/htdocs/theme/amarok/img/object_trip.png and /dev/null differ diff --git a/htdocs/theme/amarok/img/object_user.png b/htdocs/theme/amarok/img/object_user.png deleted file mode 100644 index 55ee040f98d..00000000000 Binary files a/htdocs/theme/amarok/img/object_user.png and /dev/null differ diff --git a/htdocs/theme/amarok/img/off.png b/htdocs/theme/amarok/img/off.png deleted file mode 100644 index ab7742b4a97..00000000000 Binary files a/htdocs/theme/amarok/img/off.png and /dev/null differ diff --git a/htdocs/theme/amarok/img/ok.png b/htdocs/theme/amarok/img/ok.png deleted file mode 100644 index abe1bd2424e..00000000000 Binary files a/htdocs/theme/amarok/img/ok.png and /dev/null differ diff --git a/htdocs/theme/amarok/img/on.png b/htdocs/theme/amarok/img/on.png deleted file mode 100644 index 9362cfb75ee..00000000000 Binary files a/htdocs/theme/amarok/img/on.png and /dev/null differ diff --git a/htdocs/theme/amarok/img/pdf2.png b/htdocs/theme/amarok/img/pdf2.png deleted file mode 100644 index cbf205d383e..00000000000 Binary files a/htdocs/theme/amarok/img/pdf2.png and /dev/null differ diff --git a/htdocs/theme/amarok/img/pdf3.png b/htdocs/theme/amarok/img/pdf3.png deleted file mode 100644 index fec72dbd81e..00000000000 Binary files a/htdocs/theme/amarok/img/pdf3.png and /dev/null differ diff --git a/htdocs/theme/amarok/img/previous.png b/htdocs/theme/amarok/img/previous.png deleted file mode 100644 index f50a54114ec..00000000000 Binary files a/htdocs/theme/amarok/img/previous.png and /dev/null differ diff --git a/htdocs/theme/amarok/img/printer.png b/htdocs/theme/amarok/img/printer.png deleted file mode 100644 index c2e20742b65..00000000000 Binary files a/htdocs/theme/amarok/img/printer.png and /dev/null differ diff --git a/htdocs/theme/amarok/img/puce.png b/htdocs/theme/amarok/img/puce.png deleted file mode 100644 index d18f94cf582..00000000000 Binary files a/htdocs/theme/amarok/img/puce.png and /dev/null differ diff --git a/htdocs/theme/amarok/img/recent.png b/htdocs/theme/amarok/img/recent.png deleted file mode 100644 index c5818910e6e..00000000000 Binary files a/htdocs/theme/amarok/img/recent.png and /dev/null differ diff --git a/htdocs/theme/amarok/img/redstar.png b/htdocs/theme/amarok/img/redstar.png deleted file mode 100644 index 5c02de23c6b..00000000000 Binary files a/htdocs/theme/amarok/img/redstar.png and /dev/null differ diff --git a/htdocs/theme/amarok/img/refresh.png b/htdocs/theme/amarok/img/refresh.png deleted file mode 100644 index e96e4bbf33c..00000000000 Binary files a/htdocs/theme/amarok/img/refresh.png and /dev/null differ diff --git a/htdocs/theme/amarok/img/reload.png b/htdocs/theme/amarok/img/reload.png deleted file mode 100644 index 72990aa88cf..00000000000 Binary files a/htdocs/theme/amarok/img/reload.png and /dev/null differ diff --git a/htdocs/theme/amarok/img/rightarrow.png b/htdocs/theme/amarok/img/rightarrow.png deleted file mode 100644 index 91e19e47a81..00000000000 Binary files a/htdocs/theme/amarok/img/rightarrow.png and /dev/null differ diff --git a/htdocs/theme/amarok/img/search.png b/htdocs/theme/amarok/img/search.png deleted file mode 100644 index 8e95c05c874..00000000000 Binary files a/htdocs/theme/amarok/img/search.png and /dev/null differ diff --git a/htdocs/theme/amarok/img/searchclear.png b/htdocs/theme/amarok/img/searchclear.png deleted file mode 100644 index feff9b53fe4..00000000000 Binary files a/htdocs/theme/amarok/img/searchclear.png and /dev/null differ diff --git a/htdocs/theme/amarok/img/setup.png b/htdocs/theme/amarok/img/setup.png deleted file mode 100644 index ca5f28b1d17..00000000000 Binary files a/htdocs/theme/amarok/img/setup.png and /dev/null differ diff --git a/htdocs/theme/amarok/img/sort_asc.png b/htdocs/theme/amarok/img/sort_asc.png deleted file mode 100644 index e327d952fa4..00000000000 Binary files a/htdocs/theme/amarok/img/sort_asc.png and /dev/null differ diff --git a/htdocs/theme/amarok/img/sort_asc_disabled.png b/htdocs/theme/amarok/img/sort_asc_disabled.png deleted file mode 100644 index e327d952fa4..00000000000 Binary files a/htdocs/theme/amarok/img/sort_asc_disabled.png and /dev/null differ diff --git a/htdocs/theme/amarok/img/sort_desc.png b/htdocs/theme/amarok/img/sort_desc.png deleted file mode 100644 index db99fd9ad47..00000000000 Binary files a/htdocs/theme/amarok/img/sort_desc.png and /dev/null differ diff --git a/htdocs/theme/amarok/img/split.png b/htdocs/theme/amarok/img/split.png deleted file mode 100644 index 62034af3190..00000000000 Binary files a/htdocs/theme/amarok/img/split.png and /dev/null differ diff --git a/htdocs/theme/amarok/img/star.png b/htdocs/theme/amarok/img/star.png deleted file mode 100644 index d9ac97b1702..00000000000 Binary files a/htdocs/theme/amarok/img/star.png and /dev/null differ diff --git a/htdocs/theme/amarok/img/stats.png b/htdocs/theme/amarok/img/stats.png deleted file mode 100644 index a503b20a95c..00000000000 Binary files a/htdocs/theme/amarok/img/stats.png and /dev/null differ diff --git a/htdocs/theme/amarok/img/statut0.png b/htdocs/theme/amarok/img/statut0.png deleted file mode 100644 index ceb9667d4b7..00000000000 Binary files a/htdocs/theme/amarok/img/statut0.png and /dev/null differ diff --git a/htdocs/theme/amarok/img/statut1.png b/htdocs/theme/amarok/img/statut1.png deleted file mode 100644 index 2f96ef7581d..00000000000 Binary files a/htdocs/theme/amarok/img/statut1.png and /dev/null differ diff --git a/htdocs/theme/amarok/img/statut2.png b/htdocs/theme/amarok/img/statut2.png deleted file mode 100644 index 155df5aa188..00000000000 Binary files a/htdocs/theme/amarok/img/statut2.png and /dev/null differ diff --git a/htdocs/theme/amarok/img/statut3.png b/htdocs/theme/amarok/img/statut3.png deleted file mode 100644 index 18b2a5b47dd..00000000000 Binary files a/htdocs/theme/amarok/img/statut3.png and /dev/null differ diff --git a/htdocs/theme/amarok/img/statut4.png b/htdocs/theme/amarok/img/statut4.png deleted file mode 100644 index 92450a62497..00000000000 Binary files a/htdocs/theme/amarok/img/statut4.png and /dev/null differ diff --git a/htdocs/theme/amarok/img/statut5.png b/htdocs/theme/amarok/img/statut5.png deleted file mode 100644 index a8db4159a31..00000000000 Binary files a/htdocs/theme/amarok/img/statut5.png and /dev/null differ diff --git a/htdocs/theme/amarok/img/statut6.png b/htdocs/theme/amarok/img/statut6.png deleted file mode 100644 index 155df5aa188..00000000000 Binary files a/htdocs/theme/amarok/img/statut6.png and /dev/null differ diff --git a/htdocs/theme/amarok/img/statut7.png b/htdocs/theme/amarok/img/statut7.png deleted file mode 100644 index cb71c05dcfc..00000000000 Binary files a/htdocs/theme/amarok/img/statut7.png and /dev/null differ diff --git a/htdocs/theme/amarok/img/statut8.png b/htdocs/theme/amarok/img/statut8.png deleted file mode 100644 index bbe351f0942..00000000000 Binary files a/htdocs/theme/amarok/img/statut8.png and /dev/null differ diff --git a/htdocs/theme/amarok/img/statut9.png b/htdocs/theme/amarok/img/statut9.png deleted file mode 100644 index 14287ee9bb4..00000000000 Binary files a/htdocs/theme/amarok/img/statut9.png and /dev/null differ diff --git a/htdocs/theme/amarok/img/stcomm-1.png b/htdocs/theme/amarok/img/stcomm-1.png deleted file mode 100644 index 2e3f98bb6fd..00000000000 Binary files a/htdocs/theme/amarok/img/stcomm-1.png and /dev/null differ diff --git a/htdocs/theme/amarok/img/stcomm1.png b/htdocs/theme/amarok/img/stcomm1.png deleted file mode 100644 index 6d1b485f1a5..00000000000 Binary files a/htdocs/theme/amarok/img/stcomm1.png and /dev/null differ diff --git a/htdocs/theme/amarok/img/stcomm2.png b/htdocs/theme/amarok/img/stcomm2.png deleted file mode 100644 index efc1796e410..00000000000 Binary files a/htdocs/theme/amarok/img/stcomm2.png and /dev/null differ diff --git a/htdocs/theme/amarok/img/stcomm3.png b/htdocs/theme/amarok/img/stcomm3.png deleted file mode 100644 index 18c8a6e323f..00000000000 Binary files a/htdocs/theme/amarok/img/stcomm3.png and /dev/null differ diff --git a/htdocs/theme/amarok/img/stcomm4.png b/htdocs/theme/amarok/img/stcomm4.png deleted file mode 100644 index 8f4a34e9ab2..00000000000 Binary files a/htdocs/theme/amarok/img/stcomm4.png and /dev/null differ diff --git a/htdocs/theme/amarok/img/tick.png b/htdocs/theme/amarok/img/tick.png deleted file mode 100644 index c2279280b33..00000000000 Binary files a/htdocs/theme/amarok/img/tick.png and /dev/null differ diff --git a/htdocs/theme/amarok/img/title.png b/htdocs/theme/amarok/img/title.png deleted file mode 100644 index 4087ba572a5..00000000000 Binary files a/htdocs/theme/amarok/img/title.png and /dev/null differ diff --git a/htdocs/theme/amarok/img/unlock.png b/htdocs/theme/amarok/img/unlock.png deleted file mode 100644 index 738c8393ede..00000000000 Binary files a/htdocs/theme/amarok/img/unlock.png and /dev/null differ diff --git a/htdocs/theme/amarok/img/uparrow.png b/htdocs/theme/amarok/img/uparrow.png deleted file mode 100644 index 1f6f801f045..00000000000 Binary files a/htdocs/theme/amarok/img/uparrow.png and /dev/null differ diff --git a/htdocs/theme/amarok/img/vcard.png b/htdocs/theme/amarok/img/vcard.png deleted file mode 100644 index 74140d7026d..00000000000 Binary files a/htdocs/theme/amarok/img/vcard.png and /dev/null differ diff --git a/htdocs/theme/amarok/img/view.png b/htdocs/theme/amarok/img/view.png deleted file mode 100644 index 221eaf83e86..00000000000 Binary files a/htdocs/theme/amarok/img/view.png and /dev/null differ diff --git a/htdocs/theme/amarok/img/vmenu.png b/htdocs/theme/amarok/img/vmenu.png deleted file mode 100644 index 06f1f0d6100..00000000000 Binary files a/htdocs/theme/amarok/img/vmenu.png and /dev/null differ diff --git a/htdocs/theme/amarok/style.css.php b/htdocs/theme/amarok/style.css.php deleted file mode 100644 index 80f64e41561..00000000000 --- a/htdocs/theme/amarok/style.css.php +++ /dev/null @@ -1,2520 +0,0 @@ - - * Copyright (C) 2012 Xavier Peyronnet - * Copyright (C) 2012 Regis Houssin - * Copyright (C) 2012 Juanjo Menent - * Copyright (C) 2013-2014 Laurent Destailleur - * - * 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 - * the Free Software Foundation; either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ - -/** - * \file htdocs/theme/amarok/style.css.php - * \brief File for CSS style sheet Amarok - */ - - - -//if (! defined('NOREQUIREUSER')) define('NOREQUIREUSER','1'); // Not disabled because need to load personalized language -//if (! defined('NOREQUIREDB')) define('NOREQUIREDB','1'); // Not disabled to increase speed. Language code is found on url. -if (! defined('NOREQUIRESOC')) define('NOREQUIRESOC','1'); -//if (! defined('NOREQUIRETRAN')) define('NOREQUIRETRAN','1'); // Not disabled because need to do translations -if (! defined('NOCSRFCHECK')) define('NOCSRFCHECK',1); -if (! defined('NOTOKENRENEWAL')) define('NOTOKENRENEWAL',1); -if (! defined('NOLOGIN')) define('NOLOGIN',1); // File must be accessed by logon page so without login -if (! defined('NOREQUIREMENU')) define('NOREQUIREMENU',1); -if (! defined('NOREQUIREHTML')) define('NOREQUIREHTML',1); -if (! defined('NOREQUIREAJAX')) define('NOREQUIREAJAX','1'); - -session_cache_limiter(FALSE); - -require_once '../../main.inc.php'; - -// Load user to have $user->conf loaded (not done into main because of NOLOGIN constant defined) -if (empty($user->id) && ! empty($_SESSION['dol_login'])) $user->fetch('',$_SESSION['dol_login']); - - -// Define css type -header('Content-type: text/css'); -// Important: Following code is to avoid page request by browser and PHP CPU at each Dolibarr page access. -if (empty($dolibarr_nocache)) header('Cache-Control: max-age=3600, public, must-revalidate'); -else header('Cache-Control: no-cache'); - -// On the fly GZIP compression for all pages (if browser support it). Must set the bit 3 of constant to 1. -if (isset($conf->global->MAIN_OPTIMIZE_SPEED) && ($conf->global->MAIN_OPTIMIZE_SPEED & 0x04)) { ob_start("ob_gzhandler"); } - -if (GETPOST('lang')) $langs->setDefaultLang(GETPOST('lang')); // If language was forced on URL -if (GETPOST('theme')) $conf->theme=GETPOST('theme'); // If theme was forced on URL -$langs->load("main",0,1); -$right=($langs->trans("DIRECTION")=='rtl'?'left':'right'); -$left=($langs->trans("DIRECTION")=='rtl'?'right':'left'); - -$path=''; // This value may be used in future for external module to overwrite theme -$theme='amarok'; // Value of theme -if (! empty($conf->global->MAIN_OVERWRITE_THEME_RES)) { $path='/'.$conf->global->MAIN_OVERWRITE_THEME_RES; $theme=$conf->global->MAIN_OVERWRITE_THEME_RES; } - -// Define image path files and other constants -$fontlist='helvetica,arial,tahoma,verdana'; //$fontlist='Verdana,Helvetica,Arial,sans-serif'; -$img_liste_titre=dol_buildpath($path.'/theme/'.$theme.'/img/menus/trtitle.png',1); -$img_button=dol_buildpath($path.'/theme/'.$theme.'/img/button_bg.png',1); -$dol_hide_topmenu=$conf->dol_hide_topmenu; -$dol_hide_leftmenu=$conf->dol_hide_leftmenu; -$dol_optimize_smallscreen=$conf->dol_optimize_smallscreen; -$dol_no_mouse_hover=$conf->dol_no_mouse_hover; -$dol_use_jmobile=$conf->dol_use_jmobile; - - -// Define reference colors -// Example: Light grey: $colred=235;$colgreen=235;$colblue=235; -// Example: Pink: $colred=230;$colgreen=210;$colblue=230; -// Example: Green: $colred=210;$colgreen=230;$colblue=210; -// Example: Ocean: $colred=220;$colgreen=220;$colblue=240; -//$conf->global->THEME_ELDY_ENABLE_PERSONALIZED=0; -//$user->conf->THEME_ELDY_ENABLE_PERSONALIZED=0; -//var_dump($user->conf->THEME_ELDY_RGB); -$colred =empty($user->conf->THEME_ELDY_ENABLE_PERSONALIZED)?(empty($conf->global->THEME_ELDY_RGB)?235:hexdec(substr($conf->global->THEME_ELDY_RGB,0,2))):(empty($user->conf->THEME_ELDY_RGB)?235:hexdec(substr($user->conf->THEME_ELDY_RGB,0,2))); -$colgreen=empty($user->conf->THEME_ELDY_ENABLE_PERSONALIZED)?(empty($conf->global->THEME_ELDY_RGB)?235:hexdec(substr($conf->global->THEME_ELDY_RGB,2,2))):(empty($user->conf->THEME_ELDY_RGB)?235:hexdec(substr($user->conf->THEME_ELDY_RGB,2,2))); -$colblue =empty($user->conf->THEME_ELDY_ENABLE_PERSONALIZED)?(empty($conf->global->THEME_ELDY_RGB)?235:hexdec(substr($conf->global->THEME_ELDY_RGB,4,2))):(empty($user->conf->THEME_ELDY_RGB)?235:hexdec(substr($user->conf->THEME_ELDY_RGB,4,2))); - -// Colors -$isred=max(0,(2*$colred-$colgreen-$colblue)/2); // 0 - 255 -$isgreen=max(0,(2*$colgreen-$colred-$colblue)/2); // 0 - 255 -$isblue=max(0,(2*$colblue-$colred-$colgreen)/2); // 0 - 255 -$colorback1=($colred-3).','.($colgreen-3).','.($colblue-3); // topmenu -$colorback2=($colred+5).','.($colgreen+5).','.($colblue+5); -$colorbacktab1=($colred+15).','.($colgreen+16).','.($colblue+17); // vmenu -$colorbacktab1b=($colred+5).','.($colgreen+6).','.($colblue+7); // vmenu (not menu) -$colorbacktab2=($colred-15).','.($colgreen-15).','.($colblue-15); -$colorbacktitle1=($colred-5).','.($colgreen-5).','.($colblue-5); // title of array -$colorbacktitle2=($colred-15).','.($colgreen-15).','.($colblue-15); -$colorbacktabcard1=($colred+15).','.($colgreen+16).','.($colblue+17); // card -$colorbacktabcard2=($colred-15).','.($colgreen-15).','.($colblue-15); -$colorbacktabactive=($colred-15).','.($colgreen-15).','.($colblue-15); -$colorbacklineimpair1=(244+round($isred/3)).','.(244+round($isgreen/3)).','.(244+round($isblue/3)); // line impair -$colorbacklineimpair2=(250+round($isred/3)).','.(250+round($isgreen/3)).','.(250+round($isblue/3)); // line impair -$colorbacklineimpairhover=(230+round(($isred+$isgreen+$isblue)/9)).','.(230+round(($isred+$isgreen+$isblue)/9)).','.(230+round(($isred+$isgreen+$isblue)/9)); // line impair -$colorbacklinepair1='255,255,255'; // line pair -$colorbacklinepair2='255,255,255'; // line pair -$colorbacklinepairhover=(230+round(($isred+$isgreen+$isblue)/9)).','.(230+round(($isred+$isgreen+$isblue)/9)).','.(230+round(($isred+$isgreen+$isblue)/9)); -$colorbackbody='#f5f5f5'; -$colortext='40,40,40'; -$fontsize='12'; -$fontsizesmaller='11'; - -$colorback1 =empty($user->conf->THEME_ELDY_ENABLE_PERSONALIZED)?(empty($conf->global->THEME_ELDY_TOPMENU_BACK1)?$colorback1:$conf->global->THEME_ELDY_TOPMENU_BACK1) :(empty($user->conf->THEME_ELDY_TOPMENU_BACK1)?$colorback1:$user->conf->THEME_ELDY_TOPMENU_BACK1); -$colorback2 =empty($user->conf->THEME_ELDY_ENABLE_PERSONALIZED)?(empty($conf->global->THEME_ELDY_TOPMENU_BACK2)?$colorback2:$conf->global->THEME_ELDY_TOPMENU_BACK2) :(empty($user->conf->THEME_ELDY_TOPMENU_BACK2)?$colorback2:$user->conf->THEME_ELDY_TOPMENU_BACK2); -$colorbacktab1 =empty($user->conf->THEME_ELDY_ENABLE_PERSONALIZED)?(empty($conf->global->THEME_ELDY_VERMENU_BACK1)?$colorbacktab1:$conf->global->THEME_ELDY_VERMENU_BACK1) :(empty($user->conf->THEME_ELDY_VERMENU_BACK1)?$colorbacktab1:$user->conf->THEME_ELDY_VERMENU_BACK1); -$colorbacktab1b =empty($user->conf->THEME_ELDY_ENABLE_PERSONALIZED)?(empty($conf->global->THEME_ELDY_VERMENU_BACK1b)?$colorbacktab1:$conf->global->THEME_ELDY_VERMENU_BACK1b) :(empty($user->conf->THEME_ELDY_VERMENU_BACK1b)?$colorbacktab1b:$user->conf->THEME_ELDY_VERMENU_BACK1b); -$colorbacktab2 =empty($user->conf->THEME_ELDY_ENABLE_PERSONALIZED)?(empty($conf->global->THEME_ELDY_VERMENU_BACK2)?$colorbacktab2:$conf->global->THEME_ELDY_VERMENU_BACK2) :(empty($user->conf->THEME_ELDY_VERMENU_BACK2)?$colorbacktab2:$user->conf->THEME_ELDY_VERMENU_BACK2); -$colorbacktitle1 =empty($user->conf->THEME_ELDY_ENABLE_PERSONALIZED)?(empty($conf->global->THEME_ELDY_BACKTITLE1) ?$colorbacktitle1:$conf->global->THEME_ELDY_BACKTITLE1) :(empty($user->conf->THEME_ELDY_BACKTITLE1)?$colorbacktitle1:$user->conf->THEME_ELDY_BACKTITLE1); -$colorbacktitle2 =empty($user->conf->THEME_ELDY_ENABLE_PERSONALIZED)?(empty($conf->global->THEME_ELDY_BACKTITLE2) ?$colorbacktitle2:$conf->global->THEME_ELDY_BACKTITLE2) :(empty($user->conf->THEME_ELDY_BACKTITLE2)?$colorbacktitle2:$user->conf->THEME_ELDY_BACKTITLE2); -$colorbacktabcard1 =empty($user->conf->THEME_ELDY_ENABLE_PERSONALIZED)?(empty($conf->global->THEME_ELDY_BACKTABCARD1) ?$colorbacktabcard1:$conf->global->THEME_ELDY_BACKTABCARD1) :(empty($user->conf->THEME_ELDY_BACKTABCARD1)?$colorbacktabcard1:$user->conf->THEME_ELDY_BACKTABCARD1); -$colorbacktabcard2 =empty($user->conf->THEME_ELDY_ENABLE_PERSONALIZED)?(empty($conf->global->THEME_ELDY_BACKTABCARD2) ?$colorbacktabcard2:$conf->global->THEME_ELDY_BACKTABCARD2) :(empty($user->conf->THEME_ELDY_BACKTABCARD2)?$colorbacktabcard2:$user->conf->THEME_ELDY_BACKTABCARD2); -$colorbacktabactive =empty($user->conf->THEME_ELDY_ENABLE_PERSONALIZED)?(empty($conf->global->THEME_ELDY_BACKTABACTIVE)?$colorbacktabactive:$conf->global->THEME_ELDY_BACKTABACTIVE):(empty($user->conf->THEME_ELDY_BACKTABACTIVE)?$colorbacktabactive:$user->conf->THEME_ELDY_BACKTABACTIVE); -$colorbacklineimpair1=empty($user->conf->THEME_ELDY_ENABLE_PERSONALIZED)?(empty($conf->global->THEME_ELDY_LINEIMPAIR1) ?$colorbacklineimpair1:$conf->global->THEME_ELDY_LINEIMPAIR1):(empty($user->conf->THEME_ELDY_LINEIMPAIR1)?$colorbacklineimpair1:$user->conf->THEME_ELDY_LINEIMPAIR1); -$colorbacklineimpair2=empty($user->conf->THEME_ELDY_ENABLE_PERSONALIZED)?(empty($conf->global->THEME_ELDY_LINEIMPAIR2) ?$colorbacklineimpair2:$conf->global->THEME_ELDY_LINEIMPAIR2):(empty($user->conf->THEME_ELDY_LINEIMPAIR2)?$colorbacklineimpair2:$user->conf->THEME_ELDY_LINEIMPAIR2); -$colorbacklineimpairhover=empty($user->conf->THEME_ELDY_ENABLE_PERSONALIZED)?(empty($conf->global->THEME_ELDY_LINEIMPAIRHOVER) ?$colorbacklineimpairhover:$conf->global->THEME_ELDY_LINEIMPAIRHOVER):(empty($user->conf->THEME_ELDY_LINEIMPAIRHOVER)?$colorbacklineimpairhover:$user->conf->THEME_ELDY_LINEIMPAIRHOVER); -$colorbacklinepair1 =empty($user->conf->THEME_ELDY_ENABLE_PERSONALIZED)?(empty($conf->global->THEME_ELDY_LINEPAIR1) ?$colorbacklinepair1:$conf->global->THEME_ELDY_LINEPAIR1) :(empty($user->conf->THEME_ELDY_LINEPAIR1)?$colorbacklinepair1:$user->conf->THEME_ELDY_LINEPAIR1); -$colorbacklinepair2 =empty($user->conf->THEME_ELDY_ENABLE_PERSONALIZED)?(empty($conf->global->THEME_ELDY_LINEPAIR2) ?$colorbacklinepair2:$conf->global->THEME_ELDY_LINEPAIR2) :(empty($user->conf->THEME_ELDY_LINEPAIR2)?$colorbacklinepair2:$user->conf->THEME_ELDY_LINEPAIR2); -$colorbacklinepairhover =empty($user->conf->THEME_ELDY_ENABLE_PERSONALIZED)?(empty($conf->global->THEME_ELDY_LINEPAIRHOVER) ?$colorbacklinepairhover:$conf->global->THEME_ELDY_LINEPAIRHOVER) :(empty($user->conf->THEME_ELDY_LINEPAIRHOVER)?$colorbacklinepairhover:$user->conf->THEME_ELDY_LINEPAIRHOVER); -$colorbackbody =empty($user->conf->THEME_ELDY_ENABLE_PERSONALIZED)?(empty($conf->global->THEME_ELDY_BACKBODY) ?$colorbackbody:$conf->global->THEME_ELDY_BACKBODY) :(empty($user->conf->THEME_ELDY_BACKBODY)?$colorbackbody:$user->conf->THEME_ELDY_BACKBODY); -$colortext =empty($user->conf->THEME_ELDY_ENABLE_PERSONALIZED)?(empty($conf->global->THEME_ELDY_TEXT) ?$colortext:$conf->global->THEME_ELDY_TEXT) :(empty($user->conf->THEME_ELDY_TEXT)?$colortext:$user->conf->THEME_ELDY_TEXT); -$fontsize =empty($user->conf->THEME_ELDY_ENABLE_PERSONALIZED)?(empty($conf->global->THEME_ELDY_FONT_SIZE1) ?$fontsize:$conf->global->THEME_ELDY_FONT_SIZE1) :(empty($user->conf->THEME_ELDY_FONT_SIZE1)?$fontsize:$user->conf->THEME_ELDY_FONT_SIZE1); -$fontsizesmaller =empty($user->conf->THEME_ELDY_ENABLE_PERSONALIZED)?(empty($conf->global->THEME_ELDY_FONT_SIZE2) ?$fontsize:$conf->global->THEME_ELDY_FONT_SIZE2) :(empty($user->conf->THEME_ELDY_FONT_SIZE2)?$fontsize:$user->conf->THEME_ELDY_FONT_SIZE2); -// No hover by default, we keep only if we set var THEME_ELDY_USE_HOVER -if ((! empty($user->conf->THEME_ELDY_ENABLE_PERSONALIZED) && empty($user->conf->THEME_ELDY_USE_HOVER)) - || (empty($user->conf->THEME_ELDY_ENABLE_PERSONALIZED) && empty($conf->global->THEME_ELDY_USE_HOVER))) -{ - $colorbacklineimpairhover=''; - $colorbacklinepairhover=''; -} - - -// Set text color to black or white -$tmppart=explode(',',$colorback1); -$tmpval=(! empty($tmppart[1]) ? $tmppart[1] : ''); -$tmpval+=(! empty($tmppart[2]) ? $tmppart[2] : ''); -$tmpval+=(! empty($tmppart[3]) ? $tmppart[3] : ''); -//print $tmpval; -if ($tmpval < 340) $colortextmain='FFFFFF'; -else $colortextmain='101010'; -if ($tmpval <= 360) { $colortexttitle='FFF'; $colorshadowtitle='000'; } -else { $colortexttitle='444'; $colorshadowtitle='FFF'; } - -$usecss3=true; -if ($conf->browser->name == 'ie' && round($conf->browser->version,2) < 10) $usecss3=false; -elseif ($conf->browser->name == 'iceweasel') $usecss3=false; -elseif ($conf->browser->name == 'epiphany') $usecss3=false; - -print '/*'."\n"; -print 'colred='.$colred.' colgreen='.$colgreen.' colblue='.$colblue."\n"; -print 'isred='.$isred.' isgreen='.$isgreen.' isblue='.$isblue."\n"; -print 'colorbacklineimpair1='.$colorbacklineimpair1."\n"; -print 'colorbacklineimpair2='.$colorbacklineimpair2."\n"; -print 'colorbacklineimpairhover='.$colorbacklineimpairhover."\n"; -print 'colorbacklinepair1='.$colorbacklinepair1."\n"; -print 'colorbacklinepair2='.$colorbacklinepair2."\n"; -print 'colorbacklinepairhover='.$colorbacklinepairhover."\n"; -print 'usecss3='.$usecss3."\n"; -print 'dol_hide_topmenu='.$dol_hide_topmenu."\n"; -print 'dol_hide_leftmenu='.$dol_hide_leftmenu."\n"; -print 'dol_optimize_smallscreen='.$dol_optimize_smallscreen."\n"; -print 'dol_no_mouse_hover='.$dol_no_mouse_hover."\n"; -print 'dol_use_jmobile='.$dol_use_jmobile."\n"; -print '*/'."\n"; - -if (! empty($conf->dol_optimize_smallscreen)) $fontsize=11; -?> - - -/* ============================================================================== */ -/* Default styles */ -/* ============================================================================== */ - -*, html { - margin:0; - padding:0; -font-size:100%; -} - -body { -dol_optimize_smallscreen)) { ?> - background-color: #FFFFFF; - - background-color: ; - - color:#232323; - font-size:px; - font-family:; - trans("DIRECTION").";\n"; ?> -} - -a { - font-family:; - font-weight:bold; - text-decoration:none; - color:#232323; -} - -a:hover, a:active { - color:rgba(0,0,0,.6); -} - - - -input, input.flat, textarea, textarea.flat, form.flat select, select.flat { - padding: 2px; -} -input, textarea { - font-size:px; - font-family:; - border-radius:4px; - border:solid 1px rgba(0,0,0,.3); - border-top:solid 1px rgba(0,0,0,.4); - border-bottom:solid 1px rgba(0,0,0,.2); - box-shadow:1px 1px 2px rgba(0,0,0,.2) inset; -} - - - -input[type="image"] { - border-radius:0px; - border:none; - box-shadow:none; -} - -input.flat { - font-size:px; - font-family:; - border-radius:4px; - border:solid 1px rgba(0,0,0,.3); - border-top:solid 1px rgba(0,0,0,.4); - border-bottom:solid 1px rgba(0,0,0,.2); -} - -input:disabled {background:#b6b6b6;} - -input[type=checkbox] { background-color: transparent; border: none; box-shadow: none; } -input[type=radio] { background-color: transparent; border: none; box-shadow: none; } -input[type=image] { background-color: transparent; border: none; box-shadow: none; } -input[type=text] { min-width: 20px; } -input:-webkit-autofill { - background-color: !important; - background-image:none !important; - -webkit-box-shadow: 0 0 0 50px inset; -} -::-webkit-input-placeholder { color:#ccc; } -::-moz-placeholder { color:#ccc; } /* firefox 19+ */ -:-ms-input-placeholder { color:#ccc; } /* ie */ -input:-moz-placeholder { color:#ccc; } - - -legend { margin-bottom: 8px; } - - -textarea.flat { - font-size:px; - font-family:; - border-radius:4px; - border:solid 1px rgba(0,0,0,.3); - border-top:solid 1px rgba(0,0,0,.4); - border-bottom:solid 1px rgba(0,0,0,.2); - box-shadow:1px 1px 2px rgba(0,0,0,.2) inset; -} - -textarea:disabled {background:#dddddd;} - -select.flat { - font-size:px; - font-family:; - border-radius:4px; - border:solid 1px rgba(0,0,0,.3); - border-top:solid 1px rgba(0,0,0,.4); - border-bottom:solid 1px rgba(0,0,0,.2); - box-shadow:1px 1px 2px rgba(0,0,0,.2) inset; - background: #FDFDFD; -} - -form { - padding:0px; - margin:0px; -} -div.float -{ - float:; -} -div.floatright -{ - float:; -} -.inline-block -{ - display:inline-block; -} - -th .button { - -moz-box-shadow: none !important; - -webkit-box-shadow: none !important; - box-shadow: none !important; - -moz-border-radius:0px !important; - -webkit-border-radius:0px !important; - border-radius:0px !important; -} - -.valignmiddle { - vertical-align: middle; -} -.centpercent { - width: 100%; -} -.center { - text-align: center; -} -.left { - text-align: ; -} -.right { - text-align: ; -} -.nowrap { - white-space: ; -} -.nobold { - font-weight: normal !important; -} -.nounderline { - text-decoration: none; -} -.cursorpointer { - cursor: pointer; -} - -.blockvmenubookmarks .menu_contenu { - background-color: transparent; -} - -/* ! Message d'erreur lors du login : */ -center .error { padding:8px !important; padding-left:26px !important; padding-right:20px; width:inherit; max-width:450px;color:#552323 !important; font-size:14px; border-radius:8px; text-align: left;} - -.badge { - display: inline-block; - min-width: 10px; - padding: 2px 5px; - font-size: 10px; - font-weight: 700; - line-height: 0.9em; - color: #fff; - text-align: center; - white-space: nowrap; - vertical-align: baseline; - background-color: #777; - border-radius: 10px; -} - - -/* ============================================================================== */ -/* Styles to hide objects */ -/* ============================================================================== */ - -.hideobject { display:none; } - -.hideonsmartphone { display: none; } -.noenlargeonsmartphone { width : 50px !important; display: inline !important; } -.maxwidthonsmartphone { max-width: 100px; } - -.linkobject { cursor:pointer; } - -.hideonprint { display: none !important; } - - - -/* ============================================================================== */ -/* Styles for dragging lines */ -/* ============================================================================== */ - -.dragClass { - color: #333333; -} -td.showDragHandle { - cursor: move; -} -.tdlineupdown { - white-space: nowrap; - min-width: 10px; -} - -/* ============================================================================== */ -/* Menu top et 1ere ligne tableau */ -/* ============================================================================== */ - -div.tmenu { - - display:none; - - position:relative; - display:block; - margin:0; - padding:0; - padding-left:1em; - top:0; - left:0; - right:0; - white-space:nowrap; - height:36px; - browser->name != 'ie') echo "line-height:36px; /* disabled for ie9 */ \n"; ?> - background:#333333; - background-image:linear-gradient(top, rgba(255,255,255,.3) 0%, rgba(0,0,0,.3) 100%); - background-image:-o-linear-gradient(top, rgba(255,255,255,.3) 0%, rgba(0,0,0,.3) 100%); - background-image:-moz-linear-gradient(top, rgba(255,255,255,.3) 0%, rgba(0,0,0,.3) 100%); - background-image:-webkit-linear-gradient(top, rgba(255,255,255,.3) 0%, rgba(0,0,0,.3) 100%); - background-image:-ms-linear-gradient(top, rgba(255,255,255,.3) 0%, rgba(0,0,0,.3) 100%); - background-image:-webkit-gradient( - linear, - left top, - left bottom, - color-stop(0, rgba(255,255,255,.3)), - color-stop(1, rgba(0,0,0,.3)) - ); - border-bottom:solid 1px rgba(0,0,0,.8); - box-shadow:0 0 6px rgba(0,0,0,.4) !important; - z-index:100; - -} - -div.tmenu a { - font-weight:normal; -} - -div.tmenu li { - display:inline-table; - margin-right:1em; - text-transform:uppercase; -} - -div.tmenu li a {color:#cccccc;} -div.tmenu li a:hover { color:rgba(255,255,255,1);} - -div.tmenu ul li a.tmenusel {/* texte du menu principal sélectionné */ - color:#ffffff; - font-weight:bold; -} - -.tmenudisabled { color:#808080 !important; cursor: not-allowed; } - - - -/* Login */ - -body.body center { color:white; margin-top: 100px; } - -form#login { - border:solid 1px rgba(0,0,0,.4); - border-top:solid 1px #ffffff; - background-color:#c7d0db; - background-image:linear-gradient(top, rgba(255,255,255,.3) 0%, rgba(0,0,0,.3) 100%); - background-image:-o-linear-gradient(top, rgba(255,255,255,.3) 0%, rgba(0,0,0,.3) 100%); - background-image:-moz-linear-gradient(top, rgba(255,255,255,.3) 0%, rgba(0,0,0,.3) 100%); - background-image:-webkit-linear-gradient(top, rgba(255,255,255,.3) 0%, rgba(0,0,0,.3) 100%); - background-image:-ms-linear-gradient(top, rgba(255,255,255,.3) 0%, rgba(0,0,0,.3) 100%); - background-image:-webkit-gradient( - linear, - left top, - left bottom, - color-stop(0, rgba(255,255,255,.3)), - color-stop(1, rgba(0,0,0,.3)) - ); - margin-left:auto; - margin-right:auto; - margin-bottom:25px; - padding:20px 20px 10px; - max-width:500px; - border-radius:12px; - box-shadow:0 0 16px rgba(0,0,0,.8); -} -form#login img {width:auto; height:auto; opacity:.7;} -form#login img#img_logo { - width:190px; - max-width:190px; - max-height:100px; - height:auto; - border-radius:6px; - padding:6px; - background-color:#ffffff; - border:solid 1px rgba(0,0,0,.4); - border-top:solid 1px rgba(0,0,0,.5); - border-bottom:solid 1px rgba(0,0,0,.3); - box-shadow:1px 1px 6px rgba(0,0,0,.3) inset , 0 0 1px rgba(255,255,255,.6); -} - -form#login input { - padding:6px; - font-size:120%; -} - -form#login label, form#login td b { - vertical-align:middle; - line-height:40px; - color:rgba(0,0,0,.4); - text-shadow:1px 1px 1px rgba(255,255,255,.6); -} - -form#login table.login_table { - margin:10px 0px; - border:none; - background:none !important; -} - -div#login_left, div#login_right { - display: inline-block; - min-width: 220px; - text-align: center; - vertical-align: middle; -} - -table.login_table { background-color: red !important;} -table.login_table tr td {vertical-align:middle;} -table.login_table tr.vmenu td {font-size:18px;} -table.login_table tr td a {color:#333333 !important;} -table.login_table tr td a:hover {color:#000000 !important;} - -table.login_table .button { - padding:2px; - padding-left:6px; - padding-right:6px; - margin-right:6px; - border-radius:.6em; - - background-image: linear-gradient(top, rgba(255,255,255,.3) 0%, rgba(0,0,0,.3) 100%); - background-image: -o-linear-gradient(top, rgba(255,255,255,.3) 0%, rgba(0,0,0,.3) 100%); - background-image: -moz-linear-gradient(top, rgba(255,255,255,.3) 0%, rgba(0,0,0,.3) 100%); - background-image: -webkit-linear-gradient(top, rgba(255,255,255,.3) 0%, rgba(0,0,0,.3) 100%); - background-image: -ms-linear-gradient(top, rgba(255,255,255,.3) 0%, rgba(0,0,0,.3) 100%); - background-image: -webkit-gradient( - linear, - left top, - left bottom, - color-stop(0, rgba(255,255,255,.3)), - color-stop(1, rgba(0,0,0,.3)) - ); -} - -table.login_table .button:hover { - background-image: linear-gradient(top, rgba(255,255,255,.3) 100%, rgba(0,0,0,.3) 0%); - background-image: -o-linear-gradient(top, rgba(255,255,255,.3) 100%, rgba(0,0,0,.3) 0%); - background-image: -moz-linear-gradient(top, rgba(255,255,255,.3) 100%, rgba(0,0,0,.3) 0%); - background-image: -webkit-linear-gradient(top, rgba(255,255,255,.3) 100%, rgba(0,0,0,.3) 0%); - background-image: -ms-linear-gradient(top, rgba(255,255,255,.3) 100%, rgba(0,0,0,.3) 0%); - background-image: -webkit-gradient( - linear, - left top, - left bottom, - color-stop(1, rgba(255,255,255,.3)), - color-stop(0, rgba(0,0,0,.3)) - ); -} - -table.login_table .vmenu { - color:rgba(0,0,0,.6); - text-shadow:1px 1px 1px rgba(255,255,255,.6); - font-size:120%; -} - -div.login_block { - position:absolute; - top:0px; - right:8px; - z-index:100; - - display:none; - -} -div.login_block_user, div.login_block_other { clear: both; } - -div.login_block a {color:rgba(255,255,255,.6);} -div.login_block a:hover {color:#ffffff} - -div.login_block table { - display:inline; -} - -div.login { - white-space:nowrap; - font-weight:bold; - float: right; -} -.login_block_user { - float: right; -} -.login_block_elem { - float: right; - vertical-align: top; - padding: 0px 0px 0px 8px !important; - height: 16px; -} - -#securitycode { - min-width: 60px; -} - -img.login, img.printer, img.entity { - margin:2px 0px 0px 0px; - text-decoration:none; - color: white; - font-weight:bold; -} - -.alogin { - color: #FFF; - font-weight: normal; -} -.alogin:hover { - color: #FFF; - text-decoration:underline; -} - -div.login_main_home { - color: #000000; -} - - -/* ============================================================================== */ -/* Menu gauche */ -/* ============================================================================== */ - -td.vmenu { - - margin-right:2px; - padding:0px; - width:170px; - /* border-right: 1px solid #666666; */ - -} - -div.vmenu { - - display:none; - - width:170px; - -moz-box-shadow: 3px 0px 6px #CCC; - -webkit-box-shadow: 3px 0px 6px #CCC; - box-shadow: 3px 0px 6px #CCC; - -} - -.blockvmenupair .menu_titre, .blockvmenuimpair .menu_titre { - height:22px; - line-height:22px; - /* text-align:center; */ - background-color:rgba(0,0,0,.08); - background-image:linear-gradient(top, rgba(255,255,255,.3) 0%, rgba(0,0,0,.3) 100%); - background-image:-o-linear-gradient(top, rgba(255,255,255,.3) 0%, rgba(0,0,0,.3) 100%); - background-image:-moz-linear-gradient(top, rgba(255,255,255,.3) 0%, rgba(0,0,0,.3) 100%); - background-image:-webkit-linear-gradient(top, rgba(255,255,255,.3) 0%, rgba(0,0,0,.3) 100%); - background-image:-ms-linear-gradient(top, rgba(255,255,255,.3) 0%, rgba(0,0,0,.3) 100%); - background-image:-webkit-gradient( - linear, - left top, - left bottom, - color-stop(0, rgba(255,255,255,.3)), - color-stop(1, rgba(0,0,0,.3)) - ); - padding-left:5px; - border-top:solid 1px rgba(255,255,255,.5); - border-bottom:solid 1px rgba(0,0,0,.5); -} - -.blockvmenupair .menu_titre a, .blockvmenuimpair .menu_titre a {font-weight:normal;} - -.menu_contenu { - background-color:#ffffff; - padding-left:6px; - border-top:solid 1px rgba(0,0,0,.05); -} - -.menu_contenu:hover {background-color:#f7f7f7;} -.menu_contenu a.vsmenu { - color:#000000; - line-height:18px; - font-weight:normal; -} - -.blockvmenusearch { - border-top:solid 1px rgba(0,0,0,.3); - padding:10px 5px 20px; - text-align:center; -} - -.blockvmenusearch .menu_titre { - margin-top:6px; - text-align:left; - padding-left:0px; -} - -#blockvmenuhelp { - border-top:solid 1px rgba(0,0,0,.1); - padding:12px; - text-align:center; -} - -a.help:link, a.help:visited, a.help:hover, a.help:active { font-size:px; font-family: ; text-align: ; font-weight: normal; color: #666666; } - - -/* ============================================================================== */ -/* Panes for Main */ -/* ============================================================================== */ - -#mainContent { - background-color:#ffffff; -} - -#mainContent, #leftContent .ui-layout-pane { - padding:0px; - overflow:auto; -} - -#mainContent, #leftContent .ui-layout-center { - padding:0px; - position:relative; /* contain floated or positioned elements */ - overflow:auto; /* add scrolling to content-div */ -} - - -/* ============================================================================== */ -/* Toolbar for ECM or Filemanager */ -/* ============================================================================== */ - - -.largebutton { - background-image: -o-linear-gradient(bottom, rgb() 15%, rgb() 100%) !important; - background-image: -moz-linear-gradient(bottom, rgb() 15%, rgb() 100%) !important; - background-image: -webkit-linear-gradient(bottom, rgb() 15%, rgb() 100%) !important; - background-image: -ms-linear-gradient(bottom, rgb() 15%, rgb() 100%) !important; - background-image: linear-gradient(bottom, rgb() 15%, rgb() 100%) !important; - border: 1px solid #CCC !important; - - -moz-border-radius: 5px 5px 5px 5px !important; - -webkit-border-radius: 5px 5px 5px 5px !important; - border-radius: 5px 5px 5px 5px !important; - -moz-box-shadow: 4px 4px 4px #EEE; - -webkit-box-shadow: 4px 4px 4px #EEE; - box-shadow: 4px 4px 4px #EEE; - - padding: 0 4px 0 4px !important; -} - -.toolbar {} -.toolbarbutton {} - - -/* ============================================================================== */ -/* Panes for ECM or Filemanager */ -/* ============================================================================== */ - - -#containerlayout .layout-with-no-border { - border: 0 !important; - border-width: 0 !important; -} - -#containerlayout .layout-padding { - padding: 2px !important; -} - -/* - * PANES and CONTENT-DIVs - */ -#containerlayout .ui-layout-pane { /* all 'panes' */ - background: #FFF; - border: 1px solid #BBB; - /* DO NOT add scrolling (or padding) to 'panes' that have a content-div, - otherwise you may get double-scrollbars - on the pane AND on the content-div - */ - padding: 0px; - overflow: auto; -} -/* (scrolling) content-div inside pane allows for fixed header(s) and/or footer(s) */ -#containerlayout .ui-layout-content { - padding: 10px; - position: relative; /* contain floated or positioned elements */ - overflow: auto; /* add scrolling to content-div */ -} - -/* - * RESIZER-BARS - */ -.ui-layout-resizer { /* all 'resizer-bars' */ - width: dol_optimize_smallscreen)?'8':'24'); ?>px !important; -} -.ui-layout-resizer-hover { /* affects both open and closed states */ -} -/* NOTE: It looks best when 'hover' and 'dragging' are set to the same color, - otherwise color shifts while dragging when bar can't keep up with mouse */ -/*.ui-layout-resizer-open-hover ,*/ /* hover-color to 'resize' */ -.ui-layout-resizer-dragging { /* resizer beging 'dragging' */ - background: #DDD; - width: dol_optimize_smallscreen)?'8':'24'); ?>px; -} -.ui-layout-resizer-dragging { /* CLONED resizer being dragged */ - border-left: 1px solid #BBB; - border-right: 1px solid #BBB; -} -/* NOTE: Add a 'dragging-limit' color to provide visual feedback when resizer hits min/max size limits */ -.ui-layout-resizer-dragging-limit { /* CLONED resizer at min or max size-limit */ - background: #E1A4A4; /* red */ -} -.ui-layout-resizer-closed { - background-color: #DDDDDD; -} -.ui-layout-resizer-closed:hover { - background-color: #EEDDDD; -} -.ui-layout-resizer-sliding { /* resizer when pane is 'slid open' */ - opacity: .10; /* show only a slight shadow */ - filter: alpha(opacity=10); -} -.ui-layout-resizer-sliding-hover { /* sliding resizer - hover */ - opacity: 1.00; /* on-hover, show the resizer-bar normally */ - filter: alpha(opacity=100); -} -/* sliding resizer - add 'outside-border' to resizer on-hover */ -/* this sample illustrates how to target specific panes and states */ -/*.ui-layout-resizer-north-sliding-hover { border-bottom-width: 1px; } -.ui-layout-resizer-south-sliding-hover { border-top-width: 1px; } -.ui-layout-resizer-west-sliding-hover { border-right-width: 1px; } -.ui-layout-resizer-east-sliding-hover { border-left-width: 1px; } -*/ - -/* - * TOGGLER-BUTTONS - */ -.ui-layout-toggler { - dol_optimize_smallscreen)) { ?> - border-top: 1px solid #AAA; /* match pane-border */ - border-right: 1px solid #AAA; /* match pane-border */ - border-bottom: 1px solid #AAA; /* match pane-border */ - background-color: #DDD; - top: 5px !important; - - diplay: none; - -} -.ui-layout-toggler-open { - height: 54px !important; - width: dol_optimize_smallscreen)?'7':'22'); ?>px !important; - -moz-border-radius:0px 10px 10px 0px; - -webkit-border-radius:0px 10px 10px 0px; - border-radius:0px 10px 10px 0px; -} -.ui-layout-toggler-closed { - height: dol_optimize_smallscreen)?'54':'2'); ?>px !important; - width: dol_optimize_smallscreen)?'7':'22'); ?>px !important; - -moz-border-radius:0px 10px 10px 0px; - -webkit-border-radius:0px 10px 10px 0px; - border-radius:0px 10px 10px 0px; -} -.ui-layout-toggler .content { /* style the text we put INSIDE the togglers */ - color: #666; - font-size: 12px; - font-weight: bold; - width: 100%; - padding-bottom: 0.35ex; /* to 'vertically center' text inside text-span */ -} - -/* hide the toggler-button when the pane is 'slid open' */ -.ui-layout-resizer-sliding ui-layout-toggler { - display: none; -} - -.ui-layout-north { - height: dol_optimize_smallscreen)?'54':'21'); ?>px !important; -} - - -/* ECM */ - -#containerlayout .ecm-layout-pane { /* all 'panes' */ - background: #FFF; - border: 1px solid #BBB; - /* DO NOT add scrolling (or padding) to 'panes' that have a content-div, - otherwise you may get double-scrollbars - on the pane AND on the content-div - */ - padding: 0px; - overflow: auto; -} -/* (scrolling) content-div inside pane allows for fixed header(s) and/or footer(s) */ -#containerlayout .ecm-layout-content { - padding: 10px; - position: relative; /* contain floated or positioned elements */ - overflow: auto; /* add scrolling to content-div */ -} - -.ecm-layout-toggler { - border-top: 1px solid #AAA; /* match pane-border */ - border-right: 1px solid #AAA; /* match pane-border */ - border-bottom: 1px solid #AAA; /* match pane-border */ - background-color: #CCC; - } -.ecm-layout-toggler-open { - height: 48px !important; - width: 6px !important; - -moz-border-radius:0px 10px 10px 0px; - -webkit-border-radius:0px 10px 10px 0px; - border-radius:0px 10px 10px 0px; -} -.ecm-layout-toggler-closed { - height: 48px !important; - width: 6px !important; -} - -.ecm-layout-toggler .content { /* style the text we put INSIDE the togglers */ - color: #666; - font-size: 12px; - font-weight: bold; - width: 100%; - padding-bottom: 0.35ex; /* to 'vertically center' text inside text-span */ -} -#ecm-layout-west-resizer { - width: 6px !important; -} - -.ecm-layout-resizer { /* all 'resizer-bars' */ - border: 1px solid #BBB; - border-width: 0; - } -.ecm-layout-resizer-closed { -} - -.ecm-in-layout-center { - border-left: 1px !important; - border-right: 0px !important; - border-top: 0px !important; -} - -.ecm-in-layout-south { - border-left: 0px !important; - border-right: 0px !important; - border-bottom: 0px !important; - padding: 4px 0 4px 4px !important; -} - - - -/* ============================================================================== */ -/* Onglets */ -/* ============================================================================== */ - -div.tabs { - margin: 0px 0px 0px 6px; - padding: 0px 6px 0px 0px; - clear:both; - height:100%; -} -div.tabsElem { margin-top: 10px; } /* To avoid overlap of tabs when not browser */ - -div.tabBar { - background-color:#ffffff; - padding:6px; - margin:0px 0px 14px 0px; - border:1px solid #bbbbbb; - -moz-box-shadow: 4px 4px 4px #DDD; - -webkit-box-shadow: 4px 4px 4px #DDD; - box-shadow: 4px 4px 4px #DDD; -} - -div.tabBar table.notopnoleftnoright { - white-space:nowrap; -} - -div.tabsAction { - margin-top:12px !important; - text-align:right; -} - -a.tabTitle { - color:rgba(0,0,0,.5); - margin-right:10px; - text-shadow:1px 1px 1px #ffffff; - padding-left:5px; - vertical-align:middle; -} - -a.tabTitle img { - vertical-align:middle; -} - -a.tab { - padding: 5px 12px 3px; - margin: 0em 0.2em; - background-color:rgba(0,0,0,.2); - color:#666666; - border:solid 1px rgba(0,0,0,.3); - border-bottom:0px; - -webkit-border-top-left-radius:6px; - -webkit-border-top-right-radius:6px; -} - -.tabactive { - color:#232323; - font-weight:bold; - background-color:#ffffff !important; - -} - -a.tab:hover {color:#333333;} - - -/* ============================================================================== */ -/* Styles de positionnement des zones */ -/* ============================================================================== */ - -#id-container { - margin-bottom: 6px; - display: table; - table-layout: fixed; -} -#id-right, #id-left { - display: table-cell; - float: none; - vertical-align: top; -} -#id- { - width: 100%; -} - -div.fiche { - padding: 8px 5px 10px; - margin-: global->MAIN_MENU_USE_JQUERY_LAYOUT))?($dol_hide_leftmenu?'3':'16'):'24')); ?>px; - margin-: dol_optimize_smallscreen)?'12':'3')); ?>px; -} - -div.fichecenter { - width: 100%; - clear: both; /* This is to have div fichecenter that are true rectangles */ -} -div.fichethirdleft { - dol_optimize_smallscreen)) { print "float: ".$left.";\n"; } ?> - dol_optimize_smallscreen)) { print "width: 35%;\n"; } ?> - dol_optimize_smallscreen)) { print "padding-bottom: 6px;\n"; } ?> -} -div.fichetwothirdright { - dol_optimize_smallscreen)) { print "float: ".$left.";\n"; } ?> - dol_optimize_smallscreen)) { print "width: 65%;\n"; } ?> - dol_optimize_smallscreen)) { print "padding-bottom: 6px\n"; } ?> -} -div.fichehalfleft { - dol_optimize_smallscreen)) { print "float: ".$left.";\n"; } ?> - dol_optimize_smallscreen)) { print "width: 50%;\n"; } ?> -} -div.fichehalfright { - dol_optimize_smallscreen)) { print "float: ".$left.";\n"; } ?> - dol_optimize_smallscreen)) { print "width: 50%;\n"; } ?> -} -div.ficheaddleft { - dol_optimize_smallscreen)) { print "padding-left: 16px;\n"; } - else print "margin-top: 10px;\n"; ?> -} - - - -/* ============================================================================== */ -/* Boutons actions */ -/* ============================================================================== */ - -div.divButAction { margin-bottom: 1.4em; } - -.button, .butAction {background: #999; border: solid 1px #888; font-weight: normal; } -.butActionRefused {background: #eaeaea; color:rgba(0,0,0,0.6); font-weight: normal !important; cursor: not-allowed; } -.butActionDelete {background: #b33c37; border:solid 1px #8d2f2b; font-weight: normal;} - -.button, .butAction, .butActionRefused, .butActionDelete { - padding:2px; - padding-left:6px; - padding-right:6px; - margin-right:6px; - /* -border-left: solid 1px rgba(0,0,0,.3); - border-right: solid 1px rgba(0,0,0,.3); - border-bottom: solid 1px rgba(0,0,0,.6); - border-top:solid 1px rgba(0,0,0,.1); -*/ - border-radius:.6em; - - background-image: linear-gradient(top, rgba(255,255,255,.3) 0%, rgba(0,0,0,.3) 100%); - background-image: -o-linear-gradient(top, rgba(255,255,255,.3) 0%, rgba(0,0,0,.3) 100%); - background-image: -moz-linear-gradient(top, rgba(255,255,255,.3) 0%, rgba(0,0,0,.3) 100%); - background-image: -webkit-linear-gradient(top, rgba(255,255,255,.3) 0%, rgba(0,0,0,.3) 100%); - background-image: -ms-linear-gradient(top, rgba(255,255,255,.3) 0%, rgba(0,0,0,.3) 100%); - background-image: -webkit-gradient( - linear, - left top, - left bottom, - color-stop(0, rgba(255,255,255,.3)), - color-stop(1, rgba(0,0,0,.3)) - ); - } - -.button, a.butAction {color: white; font-weight: normal !important;} - -.butAction, .butActionDelete {color:white;} - -td.formdocbutton {padding-top:6px;} - -.button:hover, .butAction:hover, .butActionDelete:hover { - background-image: linear-gradient(top, rgba(255,255,255,.3) 100%, rgba(0,0,0,.3) 0%); - background-image: -o-linear-gradient(top, rgba(255,255,255,.3) 100%, rgba(0,0,0,.3) 0%); - background-image: -moz-linear-gradient(top, rgba(255,255,255,.3) 100%, rgba(0,0,0,.3) 0%); - background-image: -webkit-linear-gradient(top, rgba(255,255,255,.3) 100%, rgba(0,0,0,.3) 0%); - background-image: -ms-linear-gradient(top, rgba(255,255,255,.3) 100%, rgba(0,0,0,.3) 0%); - background-image: -webkit-gradient( - linear, - left top, - left bottom, - color-stop(1, rgba(255,255,255,.3)), - color-stop(0, rgba(0,0,0,.3)) - ); - color:white; -} -.button:disabled { - opacity: 0.4; - filter: alpha(opacity=40); /* For IE8 and earlier */ - box-shadow: none; - -webkit-box-shadow: none; - -moz-box-shadow: none; - cursor: auto; -} -.buttonRefused { - pointer-events: none; - cursor: default; - opacity: 0.4; - filter: alpha(opacity=40); /* For IE8 and earlier */ - box-shadow: none; - -webkit-box-shadow: none; - -moz-box-shadow: none; -} - - -/* ============================================================================== */ -/* Tables */ -/* ============================================================================== */ - -#undertopmenu { -} - -table img, div.tagtable img { - padding:0px 2px; - vertical-align:middle; -} - -table.liste img, div.list img { - padding:0px; -} - -table a, div.tagtable a { - vertical-align:middle; -} - -.paddingrightonly { - border-collapse: collapse; - border: 0px; - margin-left: 0px; - padding-: 0px !important; - padding-: 4px !important; -} -.nocellnopadd { - list-style-type:none; - margin:0px; - padding:0px; -} - -.allwidth { -width: 100%; -} - -.notopnoleft { - border-collapse:collapse; - border:0px; - padding-top:0px; - padding-left:0px; - padding-right:10px; - padding-bottom:4px; - margin:0px 0px; -} - -table.notopnoleftnoright { - border:0px; - border-collapse:collapse; - padding-top:0px; - padding-left:0px; - padding-right:10px; - padding-bottom:4px; - margin:0px; -} - -table.border, table.dataTable, .table-border, .table-border-col, .table-key-border-col, .table-val-border-col, div.border { - border:1px solid #dddddd; - border-collapse:collapse; - padding:1px 0px; - padding-left:2px; -} - -table.border td, div.border div div.tagtd { - padding:1px 0px; - border:1px solid #dddddd; - border-collapse:collapse; - padding-left:2px; -} - -.table-key-border-col { - width: 25%; - vertical-align:top; -} -.table-val-border-col { - width:auto; -} - -/* Main boxes */ - -table.border.formdoc { - background-color:#f7f7f7; - border:1px solid #dddddd; - margin:0px; - width:60%; -} - -table.border.formdoc td { padding:1px 3px; } - -table.noborder, div.noborder { - border:1px solid #bbbbbb; - padding:0px; - margin:3px 0px 8px; - border-spacing:0px; - -moz-box-shadow: 2px 2px 2px #cccccc; - -webkit-box-shadow: 2px 2px 2px #cccccc; - box-shadow: 2px 2px 2px #cccccc; -} - -table.noborder tr, div.noborder form {} - -table.noborder td, , div.noborder div { padding:1px 2px 1px 3px; } - -table.nobordernopadding { - border-collapse:collapse; - border:0px; -} - -table.nobordernopadding tr { - border:0px; - padding:0px 0px; -} - -table.nobordernopadding td { - border:0px; - padding:1px 0px; -} - -table.notopnoleftnopadd { - background-color:#ffffff; - border:1px solid #bbbbbb; - padding:6px; -} - -/* For lists */ - -table.liste { - padding:0px; - border:1px solid #bbbbbb; - border-spacing:0px; - background-image:linear-gradient(top, rgba(255,255,255,.3) 0%, rgba(0,0,0,.3) 100%); - background-image:-o-linear-gradient(top, rgba(255,255,255,.3) 0%, rgba(0,0,0,.3) 100%); - background-image:-moz-linear-gradient(top, rgba(255,255,255,.3) 0%, rgba(0,0,0,.3) 100%); - background-image:-webkit-linear-gradient(top, rgba(255,255,255,.3) 0%, rgba(0,0,0,.3) 100%); - background-image:-ms-linear-gradient(top, rgba(255,255,255,.3) 0%, rgba(0,0,0,.3) 100%); - background-image:-webkit-gradient( - linear, - left top, - left bottom, - color-stop(0, rgba(255,255,255,.3)), - color-stop(1, rgba(0,0,0,.3)) - ); -} - -table.liste td {padding:1px 2px 1px 0px;} - -.tagtable, .table-border { display: table; } -.tagtr, .table-border-row { display: table-row; } -.tagtd, .table-border-col, .table-key-border-col, .table-val-border-col { display: table-cell; } - -/* Pagination */ -div.refidpadding { - padding-top: dol_use_jmobile)?'8':'12'; ?>px; -} -div.refid { - padding-top: dol_use_jmobile)?'5':'12'; ?>px; - font-weight: bold; - color: #666; - font-size: 120%; -} - -div.pagination { - float: right; -} -div.pagination a { - font-weight: normal; -} -div.pagination ul -{ - list-style: none; - display: inline-block; - padding-left: 0px; - padding-right: 0px; - margin: 0; -} -div.pagination li { - display: inline-block; - padding-left: 0px; - padding-right: 0px; - padding-top: 6px; - padding-bottom: 6px; -} -.pagination { - display: inline-block; - padding-left: 0; - border-radius: 4px; -} - -div.pagination li a, -div.pagination li span { - /*position: relative;*/ - /*float: left;*/ - padding: 6px 12px; - margin-left: -1px; - line-height: 1.42857143; - color: #000; - text-decoration: none; - background-color: #fff; - border: 1px solid #ddd; -} -div.pagination li:first-child a, -div.pagination li:first-child span { - margin-left: 0; - border-top-left-radius: 4px; - border-bottom-left-radius: 4px; -} -div.pagination li:last-child a, -div.pagination li:last-child span { - border-top-right-radius: 4px; - border-bottom-right-radius: 4px; -} -div.pagination li a:hover, -div.pagination li span:hover, -div.pagination li a:focus, -div.pagination li span:focus { - color: #000; - background-color: #eee; - border-color: #ddd; -} -div.pagination li .active a, -div.pagination li .active span, -div.pagination li .active a:hover, -div.pagination li .active span:hover, -div.pagination li .active a:focus, -div.pagination li .active span:focus { - z-index: 2; - color: #fff; - cursor: default; - background-color: ; - border-color: #337ab7; -} -div.pagination .disabled span, -div.pagination .disabled span:hover, -div.pagination .disabled span:focus, -div.pagination .disabled a, -div.pagination .disabled a:hover, -div.pagination .disabled a:focus { - color: #777; - cursor: not-allowed; - background-color: #fff; - border-color: #ddd; -} -div.pagination li .active { - text-decoration: underline; -} -div.pagination li.paginationafterarrows { - margin-left: 10px; -} - -tr.liste_titre, tr.liste_titre_sel, form.liste_titre, form.liste_titre_sel -{ - height: 22px; -} -div.liste_titre, tr.liste_titre, form.liste_titre, tr.box_titre { - padding:4px; - background-color:rgba(0,0,0,.2); - background-image:linear-gradient(top, rgba(255,255,255,.3) 0%, rgba(0,0,0,.3) 100%); - background-image:-o-linear-gradient(top, rgba(255,255,255,.3) 0%, rgba(0,0,0,.3) 100%); - background-image:-moz-linear-gradient(top, rgba(255,255,255,.3) 0%, rgba(0,0,0,.3) 100%); - background-image:-webkit-linear-gradient(top, rgba(255,255,255,.3) 0%, rgba(0,0,0,.3) 100%); - background-image:-ms-linear-gradient(top, rgba(255,255,255,.3) 0%, rgba(0,0,0,.3) 100%); - background-image:-webkit-gradient( - linear, - left top, - left bottom, - color-stop(0, rgba(255,255,255,.3)), - color-stop(1, rgba(0,0,0,.3)) - ); - text-align: ; -} - -tr.box_titre td.boxclose { - width: 36px; -} - -tr.liste_titre td, tr.liste_titre th, form.liste_titre div { - padding:2px; - padding-left:2px !important; - text-shadow:1px 1px 1px #ffffff; -} - -td.liste_titre_sel, form.liste_titre div.liste_titre_sel { - font-weight:bold; - white-space:nowrap; -} - -tr.liste_total td, form.liste_total div { - padding:1px 2px; - border-top:solid 1px #cccccc; - background-color:#eaeaea; - font-weight:bold; - white-space:nowrap; -} - -tr.impair td, tr.pair td, form.impair div, form.pair div { padding:1px 1px 1px 2px; } - -tr.impair table.nobordernopadding td, tr.pair table.nobordernopadding td { padding:1px 0px; } - -.impair { - background:#fdfdfd; - font-family:; - border:0px; -} - -.pair { - background:#f4f4f4; - font-family:; - border:0px; -} - - - -/* - * Boxes - */ - -.boxstats { - - margin: 4px; - padding: 4px; - /*-moz-box-shadow: 4px 4px 4px #DDD; - -webkit-box-shadow: 4px 4px 4px #DDD; - box-shadow: 4px 4px 4px #DDD; - margin-bottom: 8px !important;*/ - border: 1px solid #AAA; - text-align: center; - border-radius: 5px; -} - -.boxtable { - -moz-box-shadow: 2px 2px 2px #cccccc; - -webkit-box-shadow: 2px 2px 2px #cccccc; - box-shadow: 2px 2px 2px #cccccc; - /*white-space:nowrap;*/ -} - -.box { - padding-right:0px; - padding-left:0px; - padding-bottom:4px; -} - -tr.box_impair { - background:#fdfdfd; - font-family:; -} - -tr.box_pair { - background:#f4f4f4; - font-family:; -} - -.formboxfilter { - vertical-align: middle; - margin-bottom: 6px; -} -.formboxfilter input[type=image] -{ - top: 5px; - position: relative; -} - - -/* - * Ok, Warning, Error - */ - -.ok { - color:#159e26; - background:url() left center no-repeat !important; - padding-left:20px !important; - font-weight:bold; -} - -.warning { - color:#bca936; - background:url() left center no-repeat !important; - padding-left:20px !important; - font-weight:bold; -} - -.error { - color:#a61111; - background:#f58080 url() left center no-repeat !important; - padding-left:20px !important; - font-weight:bold; -} - -td.highlights {background:#f9c5c6;} - -div.ok { - background:#61e372; /* url() 3px center no-repeat; */ - /*color:#ffffff;*/ - padding:2px 4px 2px 6px; - margin:0.5em 0em; - font-weight:normal; -} - -div.warning, div.info { - background:#fcf5b8; /* url() 3px center no-repeat; */ - /*color:#232323; */ - padding:2px 4px 2px 6px; - margin:0.5em 0em; - border:1px solid #bca936; - font-weight:normal; -} - -div.error { - background:#f58080; /* url() 3px center no-repeat; */ - /* color:#ffffff; */ - padding:2px 4px 2px 6px; - margin:0.5em 0em; - border:1px solid #a61111; - font-weight:normal; -} - -/* - * Other - */ - -.product_line_stock_ok { color: #002200; } -.product_line_stock_too_low { color: #664400; } - -.fieldrequired { - font-weight:bold; - color:#333333; -} - -.dolgraphtitle { margin-top: 6px; margin-bottom: 4px; } -.dolgraphtitlecssboxes { margin: 0px; } - -#pictotitle { - padding-left:5px; - padding-right:1px; -} - -.photo {border:0px;} - -div.titre { - color:rgba(0,0,0,.5); - margin-right:12px; - text-shadow:1px 1px 1px #ffffff; - font-weight:bold; - padding-left:1px; - padding-bottom:2px; -} - -#dolpaymenttable { width: 600px; font-size: 13px; } -#tablepublicpayment { border: 1px solid #CCCCCC !important; width: 100%; } -#tablepublicpayment .CTableRow1 { background-color: #F0F0F0 !important; } -#tablepublicpayment tr.liste_total { border-bottom: 1px solid #CCCCCC !important; } -#tablepublicpayment tr.liste_total td { border-top: none; } - -#divsubscribe { width: 700px; } -#tablesubscribe { width: 100%; } - - - -/* ============================================================================== */ -/* Formulaire confirmation (When Ajax JQuery is used) */ -/* ============================================================================== */ - -.ui-dialog-titlebar {} -.ui-dialog-content {font-size:px !important;} - - -/* ============================================================================== */ -/* Formulaire de confirmation (When HTML is used) */ -/* ============================================================================== */ - -table.valid { - border-top:solid 1px #e6e6e6; - border-left:solid 1px #e6e6e6; - border-right:solid 1px #444444; - border-bottom:solid 1px #555555; - padding-top:0px; - padding-left:0px; - padding-right:0px; - padding-bottom:0px; - margin:0px 0px; - background:#d5baa8; -} - -.validtitre { - background:#d5baa8; - font-weight:bold; -} - - -/* ============================================================================== */ -/* Tooltips */ -/* ============================================================================== */ - -#tooltip { - position:absolute; - width:px; - border-top:solid 1px #bbbbbb; - border-left:solid 1px #bbbbbb; - borderright:solid 1px #444444; - border-bottom:solid 1px #444444; - padding:2px; - z-index:3000; - background-color:#fffff0; - opacity:1; - -moz-border-radius:6px; -} - - -/* ============================================================================== */ -/* Calendar */ -/* ============================================================================== */ - -img.datecallink { padding-left: 2px !important; padding-right: 2px !important; } - -.ui-datepicker-title { - margin:0 !important; - line-height:28px; -} -.ui-datepicker-month { - margin:0 !important; - padding:0 !important; -} -.ui-datepicker-header { - height:28px !important; -} - -.bodyline { - -moz-border-radius:8px; - padding:0px; - margin-bottom:5px; - z-index:3000; -} - -table.dp { - width:180px; - margin-top:3px; - background-color:#ffffff; - border:1px solid #bbbbbb; - border-spacing:0px; - -moz-box-shadow: 2px 2px 2px #cccccc; - -webkit-box-shadow: 2px 2px 2px #cccccc; - box-shadow: 2px 2px 2px #cccccc; -} - -.dp td, .tpHour td, .tpMinute td { - padding:2px; - font-size:11px; -} - -td.dpHead { - padding:4px; - font-size:11px; - font-weight:bold; -} - -/* Barre titre */ -.dpHead, .tpHead, .tpHour td:Hover .tpHead { - background-color:rgba(0,0,0,.2); - background-image:linear-gradient(top, rgba(255,255,255,.3) 0%, rgba(0,0,0,.3) 100%); - background-image:-o-linear-gradient(top, rgba(255,255,255,.3) 0%, rgba(0,0,0,.3) 100%); - background-image:-moz-linear-gradient(top, rgba(255,255,255,.3) 0%, rgba(0,0,0,.3) 100%); - background-image:-webkit-linear-gradient(top, rgba(255,255,255,.3) 0%, rgba(0,0,0,.3) 100%); - background-image:-ms-linear-gradient(top, rgba(255,255,255,.3) 0%, rgba(0,0,0,.3) 100%); - background-image:-webkit-gradient( - linear, - left top, - left bottom, - color-stop(0, rgba(255,255,255,.3)), - color-stop(1, rgba(0,0,0,.3)) - ); - font-size:10px; - cursor:auto; -} - -/* Barre navigation */ -.dpButtons, .tpButtons { - text-align:center; - background-color:#eaeaea; - color:#232323; - font-weight:bold; - cursor:pointer; -} - -.dpDayNames td, .dpExplanation { - background-color:#eaeaea; - font-weight:bold; - text-align:center; - font-size:11px; -} - -.dpWeek td {text-align:center} - -.dpToday, .dpReg, .dpSelected {cursor:pointer;} - -.dpToday { - font-weight:bold; - color:#232323; - background-color:#dddddd; -} - -.dpReg:Hover, .dpToday:Hover { - background-color:#333333; - color:#ffffff; -} - -/* Jour courant */ -.dpSelected { - background-color:#0B63A2; - color:#ffffff; - font-weight:bold; -} - -.tpHour { - border-top:1px solid #dddddd; - border-right:1px solid #dddddd; -} - -.tpHour td { - border-left:1px solid #dddddd; - border-bottom:1px solid #dddddd; - cursor:pointer; -} - -.tpHour td:Hover { - background-color:#232323; - color:#ffffff; -} - -.tpMinute {margin-top:5px;} - -.tpMinute td:Hover { - background-color:#333333; - color:#ffffff; -} -.tpMinute td { - background-color:#eaeaea; - text-align:center; - cursor:pointer; -} - -.fulldaystarthour {margin-right:2px;} -.fulldaystartmin {margin-right:2px;} -.fulldayendhour {margin-right:2px;} -.fulldayendmin {margin-right:2px;} - -/* Bouton X fermer */ -.dpInvisibleButtons { - border-style:none; - background-color:transparent; - padding:0px 2px; - font-size:9px; - border-width:0px; - color:#0B63A2; - vertical-align:middle; - cursor:pointer; -} - -td.dpHead .dpInvisibleButtons { - color:#232323; - font-weight:bold; -} - - -/* ============================================================================== */ -/* Afficher/cacher */ -/* ============================================================================== */ - -div.visible {display:block;} -div.hidden {display:none;} -tr.visible {display:block;} -td.hidden {display:none;} - - -/* ============================================================================== */ -/* Module agenda */ -/* ============================================================================== */ - -table.cal_month { border-spacing: 0px; } -.cal_current_month { border-top: 0; border-left: solid 1px #E0E0E0; border-right: 0; border-bottom: solid 1px #E0E0E0; } -.cal_current_month_peruserleft { border-top: 0; border-left: solid 3px #6C7C7B; border-right: 0; border-bottom: solid 1px #E0E0E0; } -.cal_other_month { border-top: 0; border-left: solid 1px #C0C0C0; border-right: 0; border-bottom: solid 1px #C0C0C0; } -.cal_other_month_peruserleft { border-top: 0; border-left: solid 3px #6C7C7B !important; border-right: 0; } -.cal_current_month_right { border-right: solid 1px #E0E0E0; } -.cal_other_month_right { border-right: solid 1px #C0C0C0; } -.cal_other_month { opacity: 0.6; background: #EAEAEA; padding-: 2px; padding-: 1px; padding-top: 0px; padding-bottom: 0px; } -.cal_past_month { opacity: 0.6; background: #EEEEEE; padding-: 2px; padding-: 1px; padding-top: 0px; padding-bottom: 0px; } -.cal_current_month { background: #FFFFFF; border-left: solid 1px #E0E0E0; padding-: 2px; padding-: 1px; padding-top: 0px; padding-bottom: 0px; } -.cal_current_month_peruserleft { background: #FFFFFF; border-left: solid 3px #6C7C7B; padding-: 2px; padding-: 1px; padding-top: 0px; padding-bottom: 0px; } -.cal_today_peruser { background: #FFFFFF; border-right: solid 1px #6C7C7B; border-top: solid 1px #A0A0A0; border-bottom: solid 1px #A0A0A0; padding-: 2px; padding-: 1px; padding-top: 0px; padding-bottom: 0px; } -.cal_today_peruser_peruserleft { background: #FFFFFF; border-left: solid 3px #6C7C7B; border-top: solid 1px #A0A0A0; border-right: solid 1px #6C7C7B; border-bottom: solid 1px #A0A0A0; padding-: 2px; padding-: 1px; padding-top: 0px; padding-bottom: 0px; } -.cal_today { - background:#ffffff; - border:solid 2px #bbbbbb; -} -.peruser_busy { background: #CC8888; } -.peruser_notbusy { background: #EEDDDD; } - -div.dayevent table.nobordernopadding tr td {padding:1px;} - -table.cal_event { border: none; border-collapse: collapse; margin-bottom: 1px; -webkit-border-radius: 6px; border-radius: 6px; - -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 1px 2px rgba(0, 0, 0, 0.25); - moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 1px 2px rgba(0, 0, 0, 0.25); - box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.25), 0 1px 2px rgba(0, 0, 0, 0.25); - background: -webkit-gradient(linear, left top, left bottom, from(#006aac), to(#00438d)); - } -table.cal_event td { border: none; padding-: 2px; padding-: 2px; padding-top: 0px; padding-bottom: 0px; } -ul.cal_event { padding-right: 2px; padding-top: 1px; border: none; list-style-type: none; margin: 0 auto; padding-left: 0px; padding-start: 0px; -khtml-padding-start: 0px; -o-padding-start: 0px; -moz-padding-start: 0px; -webkit-padding-start: 0px; } -li.cal_event { border: none; list-style-type: none; } -.cal_event a:link { color: #111111; font-size: 11px; font-weight: normal !important; } -.cal_event a:visited { color: #111111; font-size: 11px; font-weight: normal !important; } -.cal_event a:active { color: #111111; font-size: 11px; font-weight: normal !important; } -.cal_event a:hover { color: #111111; font-size: 11px; font-weight: normal !important; color:rgba(255,255,255,.75); } - - -/* ============================================================================== */ -/* Afficher/cacher */ -/* ============================================================================== */ - -#evolForm input.error { - font-weight:bold; - border:solid 1px #ff0000; - padding:1px; - margin:1px; -} - -#evolForm input.focuserr { - font-weight:bold; - background:#faf8e8; - color:#333333; - border:solid 1px #ff0000; - padding:1px; - margin:1px; -} - - -#evolForm input.focus { /*** Mise en avant des champs en cours d'utilisation ***/ - background:#faf8e8; - color:#333333; - border:solid 1px #000000; - padding:1px; - margin:1px; -} - -#evolForm input.normal { /*** Retour a l'état normal après l'utilisation ***/ - background:#ffffff; - color:#333333; - border:solid 1px #ffffff; - padding:1px; - margin:1px; -} - - -/* ============================================================================== */ -/* Ajax - Liste déroulante de l'autocompletion */ -/* ============================================================================== */ - -.ui-widget {font-family:Verdana,Arial,sans-serif; font-size:0.9em;} -.ui-autocomplete-loading {background:#ffffff url() right center no-repeat;} - - -/* ============================================================================== */ -/* Ajax - In place editor */ -/* ============================================================================== */ - -form.inplaceeditor-form {/* The form */ -} - -form.inplaceeditor-form input[type="text"] {/* Input box */ -} - -form.inplaceeditor-form textarea {/* Textarea, if multiple columns */ - background:#FAF8E8; - color:#333333; -} - -form.inplaceeditor-form input[type="submit"] {/* The submit button */ - font-size:100%; - font-weight:normal; - border:0px; - cursor:pointer; -} - -form.inplaceeditor-form a {/* The cancel link */ - margin-left:5px; - font-size:11px; - font-weight:normal; - border:0px; - cursor:pointer; -} - - -/* ============================================================================== */ -/* Admin Menu */ -/* ============================================================================== */ - -/* CSS for treeview */ -.treeview ul { background-color: transparent !important; margin-top: 0; } -.treeview li { background-color: transparent !important; padding: 0 0 0 16px !important; min-height: 20px; } -.treeview .hover { color: black !important; } - - -/* ============================================================================== */ -/* Show Excel tabs */ -/* ============================================================================== */ - -.table_data { - border-style:ridge; - border:1px solid; -} - -.tab_base { - background:#C5D0DD; - font-weight:bold; - border-style:ridge; - border:1px solid; - cursor:pointer; -} - -.table_sub_heading { - background:#CCCCCC; - font-weight:bold; - border-style:ridge; - border:1px solid; -} - -.table_body { - background:#F0F0F0; - font-weight:normal; - font-family:sans-serif; - border-style:ridge; - border:1px solid; - border-spacing:0px; - border-collapse:collapse; -} - -.tab_loaded { - background:#232323; - color:#ffffff; - font-weight:bold; - border-style:groove; - border:1px solid; - cursor:pointer; -} - - -/* ============================================================================== */ -/* CSS for color picker */ -/* ============================================================================== */ - -a.color, a.color:active, a.color:visited { - position:relative; - display:block; - text-decoration:none; - width:10px; - height:10px; - line-height:10px; - margin:0px; - padding:0px; - border:1px inset #ffffff; -} - -a.color:hover {border:1px outset #ffffff;} - -a.none, a.none:active, a.none:visited, a.none:hover { - position:relative; - display:block; - text-decoration:none; - width:10px; - height:10px; - line-height:10px; - margin:0px; - padding:0px; - cursor:default; - border:1px solid #b3c5cc; -} - -.tblColor {display:none;} -.tdColor {padding:1px;} -.tblContainer {background-color:#b3c5cc;} - -.tblGlobal { - position:absolute; - top:0px; - left:0px; - display:none; - background-color:#b3c5cc; - border:2px outset; -} - -.tdContainer {padding:5px;} - -.tdDisplay { - width:50%; - height:20px; - line-height:20px; - border:1px outset #ffffff; -} - -.tdDisplayTxt { - width:50%; - height:24px; - line-height:12px; - font-family:; - font-size:8pt; - color:#333333; - text-align:center; -} - -.btnColor { - width:100%; - font-family:; - font-size:10pt; - padding:0px; - margin:0px; -} - -.btnPalette { - width:100%; - font-family:; - font-size:8pt; - padding:0px; - margin:0px; -} - -/* Style to overwrites JQuery styles */ -.ui-menu .ui-menu-item a { - text-decoration:none; - display:block; - padding:.2em .4em; - line-height:1.5; - zoom:1; - font-weight:normal; - font-family:; - font-size:1em; -} - -.ui-widget { - font-family:; - font-size:px; -} - -.ui-button { margin-left:-2px; padding-top: 1px; } -.ui-button-icon-only .ui-button-text { height:8px; } -.ui-button-icon-only .ui-button-text, .ui-button-icons-only .ui-button-text { padding:2px 0px 6px 0px; } -.ui-button-text { line-height:1em !important; } -.ui-autocomplete-input { margin:0; } - - -/* ============================================================================== */ -/* CKEditor */ -/* ============================================================================== */ - -.cke_editor table, .cke_editor tr, .cke_editor td {border:0px solid #FF0000 !important;} -span.cke_skin_kama {padding:0px !important;} - - -/* ============================================================================== */ -/* File upload */ -/* ============================================================================== */ - -.template-upload {height:72px !important;} - - -/* ============================================================================== */ -/* JSGantt */ -/* ============================================================================== */ - -div.scroll2 { - width: px !important; -} - - -/* ============================================================================== */ -/* jFileTree */ -/* ============================================================================== */ - -.ecmfiletree { - width: 99%; - height: 99%; - background: #FFF; - padding-left: 2px; - font-weight: normal; -} - -.fileview { - width: 99%; - height: 99%; - background: #FFF; - padding-left: 2px; - padding-top: 4px; - font-weight: normal; -} - -div.filedirelem { - position: relative; - display: block; - text-decoration: none; -} - -ul.filedirelem { - padding: 2px; - margin: 0 5px 5px 5px; -} -ul.filedirelem li { - list-style: none; - padding: 2px; - margin: 0 10px 20px 10px; - width: 160px; - height: 120px; - text-align: center; - display: block; - float: ; - border: solid 1px #DDDDDD; -} - -ui-layout-north { - -} - -ul.ecmjqft { - font-size: 11px; - line-height: 16px; - padding: 0px; - margin: 0px; - font-weight: normal; -} - -ul.ecmjqft li { - list-style: none; - padding: 0px; - padding-left: 20px; - margin: 0px; - white-space: nowrap; - display: block; -} - -ul.ecmjqft a { - line-height: 16px; - vertical-align: middle; - color: #333; - padding: 0px 0px; - font-weight:normal; - display: inline-block !important; -/* float: left;*/ -} -ul.ecmjqft a:active { - font-weight: bold !important; -} -ul.ecmjqft a:hover { - text-decoration: underline; -} -div.ecmjqft { - vertical-align: middle; - display: inline-block !important; - text-align: right; - position:absolute; - right:4px; -} - -/* Core Styles */ -.ecmjqft LI.directory { font-weight:normal; background: url() left top no-repeat; } -.ecmjqft LI.expanded { font-weight:normal; background: url() left top no-repeat; } -.ecmjqft LI.wait { font-weight:normal; background: url() left top no-repeat; } - - - -/* ============================================================================== */ -/* jNotify */ -/* ============================================================================== */ - -.jnotify-container { - position: fixed !important; -global->MAIN_JQUERY_JNOTIFY_BOTTOM)) { ?> - top: auto !important; - bottom: 4px !important; - - text-align: center; - min-width: px; - width: auto; - padding-left: 10px !important; - padding-right: 10px !important; -} - -/* use or not ? */ -div.jnotify-background { - opacity : 0.95 !important; - -moz-box-shadow: 4px 4px 4px #AAA !important; - -webkit-box-shadow: 4px 4px 4px #AAA !important; - box-shadow: 4px 4px 4px #AAA !important; -} - - -/* ============================================================================== */ -/* Maps */ -/* ============================================================================== */ - -.divmap, #google-visualization-geomap-embed-0, #google-visualization-geomap-embed-1, google-visualization-geomap-embed-2 { - -moz-box-shadow: 0px 0px 10px #AAA; - -webkit-box-shadow: 0px 0px 10px #AAA; - box-shadow: 0px 0px 10px #AAA; -} - - -/* ============================================================================== */ -/* Datatable */ -/* ============================================================================== */ - -.sorting_asc { background: url('') no-repeat center right; } -.sorting_desc { background: url('') no-repeat center right; } -.sorting_asc_disabled { background: url('') no-repeat center right; } -.sorting_desc_disabled { background: url('') no-repeat center right; } -.paginate_disabled_previous:hover, .paginate_enabled_previous:hover, .paginate_disabled_next:hover, .paginate_enabled_next:hover -{ - font-weight: normal; -} -.paginate_enabled_previous:hover, .paginate_enabled_next:hover -{ - text-decoration: underline !important; -} - - -/* ============================================================================== */ -/* Select2 */ -/* ============================================================================== */ - -.selectoptiondisabledwhite { - background: #FFFFFF !important; -} - -.select2-choice, -.select2-drop.select2-drop-above.select2-drop-active, -.select2-container-active .select2-choice, -.select2-container-active .select2-choices, -.select2-dropdown-open.select2-drop-above .select2-choice, -.select2-dropdown-open.select2-drop-above .select2-choices, -.select2-container-multi.select2-container-active .select2-choices -{ - border: 1px solid #aaa; -} -.select2-disabled -{ - color: #888; -} -.select2-drop-active -{ - border: 1px solid #aaa; - border-top: none; -} -a span.select2-chosen -{ - font-weight: normal !important; -} -.select2-container .select2-choice { - background-image: none; - height: 24px; - line-height: 24px; -} -.select2-choices .select2-search-choice { - border: 1px solid #aaa !important; -} -.select2-results .select2-no-results, .select2-results .select2-searching, .select2-results .select2-ajax-error, .select2-results .select2-selection-limit -{ - background: #FFFFFF; -} -.select2-container-multi.select2-container-disabled .select2-choices { - background-color: #FFFFFF; - background-image: none; - border: none; - cursor: default; -} -.select2-container-multi .select2-choices .select2-search-choice { - margin-bottom: 3px; -} -/* To emulate select 2 style */ -.select2-container-multi-dolibarr .select2-choices-dolibarr .select2-search-choice-dolibarr { - padding: 2px 5px 1px 5px; - margin: 0 0 2px 3px; - position: relative; - line-height: 13px; - color: #333; - cursor: default; - border: 1px solid #aaaaaa; - border-radius: 3px; - -webkit-box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, 0.05); - box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, 0.05); - background-clip: padding-box; - -webkit-touch-callout: none; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - background-color: #e4e4e4; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#f4f4f4', GradientType=0); - background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), color-stop(100%, #eee)); - background-image: -webkit-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%); - background-image: -moz-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%); - background-image: linear-gradient(to bottom, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%); -} -.select2-container-multi-dolibarr .select2-choices-dolibarr .select2-search-choice-dolibarr a { - font-weight: normal; -} -.select2-container-multi-dolibarr .select2-choices-dolibarr li { - float: left; - list-style: none; -} -.select2-container-multi-dolibarr .select2-choices-dolibarr { - height: auto !important; - height: 1%; - margin: 0; - padding: 0 5px 0 0; - position: relative; - cursor: text; - overflow: hidden; -} - - -/* ============================================================================== */ -/* JMobile */ -/* ============================================================================== */ - -li.ui-li-divider .ui-link { - color: #FFF !important; -} -.ui-btn { - margin: 0.1em 2px -} -.ui-btn-inner { - min-width: .4em; - padding-left: 10px; - padding-right: 10px; - white-space: normal; - font-size: px; -} -.ui-btn-icon-right .ui-btn-inner { - padding-right: 34px; -} -.ui-btn-icon-left .ui-btn-inner { - padding-left: 34px; -} -.ui-select .ui-btn-icon-right .ui-btn-inner { - padding-right: 36px; -} -.ui-select .ui-btn-icon-left .ui-btn-inner { - padding-left: 36px; -} - -.fiche .ui-controlgroup { - margin: 0px; - padding-bottom: 0px; -} -div.ui-controlgroup-controls div.tabsElem -{ - margin-top: 2px; - margin-right: 8px; -} -div.ui-controlgroup-controls div.tabsElem a -{ - -moz-box-shadow: 0 -3px 6px rgba(0,0,0,.2); - -webkit-box-shadow: 0 -3px 6px rgba(0,0,0,.2); - box-shadow: 0 -3px 6px rgba(0,0,0,.2); -} -div.ui-controlgroup-controls div.tabsElem a#active { - -moz-box-shadow: 0 -3px 6px rgba(0,0,0,.3); - -webkit-box-shadow: 0 -3px 6px rgba(0,0,0,.3); - box-shadow: 0 -3px 6px rgba(0,0,0,.3); -} - -a.tab span.ui-btn-inner, a.tab span.ui-btn-inner span.ui-btn-text -{ - border: none; - padding: 0; -} - -.ui-body-c { - border: 1px solid #CCC; - text-shadow: none; -} -.ui-link { - color: rgb() !important; -} - -div.tabsElem a.ui-btn-corner-all { - -webkit-border-bottom-left-radius: 0px; - -moz-border-radius-bottomleft: 0px; - border-bottom-left-radius: 0px; - -webkit-border-bottom-right-radius: 0px; - -moz-border-radius-bottomright: 0px; - border-bottom-right-radius: 0px; -} - -.ui-btn-icon-left .ui-icon { - left: 8px; -} -.ui-btn-icon-right .ui-icon { - right: 8px; -} - -div.ui-radio -{ - display: inline-block; -} -.ui-checkbox input, .ui-radio input { - height: auto; - width: auto; - margin: 4px; - position: static; -} -div.ui-checkbox label+input, div.ui-radio label+input { - position: absolute; -} - -.ui-mobile fieldset -{ - padding-bottom: 10px; margin-bottom: 4px; border-bottom: 1px solid #AAAAAA !important; -} - -ul.ulmenu { - border-radius: 0; - -webkit-border-radius: 0; -} - -.ui-field-contain label.ui-input-text { - vertical-align: middle !important; -} -.ui-mobile fieldset { - border-bottom: none !important; -} -.ui-body-c, .ui-btn-up-c, .ui-btn-hover-c { - border: none !important; -} - -/* Style for first level menu with jmobile */ -.ui-bar-b, .lilevel0 { - background: rgb(); - background-repeat: repeat-x; - - background-image: -o-linear-gradient(bottom, rgba(0,0,0,0.3) 0%, rgba(250,250,250,0.3) 100%); - background-image: -moz-linear-gradient(bottom, rgba(0,0,0,0.3) 0%, rgba(250,250,250,0.3) 100%); - background-image: -webkit-linear-gradient(bottom, rgba(0,0,0,0.3) 0%, rgba(250,250,250,0.3) 100%); - background-image: -ms-linear-gradient(bottom, rgba(0,0,0,0.3) 0%, rgba(250,250,250,0.3) 100%); - background-image: linear-gradient(bottom, rgba(0,0,0,0.3) 0%, rgba(250,250,250,0.3) 100%); - font-weight: bold; - - color: # !important; -} -.alilevel0 { - color: # !important; - text-shadow: 1px 0px 1px #; -} -.alilevel1 { - color: # !important; - text-shadow: 1px 0px 1px #; -} -.lilevel1 { - background-image: -webkit-gradient(linear,left top,left bottom,from( #eee ),to( #e1e1e1 )) !important; - background-image: -webkit-linear-gradient( #eee,#e1e1e1 ) !important; - background-image: -moz-linear-gradient( #eee,#e1e1e1 ) !important; - background-image: -ms-linear-gradient( #eee,#e1e1e1 ) !important; - background-image: -o-linear-gradient( #eee,#e1e1e1 ) !important; - background-image: linear-gradient( #eee,#e1e1e1 ) !important; -} -.lilevel2 -{ - padding-left: 22px; -} -.lilevel3 -{ - padding-left: 54px; -} - - -close(); diff --git a/htdocs/theme/amarok/thumb.png b/htdocs/theme/amarok/thumb.png deleted file mode 100644 index 96509b93046..00000000000 Binary files a/htdocs/theme/amarok/thumb.png and /dev/null differ diff --git a/htdocs/theme/auguria/ckeditor/config.js b/htdocs/theme/auguria/ckeditor/config.js deleted file mode 100644 index 97f1c0a0b62..00000000000 --- a/htdocs/theme/auguria/ckeditor/config.js +++ /dev/null @@ -1,92 +0,0 @@ -/* -Copyright (c) 2003-2010, CKSource - Frederico Knabben. All rights reserved. -For licensing, see LICENSE.html or http://ckeditor.com/license -*/ - -CKEDITOR.editorConfig = function( config ) -{ - // Define changes to default configuration here. - // http://docs.cksource.com/CKEditor_3.x/Developers_Guide - // http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.config.html - config.enterMode = CKEDITOR.ENTER_BR; - config.resize_enabled = false; - //config.resize_maxHeight = 3000; - //config.resize_maxWidth = 3000; - //config.height = '300px'; - //config.resize_dir = 'vertical'; // horizontal, vertical, both - config.removePlugins = 'elementspath,save'; // config.removePlugins = 'elementspath,save,font'; - config.removeDialogTabs = 'flash:advanced'; // config.removeDialogTabs = 'flash:advanced;image:Link'; - config.protectedSource.push( /<\?[\s\S]*?\?>/g ); // Prevent PHP Code to be formatted - //config.menu_groups = 'clipboard,table,anchor,link,image'; // for context menu 'clipboard,form,tablecell,tablecellproperties,tablerow,tablecolumn,table,anchor,link,image,flash,checkbox,radio,textfield,hiddenfield,imagebutton,button,select,textarea' - //config.language = 'de'; - //config.defaultLanguage = 'en'; - //config.contentsLanguage = 'fr'; - config.fullPage = false; // Not a full html page string, just part of it - config.dialog_backgroundCoverColor = 'rgb(255, 254, 253)'; - //config.contentsCss = '/css/mysitestyles.css'; - config.image_previewText=' '; // Must no be empty - - config.toolbar_Full = - [ - ['Source','-','Save','NewPage','Preview','-','Templates'], - ['Cut','Copy','Paste','PasteText','PasteFromWord','-','Print', 'SpellChecker', 'Scayt'], - ['Undo','Redo','-','Find','Replace','-','SelectAll','RemoveFormat'], - ['Form', 'Checkbox', 'Radio', 'TextField', 'Textarea', 'Select', 'Button', 'ImageButton', 'HiddenField'], - '/', - ['Bold','Italic','Underline','Strike','-','Subscript','Superscript'], - ['NumberedList','BulletedList','-','Outdent','Indent','Blockquote','CreateDiv'], - ['JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock'], - ['BidiLtr', 'BidiRtl'], - ['Link','Unlink','Anchor'], - ['Image','Flash','Table','HorizontalRule','Smiley','SpecialChar','PageBreak','Iframe'], - '/', - ['Styles','Format','Font','FontSize'], - ['TextColor','BGColor'], - ['Maximize', 'ShowBlocks','-','About'] - ]; - - // Used for mailing fields - config.toolbar_dolibarr_mailings = - [ - ['Source','Maximize'], - ['Cut','Copy','Paste','-','SpellChecker'], - ['Undo','Redo','-','Find','Replace'], - ['Format','Font','FontSize'], - ['Bold','Italic','Underline','Strike','Subscript','Superscript','-','TextColor','RemoveFormat'], - ['NumberedList','BulletedList','Outdent','Indent','CreateDiv'], - ['JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock'], - ['Link','Unlink','Anchor','Image','Table','HorizontalRule','SpecialChar'] - ]; - - // Used for notes fields - config.toolbar_dolibarr_notes = - [ - ['Source','Maximize'], - ['Cut','Copy','Paste','-','SpellChecker'], - ['Undo','Redo','-','Find','Replace'], - ['Format','Font','FontSize'], - ['Bold','Italic','Underline','Strike','Subscript','Superscript','-','TextColor','RemoveFormat'], - ['NumberedList','BulletedList','Outdent','Indent'], - ['JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock'], - ['Link','Unlink','Image','Table','HorizontalRule','SpecialChar'] - ]; - - // Used for details lines - config.toolbar_dolibarr_details = - [ - ['Source','Maximize'], - ['Cut','Copy','Paste','-','SpellChecker'], - ['Font','FontSize'], - ['Bold','Italic','Underline','Strike','Subscript','Superscript','-','TextColor','RemoveFormat'], - ['NumberedList','BulletedList','Outdent','Indent'], - ['JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock'], - ['Link','Unlink','SpecialChar'] - ]; - - // Used for mailing fields - config.toolbar_dolibarr_readonly = - [ - ['Source','Maximize'], - ['Find'] - ]; -}; diff --git a/htdocs/theme/auguria/graph-color.php b/htdocs/theme/auguria/graph-color.php deleted file mode 100644 index a2483480762..00000000000 --- a/htdocs/theme/auguria/graph-color.php +++ /dev/null @@ -1,30 +0,0 @@ - - * Copyright (C) 2004-2007 Laurent Destailleur - * - * 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 - * the Free Software Foundation; either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ - -/** - * \file htdocs/theme/auguria/graph-color.php - * \brief File to declare colors to use to build graphics with theme Auguria - * \ingroup core - */ - -global $theme_bordercolor, $theme_datacolor, $theme_bgcolor, $theme_bgcoloronglet; -$theme_bordercolor = array(235,235,224); -$theme_datacolor = array(array(125,135,150), array(200,160,180), array(190,190,220), array(170,140,190), array(190,190,170)); -$theme_bgcolor = array(hexdec('F4'),hexdec('F4'),hexdec('F4')); -$theme_bgcoloronglet = array(hexdec('DE'),hexdec('E7'),hexdec('EC')); - diff --git a/htdocs/theme/auguria/img/1downarrow.png b/htdocs/theme/auguria/img/1downarrow.png deleted file mode 100644 index 8459a7fcf85..00000000000 Binary files a/htdocs/theme/auguria/img/1downarrow.png and /dev/null differ diff --git a/htdocs/theme/auguria/img/1downarrow_selected.png b/htdocs/theme/auguria/img/1downarrow_selected.png deleted file mode 100644 index c5a947c4d9f..00000000000 Binary files a/htdocs/theme/auguria/img/1downarrow_selected.png and /dev/null differ diff --git a/htdocs/theme/auguria/img/1leftarrow.png b/htdocs/theme/auguria/img/1leftarrow.png deleted file mode 100644 index 25665e556a9..00000000000 Binary files a/htdocs/theme/auguria/img/1leftarrow.png and /dev/null differ diff --git a/htdocs/theme/auguria/img/1leftarrow_selected.png b/htdocs/theme/auguria/img/1leftarrow_selected.png deleted file mode 100644 index 9a88ada13f1..00000000000 Binary files a/htdocs/theme/auguria/img/1leftarrow_selected.png and /dev/null differ diff --git a/htdocs/theme/auguria/img/1rightarrow.png b/htdocs/theme/auguria/img/1rightarrow.png deleted file mode 100644 index 422fc3f9426..00000000000 Binary files a/htdocs/theme/auguria/img/1rightarrow.png and /dev/null differ diff --git a/htdocs/theme/auguria/img/1rightarrow_selected.png b/htdocs/theme/auguria/img/1rightarrow_selected.png deleted file mode 100644 index 422fc3f9426..00000000000 Binary files a/htdocs/theme/auguria/img/1rightarrow_selected.png and /dev/null differ diff --git a/htdocs/theme/auguria/img/1uparrow.png b/htdocs/theme/auguria/img/1uparrow.png deleted file mode 100644 index 9cd9d0b4a28..00000000000 Binary files a/htdocs/theme/auguria/img/1uparrow.png and /dev/null differ diff --git a/htdocs/theme/auguria/img/1uparrow_selected.png b/htdocs/theme/auguria/img/1uparrow_selected.png deleted file mode 100644 index db109a4c2b5..00000000000 Binary files a/htdocs/theme/auguria/img/1uparrow_selected.png and /dev/null differ diff --git a/htdocs/theme/auguria/img/banner_02.jpg b/htdocs/theme/auguria/img/banner_02.jpg deleted file mode 100644 index 81635fd2a59..00000000000 Binary files a/htdocs/theme/auguria/img/banner_02.jpg and /dev/null differ diff --git a/htdocs/theme/auguria/img/bg-bas-rubrique.png b/htdocs/theme/auguria/img/bg-bas-rubrique.png deleted file mode 100644 index ddff8ce878a..00000000000 Binary files a/htdocs/theme/auguria/img/bg-bas-rubrique.png and /dev/null differ diff --git a/htdocs/theme/auguria/img/bg-rubrique.png b/htdocs/theme/auguria/img/bg-rubrique.png deleted file mode 100644 index 9abf1dc1459..00000000000 Binary files a/htdocs/theme/auguria/img/bg-rubrique.png and /dev/null differ diff --git a/htdocs/theme/auguria/img/bg-titre-rubrique.png b/htdocs/theme/auguria/img/bg-titre-rubrique.png deleted file mode 100644 index a68206aa818..00000000000 Binary files a/htdocs/theme/auguria/img/bg-titre-rubrique.png and /dev/null differ diff --git a/htdocs/theme/auguria/img/bg_inside.gif b/htdocs/theme/auguria/img/bg_inside.gif deleted file mode 100644 index e2a4f5c5841..00000000000 Binary files a/htdocs/theme/auguria/img/bg_inside.gif and /dev/null differ diff --git a/htdocs/theme/auguria/img/body_bg.jpg b/htdocs/theme/auguria/img/body_bg.jpg deleted file mode 100644 index 0480bfdc738..00000000000 Binary files a/htdocs/theme/auguria/img/body_bg.jpg and /dev/null differ diff --git a/htdocs/theme/auguria/img/cron.png b/htdocs/theme/auguria/img/cron.png deleted file mode 100644 index ddfe62e7b24..00000000000 Binary files a/htdocs/theme/auguria/img/cron.png and /dev/null differ diff --git a/htdocs/theme/auguria/img/favicon.ico b/htdocs/theme/auguria/img/favicon.ico deleted file mode 100644 index b93a86747d6..00000000000 Binary files a/htdocs/theme/auguria/img/favicon.ico and /dev/null differ diff --git a/htdocs/theme/auguria/img/grip.png b/htdocs/theme/auguria/img/grip.png deleted file mode 100644 index 8053007e9dd..00000000000 Binary files a/htdocs/theme/auguria/img/grip.png and /dev/null differ diff --git a/htdocs/theme/auguria/img/indent1.png b/htdocs/theme/auguria/img/indent1.png deleted file mode 100644 index 09695ac754f..00000000000 Binary files a/htdocs/theme/auguria/img/indent1.png and /dev/null differ diff --git a/htdocs/theme/auguria/img/index.html b/htdocs/theme/auguria/img/index.html deleted file mode 100644 index e69de29bb2d..00000000000 diff --git a/htdocs/theme/auguria/img/mainlevel.gif b/htdocs/theme/auguria/img/mainlevel.gif deleted file mode 100644 index 548526442a3..00000000000 Binary files a/htdocs/theme/auguria/img/mainlevel.gif and /dev/null differ diff --git a/htdocs/theme/auguria/img/menus/agenda.png b/htdocs/theme/auguria/img/menus/agenda.png deleted file mode 100644 index 866037c9b54..00000000000 Binary files a/htdocs/theme/auguria/img/menus/agenda.png and /dev/null differ diff --git a/htdocs/theme/auguria/img/menus/commercial.png b/htdocs/theme/auguria/img/menus/commercial.png deleted file mode 100644 index efc1b3f0608..00000000000 Binary files a/htdocs/theme/auguria/img/menus/commercial.png and /dev/null differ diff --git a/htdocs/theme/auguria/img/menus/company.png b/htdocs/theme/auguria/img/menus/company.png deleted file mode 100644 index 95e5db62046..00000000000 Binary files a/htdocs/theme/auguria/img/menus/company.png and /dev/null differ diff --git a/htdocs/theme/auguria/img/menus/ecm.png b/htdocs/theme/auguria/img/menus/ecm.png deleted file mode 100644 index a9a975219cd..00000000000 Binary files a/htdocs/theme/auguria/img/menus/ecm.png and /dev/null differ diff --git a/htdocs/theme/auguria/img/menus/footer_bg.jpg b/htdocs/theme/auguria/img/menus/footer_bg.jpg deleted file mode 100644 index 7319c16f9af..00000000000 Binary files a/htdocs/theme/auguria/img/menus/footer_bg.jpg and /dev/null differ diff --git a/htdocs/theme/auguria/img/menus/generic1.png b/htdocs/theme/auguria/img/menus/generic1.png deleted file mode 100644 index 0222dd8c81d..00000000000 Binary files a/htdocs/theme/auguria/img/menus/generic1.png and /dev/null differ diff --git a/htdocs/theme/auguria/img/menus/generic2.png b/htdocs/theme/auguria/img/menus/generic2.png deleted file mode 100644 index 86847858c4a..00000000000 Binary files a/htdocs/theme/auguria/img/menus/generic2.png and /dev/null differ diff --git a/htdocs/theme/auguria/img/menus/generic3.png b/htdocs/theme/auguria/img/menus/generic3.png deleted file mode 100644 index e22f73aa6f9..00000000000 Binary files a/htdocs/theme/auguria/img/menus/generic3.png and /dev/null differ diff --git a/htdocs/theme/auguria/img/menus/generic4.png b/htdocs/theme/auguria/img/menus/generic4.png deleted file mode 100644 index 29a3d7fed67..00000000000 Binary files a/htdocs/theme/auguria/img/menus/generic4.png and /dev/null differ diff --git a/htdocs/theme/auguria/img/menus/globe.png b/htdocs/theme/auguria/img/menus/globe.png deleted file mode 100644 index 073348a5246..00000000000 Binary files a/htdocs/theme/auguria/img/menus/globe.png and /dev/null differ diff --git a/htdocs/theme/auguria/img/menus/home.png b/htdocs/theme/auguria/img/menus/home.png deleted file mode 100644 index f4d0d917d1f..00000000000 Binary files a/htdocs/theme/auguria/img/menus/home.png and /dev/null differ diff --git a/htdocs/theme/auguria/img/menus/index.html b/htdocs/theme/auguria/img/menus/index.html deleted file mode 100644 index e69de29bb2d..00000000000 diff --git a/htdocs/theme/auguria/img/menus/lr_bg.gif b/htdocs/theme/auguria/img/menus/lr_bg.gif deleted file mode 100644 index e6644e4685f..00000000000 Binary files a/htdocs/theme/auguria/img/menus/lr_bg.gif and /dev/null differ diff --git a/htdocs/theme/auguria/img/menus/mail.png b/htdocs/theme/auguria/img/menus/mail.png deleted file mode 100644 index d715ec7810c..00000000000 Binary files a/htdocs/theme/auguria/img/menus/mail.png and /dev/null differ diff --git a/htdocs/theme/auguria/img/menus/members.png b/htdocs/theme/auguria/img/menus/members.png deleted file mode 100644 index 4b703f42cd7..00000000000 Binary files a/htdocs/theme/auguria/img/menus/members.png and /dev/null differ diff --git a/htdocs/theme/auguria/img/menus/moduletable_th_bg.gif b/htdocs/theme/auguria/img/menus/moduletable_th_bg.gif deleted file mode 100644 index 0901e294b1f..00000000000 Binary files a/htdocs/theme/auguria/img/menus/moduletable_th_bg.gif and /dev/null differ diff --git a/htdocs/theme/auguria/img/menus/money.png b/htdocs/theme/auguria/img/menus/money.png deleted file mode 100644 index 50166e0f74b..00000000000 Binary files a/htdocs/theme/auguria/img/menus/money.png and /dev/null differ diff --git a/htdocs/theme/auguria/img/menus/pointofsale.png b/htdocs/theme/auguria/img/menus/pointofsale.png deleted file mode 100644 index 748ec41b1e6..00000000000 Binary files a/htdocs/theme/auguria/img/menus/pointofsale.png and /dev/null differ diff --git a/htdocs/theme/auguria/img/menus/products.png b/htdocs/theme/auguria/img/menus/products.png deleted file mode 100644 index 6f5f45269ee..00000000000 Binary files a/htdocs/theme/auguria/img/menus/products.png and /dev/null differ diff --git a/htdocs/theme/auguria/img/menus/project.png b/htdocs/theme/auguria/img/menus/project.png deleted file mode 100644 index 882235d2cd3..00000000000 Binary files a/htdocs/theme/auguria/img/menus/project.png and /dev/null differ diff --git a/htdocs/theme/auguria/img/menus/table_bg.gif b/htdocs/theme/auguria/img/menus/table_bg.gif deleted file mode 100644 index bd6bf5c1036..00000000000 Binary files a/htdocs/theme/auguria/img/menus/table_bg.gif and /dev/null differ diff --git a/htdocs/theme/auguria/img/menus/tools.png b/htdocs/theme/auguria/img/menus/tools.png deleted file mode 100644 index c053f660ebf..00000000000 Binary files a/htdocs/theme/auguria/img/menus/tools.png and /dev/null differ diff --git a/htdocs/theme/auguria/img/menus/topmenu_bg.png b/htdocs/theme/auguria/img/menus/topmenu_bg.png deleted file mode 100644 index da240b012c7..00000000000 Binary files a/htdocs/theme/auguria/img/menus/topmenu_bg.png and /dev/null differ diff --git a/htdocs/theme/auguria/img/menus/topmenu_bg_over.gif b/htdocs/theme/auguria/img/menus/topmenu_bg_over.gif deleted file mode 100644 index 2d03af87e67..00000000000 Binary files a/htdocs/theme/auguria/img/menus/topmenu_bg_over.gif and /dev/null differ diff --git a/htdocs/theme/auguria/img/menus/topmenu_left.gif b/htdocs/theme/auguria/img/menus/topmenu_left.gif deleted file mode 100644 index 0f08aa2a2a7..00000000000 Binary files a/htdocs/theme/auguria/img/menus/topmenu_left.gif and /dev/null differ diff --git a/htdocs/theme/auguria/img/menus/topmenu_right.png b/htdocs/theme/auguria/img/menus/topmenu_right.png deleted file mode 100644 index cd14ff61bbc..00000000000 Binary files a/htdocs/theme/auguria/img/menus/topmenu_right.png and /dev/null differ diff --git a/htdocs/theme/auguria/img/menus/toppath.gif b/htdocs/theme/auguria/img/menus/toppath.gif deleted file mode 100644 index 2180d924dee..00000000000 Binary files a/htdocs/theme/auguria/img/menus/toppath.gif and /dev/null differ diff --git a/htdocs/theme/auguria/img/menus/trtitle.png b/htdocs/theme/auguria/img/menus/trtitle.png deleted file mode 100644 index 29b694864e5..00000000000 Binary files a/htdocs/theme/auguria/img/menus/trtitle.png and /dev/null differ diff --git a/htdocs/theme/auguria/img/money.png b/htdocs/theme/auguria/img/money.png deleted file mode 100644 index 50166e0f74b..00000000000 Binary files a/htdocs/theme/auguria/img/money.png and /dev/null differ diff --git a/htdocs/theme/auguria/img/object_accounting.png b/htdocs/theme/auguria/img/object_accounting.png deleted file mode 100644 index b5600221f02..00000000000 Binary files a/htdocs/theme/auguria/img/object_accounting.png and /dev/null differ diff --git a/htdocs/theme/auguria/img/object_action.png b/htdocs/theme/auguria/img/object_action.png deleted file mode 100644 index 001b0cf9b76..00000000000 Binary files a/htdocs/theme/auguria/img/object_action.png and /dev/null differ diff --git a/htdocs/theme/auguria/img/object_action_rdv.png b/htdocs/theme/auguria/img/object_action_rdv.png deleted file mode 100644 index 25edfa85b45..00000000000 Binary files a/htdocs/theme/auguria/img/object_action_rdv.png and /dev/null differ diff --git a/htdocs/theme/auguria/img/object_address.png b/htdocs/theme/auguria/img/object_address.png deleted file mode 100644 index a4b878966dc..00000000000 Binary files a/htdocs/theme/auguria/img/object_address.png and /dev/null differ diff --git a/htdocs/theme/auguria/img/object_bookmark.png b/htdocs/theme/auguria/img/object_bookmark.png deleted file mode 100644 index 86d1a0dfa52..00000000000 Binary files a/htdocs/theme/auguria/img/object_bookmark.png and /dev/null differ diff --git a/htdocs/theme/auguria/img/object_cron.png b/htdocs/theme/auguria/img/object_cron.png deleted file mode 100644 index 6186d18da70..00000000000 Binary files a/htdocs/theme/auguria/img/object_cron.png and /dev/null differ diff --git a/htdocs/theme/auguria/img/object_gravatar.png b/htdocs/theme/auguria/img/object_gravatar.png deleted file mode 100644 index 42bccdc4339..00000000000 Binary files a/htdocs/theme/auguria/img/object_gravatar.png and /dev/null differ diff --git a/htdocs/theme/auguria/img/object_holiday.png b/htdocs/theme/auguria/img/object_holiday.png deleted file mode 100644 index fdc1dd8e22b..00000000000 Binary files a/htdocs/theme/auguria/img/object_holiday.png and /dev/null differ diff --git a/htdocs/theme/auguria/img/object_opensurvey.png b/htdocs/theme/auguria/img/object_opensurvey.png deleted file mode 100644 index b5de3223bd4..00000000000 Binary files a/htdocs/theme/auguria/img/object_opensurvey.png and /dev/null differ diff --git a/htdocs/theme/auguria/img/object_phoning.png b/htdocs/theme/auguria/img/object_phoning.png deleted file mode 100644 index 36cdcc8d4a2..00000000000 Binary files a/htdocs/theme/auguria/img/object_phoning.png and /dev/null differ diff --git a/htdocs/theme/auguria/img/object_phoning_fax.png b/htdocs/theme/auguria/img/object_phoning_fax.png deleted file mode 100644 index 36cdcc8d4a2..00000000000 Binary files a/htdocs/theme/auguria/img/object_phoning_fax.png and /dev/null differ diff --git a/htdocs/theme/auguria/img/object_resource.png b/htdocs/theme/auguria/img/object_resource.png deleted file mode 100644 index 8cda1f3f220..00000000000 Binary files a/htdocs/theme/auguria/img/object_resource.png and /dev/null differ diff --git a/htdocs/theme/auguria/img/object_skype.png b/htdocs/theme/auguria/img/object_skype.png deleted file mode 100644 index b209cd8d16e..00000000000 Binary files a/htdocs/theme/auguria/img/object_skype.png and /dev/null differ diff --git a/htdocs/theme/auguria/img/play.png b/htdocs/theme/auguria/img/play.png deleted file mode 100644 index 4922ea1ec12..00000000000 Binary files a/htdocs/theme/auguria/img/play.png and /dev/null differ diff --git a/htdocs/theme/auguria/img/setup.png b/htdocs/theme/auguria/img/setup.png deleted file mode 100644 index ca5f28b1d17..00000000000 Binary files a/htdocs/theme/auguria/img/setup.png and /dev/null differ diff --git a/htdocs/theme/auguria/img/sort_asc.png b/htdocs/theme/auguria/img/sort_asc.png deleted file mode 100644 index e327d952fa4..00000000000 Binary files a/htdocs/theme/auguria/img/sort_asc.png and /dev/null differ diff --git a/htdocs/theme/auguria/img/sort_asc_disabled.png b/htdocs/theme/auguria/img/sort_asc_disabled.png deleted file mode 100644 index e327d952fa4..00000000000 Binary files a/htdocs/theme/auguria/img/sort_asc_disabled.png and /dev/null differ diff --git a/htdocs/theme/auguria/img/sort_desc.png b/htdocs/theme/auguria/img/sort_desc.png deleted file mode 100644 index db99fd9ad47..00000000000 Binary files a/htdocs/theme/auguria/img/sort_desc.png and /dev/null differ diff --git a/htdocs/theme/auguria/img/sort_desc_disabled.png b/htdocs/theme/auguria/img/sort_desc_disabled.png deleted file mode 100644 index 89051c2f34f..00000000000 Binary files a/htdocs/theme/auguria/img/sort_desc_disabled.png and /dev/null differ diff --git a/htdocs/theme/auguria/img/stcomm-1.png b/htdocs/theme/auguria/img/stcomm-1.png deleted file mode 100644 index 2e3f98bb6fd..00000000000 Binary files a/htdocs/theme/auguria/img/stcomm-1.png and /dev/null differ diff --git a/htdocs/theme/auguria/img/stcomm0.png b/htdocs/theme/auguria/img/stcomm0.png deleted file mode 100644 index b6c11d4569a..00000000000 Binary files a/htdocs/theme/auguria/img/stcomm0.png and /dev/null differ diff --git a/htdocs/theme/auguria/img/switch_off.png b/htdocs/theme/auguria/img/switch_off.png deleted file mode 100644 index 28a4376fb43..00000000000 Binary files a/htdocs/theme/auguria/img/switch_off.png and /dev/null differ diff --git a/htdocs/theme/auguria/img/switch_on.png b/htdocs/theme/auguria/img/switch_on.png deleted file mode 100644 index d4e32d98f57..00000000000 Binary files a/htdocs/theme/auguria/img/switch_on.png and /dev/null differ diff --git a/htdocs/theme/auguria/img/tab_background.png b/htdocs/theme/auguria/img/tab_background.png deleted file mode 100644 index 6edd65003e0..00000000000 Binary files a/htdocs/theme/auguria/img/tab_background.png and /dev/null differ diff --git a/htdocs/theme/auguria/img/title_accountancy.png b/htdocs/theme/auguria/img/title_accountancy.png deleted file mode 100644 index 6e7c2a412c6..00000000000 Binary files a/htdocs/theme/auguria/img/title_accountancy.png and /dev/null differ diff --git a/htdocs/theme/auguria/img/title_bank.png b/htdocs/theme/auguria/img/title_bank.png deleted file mode 100644 index 034a8d0c5e4..00000000000 Binary files a/htdocs/theme/auguria/img/title_bank.png and /dev/null differ diff --git a/htdocs/theme/auguria/img/title_commercial.png b/htdocs/theme/auguria/img/title_commercial.png deleted file mode 100644 index 46394177698..00000000000 Binary files a/htdocs/theme/auguria/img/title_commercial.png and /dev/null differ diff --git a/htdocs/theme/auguria/img/title_companies.png b/htdocs/theme/auguria/img/title_companies.png deleted file mode 100644 index b2539dba849..00000000000 Binary files a/htdocs/theme/auguria/img/title_companies.png and /dev/null differ diff --git a/htdocs/theme/auguria/img/title_generic.png b/htdocs/theme/auguria/img/title_generic.png deleted file mode 100644 index ae224327549..00000000000 Binary files a/htdocs/theme/auguria/img/title_generic.png and /dev/null differ diff --git a/htdocs/theme/auguria/img/title_home.png b/htdocs/theme/auguria/img/title_home.png deleted file mode 100644 index e9273e727f5..00000000000 Binary files a/htdocs/theme/auguria/img/title_home.png and /dev/null differ diff --git a/htdocs/theme/auguria/img/title_products.png b/htdocs/theme/auguria/img/title_products.png deleted file mode 100644 index d3c5b125bbe..00000000000 Binary files a/htdocs/theme/auguria/img/title_products.png and /dev/null differ diff --git a/htdocs/theme/auguria/img/title_project.png b/htdocs/theme/auguria/img/title_project.png deleted file mode 100644 index 05d8ea630b8..00000000000 Binary files a/htdocs/theme/auguria/img/title_project.png and /dev/null differ diff --git a/htdocs/theme/auguria/img/title_setup.png b/htdocs/theme/auguria/img/title_setup.png deleted file mode 100644 index d7548d28709..00000000000 Binary files a/htdocs/theme/auguria/img/title_setup.png and /dev/null differ diff --git a/htdocs/theme/auguria/img/tmenu.jpg b/htdocs/theme/auguria/img/tmenu.jpg deleted file mode 100644 index 4e51fef3fc7..00000000000 Binary files a/htdocs/theme/auguria/img/tmenu.jpg and /dev/null differ diff --git a/htdocs/theme/auguria/img/tmenu2.jpg b/htdocs/theme/auguria/img/tmenu2.jpg deleted file mode 100644 index 920e0066341..00000000000 Binary files a/htdocs/theme/auguria/img/tmenu2.jpg and /dev/null differ diff --git a/htdocs/theme/auguria/img/warning.png b/htdocs/theme/auguria/img/warning.png deleted file mode 100644 index f1b93b8cc82..00000000000 Binary files a/htdocs/theme/auguria/img/warning.png and /dev/null differ diff --git a/htdocs/theme/auguria/img/working.gif b/htdocs/theme/auguria/img/working.gif deleted file mode 100644 index 1e421c3113f..00000000000 Binary files a/htdocs/theme/auguria/img/working.gif and /dev/null differ diff --git a/htdocs/theme/auguria/index.html b/htdocs/theme/auguria/index.html deleted file mode 100644 index e69de29bb2d..00000000000 diff --git a/htdocs/theme/auguria/style.css.php b/htdocs/theme/auguria/style.css.php deleted file mode 100644 index d1dd0ab4091..00000000000 --- a/htdocs/theme/auguria/style.css.php +++ /dev/null @@ -1,2688 +0,0 @@ - - * Copyright (C) 2006 Rodolphe Quiedeville - * Copyright (C) 2007-2011 Regis Houssin - * Copyright (C) 2012 Juanjo Menent - * - * 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 - * the Free Software Foundation; either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ - -/** - * \file htdocs/theme/auguria/style.css.php - * \brief File for CSS style sheet Auguria - */ - -//if (! defined('NOREQUIREUSER')) define('NOREQUIREUSER','1'); // Not disabled cause need to load personalized language -//if (! defined('NOREQUIREDB')) define('NOREQUIREDB','1'); // Not disabled to increase speed. Language code is found on url. -if (! defined('NOREQUIRESOC')) define('NOREQUIRESOC','1'); -//if (! defined('NOREQUIRETRAN')) define('NOREQUIRETRAN','1'); // Not disabled cause need to do translations -if (! defined('NOCSRFCHECK')) define('NOCSRFCHECK',1); -if (! defined('NOTOKENRENEWAL')) define('NOTOKENRENEWAL',1); -if (! defined('NOLOGIN')) define('NOLOGIN',1); -if (! defined('NOREQUIREMENU')) define('NOREQUIREMENU',1); -if (! defined('NOREQUIREHTML')) define('NOREQUIREHTML',1); -if (! defined('NOREQUIREAJAX')) define('NOREQUIREAJAX','1'); - -session_cache_limiter(FALSE); - -require_once '../../main.inc.php'; - -// Load user to have $user->conf loaded (not done into main because of NOLOGIN constant defined) -if (empty($user->id) && ! empty($_SESSION['dol_login'])) $user->fetch('',$_SESSION['dol_login']); - - -// Define css type -header('Content-type: text/css'); -// Important: Following code is to avoid page request by browser and PHP CPU at each Dolibarr page access. -if (empty($dolibarr_nocache)) header('Cache-Control: max-age=3600, public, must-revalidate'); -else header('Cache-Control: no-cache'); - -// On the fly GZIP compression for all pages (if browser support it). Must set the bit 3 of constant to 1. -if (isset($conf->global->MAIN_OPTIMIZE_SPEED) && ($conf->global->MAIN_OPTIMIZE_SPEED & 0x04)) { ob_start("ob_gzhandler"); } - -if (GETPOST('lang')) $langs->setDefaultLang(GETPOST('lang')); // If language was forced on URL -if (GETPOST('theme')) $conf->theme=GETPOST('theme'); // If theme was forced on URL -$langs->load("main",0,1); -$right=($langs->trans("DIRECTION")=='rtl'?'left':'right'); -$left=($langs->trans("DIRECTION")=='rtl'?'right':'left'); - -$path=''; // This value may be used in future for external module to overwrite theme -$theme='auguria'; // Value of theme -if (! empty($conf->global->MAIN_OVERWRITE_THEME_RES)) { $path='/'.$conf->global->MAIN_OVERWRITE_THEME_RES; $theme=$conf->global->MAIN_OVERWRITE_THEME_RES; } - -// Define image path files and other constants -$fontlist='arial,tahoma,verdana,helvetica'; //$fontlist='Verdana,Helvetica,Arial,sans-serif'; -$img_liste_titre=dol_buildpath($path.'/theme/'.$theme.'/img/menus/trtitle.png',1); -$img_head=''; -$img_button=dol_buildpath($path.'/theme/'.$theme.'/img/button_bg.png',1); -$dol_hide_topmenu=$conf->dol_hide_topmenu; -$dol_hide_leftmenu=$conf->dol_hide_leftmenu; -$dol_optimize_smallscreen=$conf->dol_optimize_smallscreen; -$dol_no_mouse_hover=$conf->dol_no_mouse_hover; -$dol_use_jmobile=$conf->dol_use_jmobile; - -$colorbacklineimpairhover='210,214,217'; -$colorbacklinepairhover='210,214,217'; -$fontsize='12'; -$fontsizesmaller='11'; - -// No hover by default, we keep only if we set var THEME_ELDY_USE_HOVER -if ((! empty($user->conf->THEME_ELDY_ENABLE_PERSONALIZED) && empty($user->conf->THEME_ELDY_USE_HOVER)) - || (empty($user->conf->THEME_ELDY_ENABLE_PERSONALIZED) && empty($conf->global->THEME_ELDY_USE_HOVER))) -{ - $colorbacklineimpairhover=''; - $colorbacklinepairhover=''; -} - -$colorshadowtitle='000'; - -$usecss3=true; -if ($conf->browser->name == 'ie' && round($conf->browser->version,2) < 10) $usecss3=false; -elseif ($conf->browser->name == 'iceweasel') $usecss3=false; -elseif ($conf->browser->name == 'epiphany') $usecss3=false; - -print '/*'."\n"; -print 'colorbacklineimpairhover='.$colorbacklineimpairhover."\n"; -print 'colorbacklinepairhover='.$colorbacklinepairhover."\n"; -print '*/'."\n"; - -if (! empty($conf->dol_optimize_smallscreen)) $fontsize=11; -?> - -/* ============================================================================== */ -/* Styles par defaut */ -/* ============================================================================== */ - -body { - - background-color: #FFFFFF; - - background-color: #FCFCFC; - - color: #101010; - font-size: px; - font-family: ; - margin-top: 0; - margin-bottom: 0; - margin-right: 0; - margin-left: 0; - trans("DIRECTION").";\n"; ?> -} - -a:link, a:visited, a:hover, a:active { font-family: ; font-weight: bold; color: #000000; text-decoration: none; } - - - -input:focus, textarea:focus, button:focus, select:focus { - box-shadow: 0 0 4px #8091BF; -} - -input, input.flat, textarea, textarea.flat, form.flat select, select.flat { - font-size: px; - font-family: ; - background: #FDFDFD; - border: 1px solid #ACBCBB; - padding: 1px 1px 1px 1px; - margin: 0px 0px 0px 0px; -} - - - -select.flat, form.flat select { - font-weight: normal; -} -input:disabled { - background:#ddd; -} -textarea:disabled { - background:#ddd; -} -input[type=checkbox] { background-color: transparent; border: none; box-shadow: none; } -input[type=radio] { background-color: transparent; border: none; box-shadow: none; } -input[type=image] { background-color: transparent; border: none; box-shadow: none; } -input[type=text] { min-width: 20px; } -input:-webkit-autofill { - background-color: !important; - background-image:none !important; - -webkit-box-shadow: 0 0 0 50px inset; -} -::-webkit-input-placeholder { color:#ccc; } -::-moz-placeholder { color:#ccc; } /* firefox 19+ */ -:-ms-input-placeholder { color:#ccc; } /* ie */ -input:-moz-placeholder { color:#ccc; } - - -legend { margin-bottom: 8px; } - -.button { - font-family: ; - border: 1px solid #ACBCBB; -/* border: 0px; */ - background-image: url(); - background-position: bottom; - padding: 0px 2px 0px 2px; - margin: 0px 0px 0px 0px; -} -.button:focus { - font-family: ; - color: #222244; - border: 1px solid #ACBCBB; -/* border: 0px; */ - background-image: url(); - background-position: bottom; - padding: 0px 2px 0px 2px; - margin: 0px 0px 0px 0px; -} -.button:disabled { - opacity: 0.4; - filter: alpha(opacity=40); /* For IE8 and earlier */ - box-shadow: none; - -webkit-box-shadow: none; - -moz-box-shadow: none; - cursor: auto; -} -.buttonRefused { - pointer-events: none; - cursor: default; - opacity: 0.4; - filter: alpha(opacity=40); /* For IE8 and earlier */ - box-shadow: none; - -webkit-box-shadow: none; - -moz-box-shadow: none; -} -form { - padding: 0em 0em 0em 0em; - margin: 0em 0em 0em 0em; -} -div.float -{ - float:; -} -div.floatright -{ - float:; -} -.inline-block -{ - display:inline-block; -} - -.valignmiddle { - vertical-align: middle; -} -.centpercent { - width: 100%; -} -.center { - text-align: center; -} -.left { - text-align: ; -} -.right { - text-align: ; -} -.nowrap { - white-space: ; -} -.nobold { - font-weight: normal !important; -} -.nounderline { - text-decoration: none; -} -.cursorpointer { - cursor: pointer; -} -.badge { - display: inline-block; - min-width: 10px; - padding: 2px 5px; - font-size: 10px; - font-weight: 700; - line-height: 0.9em; - color: #fff; - text-align: center; - white-space: nowrap; - vertical-align: baseline; - background-color: #777; - border-radius: 10px; -} - - -/* ============================================================================== */ -/* Styles to hide objects */ -/* ============================================================================== */ - -.hideobject { display: none; } - -.hideonsmartphone { display: none; } -.noenlargeonsmartphone { width : 50px !important; display: inline !important; } -.maxwidthonsmartphone { max-width: 100px; } -.maxwidth200onsmartphone { max-width: 200px; } - -.linkobject { cursor: pointer; } - -.hideonprint { display: none !important; } - - - -/* ============================================================================== */ -/* Styles for dragging lines */ -/* ============================================================================== */ - -.dragClass { - color: #002255; -} -td.showDragHandle { - cursor: move; -} -.tdlineupdown { - white-space: nowrap; - min-width: 10px; -} - - -/* ============================================================================== */ -/* Styles de positionnement des zones */ -/* ============================================================================== */ - -#id-container { - display: table; - table-layout: fixed; - margin-top: 6px; - margin-bottom: 6px; -} -#id-right, #id-left { - display: table-cell; - float: none; - vertical-align: top; -} -#id- { - width: 100%; -} - -div.fiche { - margin-: dol_optimize_smallscreen)?'10':'2'; ?>px; - margin-: dol_optimize_smallscreen)?'8':''; ?>px; -} - -div.fichecenter { - width: 100%; - clear: both; /* This is to have div fichecenter that are true rectangles */ -} -div.fichethirdleft { - dol_optimize_smallscreen)) { print "float: ".$left.";\n"; } ?> - dol_optimize_smallscreen)) { print "width: 35%;\n"; } ?> -} -div.fichetwothirdright { - dol_optimize_smallscreen)) { print "float: ".$left.";\n"; } ?> - dol_optimize_smallscreen)) { print "width: 65%;\n"; } ?> -} -div.fichehalfleft { - dol_optimize_smallscreen)) { print "float: ".$left.";\n"; } ?> - dol_optimize_smallscreen)) { print "width: 50%;\n"; } ?> -} -div.fichehalfright { - dol_optimize_smallscreen)) { print "float: ".$left.";\n"; } ?> - dol_optimize_smallscreen)) { print "width: 50%;\n"; } ?> -} -div.ficheaddleft { - dol_optimize_smallscreen)) { print "padding-left: 16px;\n"; } - else print "margin-top: 10px;\n"; ?> -} - - -/* ============================================================================== */ -/* Menu top et 1ere ligne tableau */ -/* ============================================================================== */ - -dol_optimize_smallscreen)) -{ - $minwidthtmenu=70; - $heightmenu=39; -} -else -{ - $minwidthtmenu=70; - $heightmenu=39; -} -?> - -div#tmenu_tooltip { - padding-right: 100px; -} - -div.tmenu { - - display:none; - - position: relative; - display: block; - white-space: nowrap; - border-top: 0px solid #D3E5EC; - border-: 0px; - border-: 0px solid #555555; - border-bottom: 1px solid #ABB9B9; - padding: 0px 0px 0px 0px; /* t r b l */ - margin: 0px 0px 2px 0px; /* t r b l */ - font-weight: normal; - height: px; - background: #7FAEC6; - background-image: url(); - color: #000000; - text-decoration: none; - -} - - - -/* -div.mainmenu { - position : relative; - color: white; - background-repeat:no-repeat; - background-position:center top; - height: px; - margin-left: 0px; -} -*/ - - -/* Do not load menu img if hidden to save bandwidth */ -'name of class for div') - -$moduletomainmenu=array('user'=>'','syslog'=>'','societe'=>'companies','projet'=>'project','propale'=>'commercial','commande'=>'commercial', - 'produit'=>'products','service'=>'products','stock'=>'products', - 'don'=>'accountancy','tax'=>'accountancy','banque'=>'accountancy','facture'=>'accountancy','compta'=>'accountancy','accounting'=>'accountancy','adherent'=>'members','import'=>'tools','export'=>'tools','mailing'=>'tools', - 'contrat'=>'commercial','ficheinter'=>'commercial','deplacement'=>'commercial', - 'fournisseur'=>'companies', - 'barcode'=>'','fckeditor'=>'','categorie'=>'', -); -$mainmenuused='home'; -foreach($conf->modules as $val) -{ - $mainmenuused.=','.(isset($moduletomainmenu[$val])?$moduletomainmenu[$val]:$val); -} -//var_dump($mainmenuused); -$mainmenuusedarray=array_unique(explode(',',$mainmenuused)); - -$mainmenuusedarray=array(); // Disable - -$generic=1; -$divalreadydefined=array('home','companies','products','commercial','accountancy','project','tools','members','agenda','ecm','cashdesk'); -foreach($mainmenuusedarray as $val) -{ - if (empty($val) || in_array($val,$divalreadydefined)) continue; - //print "XXX".$val; - - // Search img file in module dir - $found=0; $url=''; - foreach($conf->file->dol_document_root as $dirroot) - { - if (file_exists($dirroot."/".$val."/img/".$val.".png")) - { - $url=dol_buildpath($path.'/'.$val.'/img/'.$val.'.png',1); - $found=1; - break; - } - } - // Img file not found - if (! $found && $generic <= 4) - { - $url=dol_buildpath($path.'/theme/'.$theme.'/img/menus/generic'.$generic.".png",1); - $found=1; - $generic++; - } - if ($found) - { - print "/* A mainmenu entry but img file ".$val.".png not found (check /".$val."/img/".$val.".png), so we use a generic one */\n"; - print "div.mainmenu.".$val." {\n"; - print " background-image: url(".$url.");\n"; - print " height:28px;\n"; - print "}\n"; - } -} -// End of part to add more div class css -?> - - - -.tmenu{ - position:relative; - font-size: 10px; /* To reduce to have more entries */ - font-family:Tahoma,sans-serif; - text-transform:uppercase; - background: url() repeat-x bottom left; -} - -.tmenu ul{ - margin: 0 10px 0 0; /* t r b l */ - padding:0; - list-style-type:none; - width:auto; /* Having 100% instead of auto works on IE but IE fails to down main content, so we forget IE and use best value for Firefox */ -} - -.tmenu ul li{ - display:block; - float: ; - margin:0 1px; - padding-left: 0px; - padding-right: 0px; -} - -.tmenu ul li a{ - display:block; - float: ; - color:#EAF3F8; - text-decoration:none; - padding:0 0 0 8px; - height:33px; -} - -.tmenu ul li a span{ - padding:12px 8px 0 0; - height:21px; - float: ; -} - -.tmenu ul li a:hover{ - color:#fff; - background:transparent url() repeat-x bottom left; -} - -.tmenu ul li a:hover span{ - display:block; - width:auto; - cursor:pointer; -} - -.tmenu ul li a.tmenusel{ - color:#fff; - background: url() no-repeat top left; - line-height:305%; -} - -.tmenu ul li a.tmenusel span{ - display:block; - padding:4px 8px 0 0; - width:auto; - background: url() no-repeat top right; - height:33px; -} - -.tmenudisabled { - color: #D0D0D0 !important; -} - -.tmenuimage { - padding:0 0 0 0 !important; - margin:0 0px 0 0 !important; -} - -/* --- end nav --- */ - - - - -/* Login */ - -form#login { - margin-top: px; - margin-bottom: 30px; - font-size: 13px; -} -.login_table_title { - max-width: 540px; - color: #888888; - text-shadow: 1px 1px 1px #FFF; -} -.login_table label { - text-shadow: 1px 1px 1px #FFF; -} -.login_table { - padding:12px; - margin-left: 10px; - margin-right: 10px; - max-width: 540px; - border: 1px solid #C0C0C0; - background-color: #E0E0E0; - - -moz-box-shadow: 4px 4px 4px #CCC; - -webkit-box-shadow: 4px 4px 4px #CCC; - box-shadow: 4px 4px 4px #CCC; - - border-radius: 12px; - border:solid 1px rgba(168,168,168,.4); - border-top:solid 1px f8f8f8; - background-color: #f8f8f8; - background-image: -o-linear-gradient(top, rgba(240,240,240,.3) 0%, rgba(192,192,192,.3) 100%); - background-image: -moz-linear-gradient(top, rgba(240,240,240,.3) 0%, rgba(192,192,192,.3) 100%); - background-image: -webkit-linear-gradient(top, rgba(240,240,240,.3) 0%, rgba(192,192,192,.3) 100%); - background-image: -ms-linear-gradient(top, rgba(240,240,240,.3) 0%, rgba(192,192,192,.3) 100%); - background-image: linear-gradient(top, rgba(240,240,240,.3) 0%, rgba(192,192,192,.3) 100%); -} -#securitycode { - min-width: 60px; -} -#img_securitycode { - border: 1px solid #DDDDDD; -} -#img_logo { - max-width: 200px; - max-height: 100px; -} - -div.login_block { - width: 180px; - position: absolute; - : 5px; - top: 3px; - font-weight: bold; - - display: none; - -} - -div.login_block table { - display: inline; -} - -div#login_left, div#login_right { - display: inline-block; - min-width: 220px; - text-align: center; - vertical-align: middle; -} - -div.login { - white-space:nowrap; - padding: dol_optimize_smallscreen?'0':'8')?>px 0px 0px 0px; - margin: 0px 0px 0px 8px; - font-weight: bold; -} -div.login a { - color: #234046; -} -div.login a:hover { - color: black; - text-decoration:underline; -} -.login_block_user { - float: right; -} -.login_block_elem { - float: right; - vertical-align: top; - padding: 8px 0px 0px 4px !important; -} - -.alogin, .alogin:hover { - color: #888 !important; - font-weight: normal !important; - font-size: px !important; -} -.alogin:hover { - text-decoration:underline !important; -} - -img.login, img.printer, img.entity { - padding: 0px 0px 0px 0px; - text-decoration: none; - color: white; - font-weight: bold; -} - - -/* ============================================================================== */ -/* Menu gauche */ -/* ============================================================================== */ - -div.vmenu, td.vmenu { - margin-: 2px; - margin-: 2px; - padding: 0px; - padding-bottom: 0px; - width: 164px; -} - - -.vmenu { - display: none; -} - - -a.vmenu:link, a.vmenu:visited, a.vmenu:hover, a.vmenu:active { font-size:px; font-family: ; text-align: ; font-weight: normal; color: #FFFFFF; margin: 1px 1px 1px 5px; } -font.vmenudisabled { font-size:px; font-family: ; text-align: ; font-weight: normal; color: #D0D0D0; margin: 1px 1px 1px 5px; } -a.vmenu:hover { color: #CCDDEE; } - -a.vsmenu:link, a.vsmenu:visited, a.vsmenu:hover, a.vsmenu:active { font-size:px; font-family: ; text-align: ; font-weight: normal; color: #202020; } -font.vsmenudisabled { font-size:px; font-family: ; text-align: ; font-weight: normal; color: #93a5aa; } -a.vsmenu:hover { color: #556677; } -font.vsmenudisabledmargin { margin: 1px 1px 1px 5px; } - -a.help:link, a.help:visited, a.help:hover, a.help:active { font-size:px; font-family: ; text-align: ; font-weight: normal; } - - -div.blockvmenupair -{ - margin: 0px; - border-spacing: 0px; - padding: 0px; - width: 166px; - border : 0px solid #68ACCF; -} -div.blockvmenuimpair -{ - margin: 0px; - border-spacing: 0px; - padding: 0px; - width: 166px; - border : 0px solid #68ACCF; -} - -div.blockvmenuimpair form a.vmenu, div.blockvmenupair form a.vmenu -{ - width: 166px; - border-spacing: 0px; - color: #000000; - text-align:left; - text-decoration: none; - padding: 4px; - margin: 0px; - background: #FFFFFF; - margin-bottom: -12px; -} - -div.menu_titre -{ - background: url(); - padding: 0px; - padding-top:5px; - padding-left:0px; - margin-top: 8px; - margin: 0px; - height: 16px; - text-align: left; - font-size : 12px; - color : #FFFFFF; - font-weight: bold; -} - -div.blockvmenusearch -{ - margin: 3px 0px 2px 0px; - padding: 0px 0px 2px 2px; - border: 1px solid #c0c0d0; - width: 161px; - background: #DDDDDD !important; -} - -#blockvmenusearch div.menu_titre, #blockvmenusearch form -{ - padding-top: 1px; - padding-bottom: 1px; - background: #DDDDDD !important; - min-height: 16px; -} - -div.blockvmenubookmarks -{ - margin: 0px; - border-spacing: 0px; - padding: 0px; - width: 166px; - border : 0px solid #68ACCF; -} - -div.blockvmenuhelp -{ -dol_optimize_smallscreen)) { ?> - text-align: center; - border-spacing: 0px; - width: 162px; - background: transparent; - font-family: ; - color: #000000; - text-decoration: none; - padding-left: 0px; - padding-right: 1px; - padding-top: 3px; - padding-bottom: 3px; - margin: 1px 0px 0px 0px; - - display: none; - -} - -div.menu_contenu { - background: url(); - padding: 2px 1px 1px 3px; - margin: 0px; - font-size : 11px; - font-weight:normal; - color : #000000; - text-align: left; -} - -div.menu_end { - background: url(); -/* border-top: 1px solid #436981; */ - margin: 0px; - padding: 0px; - height: 6px; - width: 165px; - background-repeat:no-repeat; -} - - -td.barre { - border-right: 1px solid #000000; - border-bottom: 1px solid #000000; - background: #b3c5cc; - font-family: ; - color: #000000; - text-align: ; - text-decoration: none; -} - -td.barre_select { - background: #b3c5cc; - color: #000000; -} - -td.photo { - background: #F4F4F4; - color: #000000; - border: 1px solid #b3c5cc; -} - - -/* ============================================================================== */ -/* Panes for Main */ -/* ============================================================================== */ - -/* - * PANES and CONTENT-DIVs - */ - -#mainContent, #leftContent .ui-layout-pane { - padding: 0px; - overflow: auto; -} - -#mainContent, #leftContent .ui-layout-center { - padding: 0px; - position: relative; /* contain floated or positioned elements */ - overflow: auto; /* add scrolling to content-div */ -} - - -/* ============================================================================== */ -/* Toolbar for ECM or Filemanager */ -/* ============================================================================== */ - -.toolbar { - background-image: url(theme.'/img/tmenu2.jpg',1) ?>) !important; - background-repeat: repeat-x !important; - border: 1px solid #BBB !important; -} - -a.toolbarbutton { - margin-top: 1px; - margin-left: 4px; - margin-right: 4px; - height: 30px; -/* border: solid 1px #AAAAAA; - width: 32px; - background: #FFFFFF;*/ -} -img.toolbarbutton { - margin-top: 2px; - height: 28px; -} - -/* ============================================================================== */ -/* Panes for ECM or Filemanager */ -/* ============================================================================== */ - -#containerlayout .layout-with-no-border { - border: 0 !important; - border-width: 0 !important; -} - -#containerlayout .layout-padding { - padding: 2px !important; -} - -/* - * PANES and CONTENT-DIVs - */ -#containerlayout .ui-layout-pane { /* all 'panes' */ - background: #FFF; - border: 1px solid #BBB; - /* DO NOT add scrolling (or padding) to 'panes' that have a content-div, - otherwise you may get double-scrollbars - on the pane AND on the content-div - */ - padding: 0px; - overflow: auto; -} -/* (scrolling) content-div inside pane allows for fixed header(s) and/or footer(s) */ -#containerlayout .ui-layout-content { - padding: 10px; - position: relative; /* contain floated or positioned elements */ - overflow: auto; /* add scrolling to content-div */ -} - -/* - * RESIZER-BARS - */ -.ui-layout-resizer { /* all 'resizer-bars' */ - width: 8px !important; -} -.ui-layout-resizer-hover { /* affects both open and closed states */ -} -/* NOTE: It looks best when 'hover' and 'dragging' are set to the same color, - otherwise color shifts while dragging when bar can't keep up with mouse */ -/*.ui-layout-resizer-open-hover ,*/ /* hover-color to 'resize' */ -.ui-layout-resizer-dragging { /* resizer beging 'dragging' */ - background: #DDD; - width: 8px; -} -.ui-layout-resizer-dragging { /* CLONED resizer being dragged */ - border-left: 1px solid #BBB; - border-right: 1px solid #BBB; -} -/* NOTE: Add a 'dragging-limit' color to provide visual feedback when resizer hits min/max size limits */ -.ui-layout-resizer-dragging-limit { /* CLONED resizer at min or max size-limit */ - background: #E1A4A4; /* red */ -} -.ui-layout-resizer-closed:hover { - background-color: #EEDDDD; -} -.ui-layout-resizer-sliding { /* resizer when pane is 'slid open' */ - opacity: .10; /* show only a slight shadow */ - filter: alpha(opacity=10); - } - .ui-layout-resizer-sliding-hover { /* sliding resizer - hover */ - opacity: 1.00; /* on-hover, show the resizer-bar normally */ - filter: alpha(opacity=100); - } -/* sliding resizer - add 'outside-border' to resizer on-hover - * this sample illustrates how to target specific panes and states */ -.ui-layout-resizer-north-sliding-hover { border-bottom-width: 1px; } -.ui-layout-resizer-south-sliding-hover { border-top-width: 1px; } -.ui-layout-resizer-west-sliding-hover { border-right-width: 1px; } -.ui-layout-resizer-east-sliding-hover { border-left-width: 1px; } - -/* - * TOGGLER-BUTTONS - */ -.ui-layout-toggler { - border-top: 1px solid #AAA; /* match pane-border */ - border-right: 1px solid #AAA; /* match pane-border */ - border-bottom: 1px solid #AAA; /* match pane-border */ - background-color: #DDD; - top: 5px !important; - } -.ui-layout-toggler-open { - height: 48px !important; - width: 5px !important; - -moz-border-radius:0px 10px 10px 0px; - -webkit-border-radius:0px 10px 10px 0px; - border-radius:0px 10px 10px 0px; -} -.ui-layout-toggler-closed { - height: 48px !important; - width: 5px !important; - -moz-border-radius:0px 10px 10px 0px; - -webkit-border-radius:0px 10px 10px 0px; - border-radius:0px 10px 10px 0px; -} -.ui-layout-toggler .content { /* style the text we put INSIDE the togglers */ - color: #666; - font-size: 12px; - font-weight: bold; - width: 100%; - padding-bottom: 0.35ex; /* to 'vertically center' text inside text-span */ -} - -/* hide the toggler-button when the pane is 'slid open' */ -.ui-layout-resizer-sliding ui-layout-toggler { - display: none; -} - -.ui-layout-north { - height: dol_optimize_smallscreen)?'42':'42'); ?>px !important; -} - -/* ECM */ - -#containerlayout .ecm-layout-pane { /* all 'panes' */ - background: #FFF; - border: 1px solid #BBB; - /* DO NOT add scrolling (or padding) to 'panes' that have a content-div, - otherwise you may get double-scrollbars - on the pane AND on the content-div - */ - padding: 0px; - overflow: auto; -} -/* (scrolling) content-div inside pane allows for fixed header(s) and/or footer(s) */ -#containerlayout .ecm-layout-content { - padding: 10px; - position: relative; /* contain floated or positioned elements */ - overflow: auto; /* add scrolling to content-div */ -} - -.ecm-layout-toggler { - border-top: 1px solid #AAA; /* match pane-border */ - border-right: 1px solid #AAA; /* match pane-border */ - border-bottom: 1px solid #AAA; /* match pane-border */ - background-color: #CCC; - } -.ecm-layout-toggler-open { - height: 48px !important; - width: 6px !important; - -moz-border-radius:0px 10px 10px 0px; - -webkit-border-radius:0px 10px 10px 0px; - border-radius:0px 10px 10px 0px; -} -.ecm-layout-toggler-closed { - height: 48px !important; - width: 6px !important; -} -.ecm-layout-toggler .content { /* style the text we put INSIDE the togglers */ - color: #666; - font-size: 12px; - font-weight: bold; - width: 100%; - padding-bottom: 0.35ex; /* to 'vertically center' text inside text-span */ -} -#ecm-layout-west-resizer { - width: 6px !important; -} - -.ecm-layout-resizer { /* all 'resizer-bars' */ - border: 1px solid #BBB; - border-width: 0; - } - -.ecm-in-layout-center { - border-left: 1px !important; - border-right: 0px !important; - border-top: 0px !important; -} - -.ecm-in-layout-south { - border-left: 0px !important; - border-right: 0px !important; - border-bottom: 0px !important; - padding: 4px 0 4px 4px !important; -} - - - -/* ============================================================================== */ -/* Onglets */ -/* ============================================================================== */ - -div.tabs { - top: 20px; - margin: 1px 0px 0px 0px; - padding: 0px 6px 0px 0px; - text-align: ; -} - -div.tabBar { - color: #234046; - padding-top: 10px; - padding-left: 8px; - padding-right: 8px; - padding-bottom: 8px; - margin: 0px 0px 10px 0px; - -moz-border-radius-topleft:6px; - -moz-border-radius-topright:6px; - -moz-border-radius-bottomleft:6px; - -moz-border-radius-bottomright:6px; - border-right: 1px solid #555555; - border-bottom: 1px solid #555555; - border-left: 1px solid #D0D0D0; - border-top: 1px solid #D8D8D8; - background: #dee7ec url() repeat-x; -} - -div.tabsAction { - margin: 20px 0em 1px 0em; - padding: 0em 0em; - text-align: right; -} - - -a.tabTitle { - color: #888; - font-family: ; - font-weight: normal; - padding: 0px 6px; - margin: 0px 6px; - text-decoration: none; - white-space: nowrap; -} - -a.tab:link { - background: #dee7ec; - color: #436976; - font-family: ; - padding: 0px 6px; - margin: 0em 0.2em; - text-decoration: none; - white-space: nowrap; - -moz-border-radius-topleft:6px; - -moz-border-radius-topright:6px; - - border-: 1px solid #555555; - border-: 1px solid #D8D8D8; - border-top: 1px solid #D8D8D8; -} -a.tab:visited { - background: #dee7ec; - color: #436976; - font-family: ; - padding: 0px 6px; - margin: 0em 0.2em; - text-decoration: none; - white-space: nowrap; - -moz-border-radius-topleft:6px; - -moz-border-radius-topright:6px; - - border-: 1px solid #555555; - border-: 1px solid #D8D8D8; - border-top: 1px solid #D8D8D8; -} -div.tabs a.tab:active, .tabactive { - background: white !important; - border-bottom: #dee7ec 1px solid; - font-family: ; - color: #436976; - padding: 0px 6px; - margin: 0em 0.2em; - text-decoration: none; - -moz-border-radius-topleft:6px; - -moz-border-radius-topright:6px; - - border-: 1px solid #555555; - border-: 1px solid #D8D8D8; - border-top: 1px solid #D8D8D8; - border-bottom: 1px solid white; -} -a.tab:hover { - background: white; - color: #436976; - font-family: ; - padding: 0px 6px; - margin: 0em 0.2em; - text-decoration: none; - -moz-border-radius-topleft:6px; - -moz-border-radius-topright:6px; - - border-: 1px solid #555555; - border-: 1px solid #D8D8D8; - border-top: 1px solid #D8D8D8; -} - -a.tabimage { - color: #436976; - font-family: ; - text-decoration: none; - white-space: nowrap; -} - -td.tab { - background: #dee7ec; -} - -span.tabspan { - background: #dee7ec; - color: #436976; - font-family: ; - padding: 0px 6px; - margin: 0em 0.2em; - text-decoration: none; - white-space: nowrap; - -moz-border-radius-topleft:6px; - -moz-border-radius-topright:6px; - - border-: 1px solid #555555; - border-: 1px solid #D8D8D8; - border-top: 1px solid #D8D8D8; -} - -/* ============================================================================== */ -/* Boutons actions */ -/* ============================================================================== */ - -div.divButAction { margin-bottom: 1.4em; } - -.butAction, .butAction:link, .butAction:visited, .butAction:hover, .butAction:active, .butActionDelete, .butActionDelete:link, .butActionDelete:visited, .butActionDelete:hover, .butActionDelete:active { - font-family: ; - font-weight: bold; - background: white; - border: 1px solid #8CACBB; - color: #436976; - padding: 0em 0.7em; - margin: 0em 0.5em; - text-decoration: none; - white-space: nowrap; -} - -.butAction:hover { - background: #dee7ec; -} - -.butActionDelete, .butActionDelete:link, .butActionDelete:visited, .butActionDelete:hover, .butActionDelete:active { - border: 1px solid #997777; -} - -.butActionDelete:hover { - background: #FFe7ec; -} - -.butActionRefused { - font-family: !important; - font-weight: bold !important; - background: white !important; - border: 1px solid #AAAAAA !important; - color: #AAAAAA !important; - padding: 0em 0.7em !important; - margin: 0em 0.5em !important; - text-decoration: none !important; - white-space: nowrap !important; - cursor: not-allowed; -} - -global->MAIN_BUTTON_HIDE_UNAUTHORIZED)) { ?> -.butActionRefused { - display: none; -} - - -span.butAction, span.butActionDelete { - cursor: pointer; -} - -/* ============================================================================== */ -/* Tables */ -/* ============================================================================== */ - -.allwidth { - width: 100%; -} - -#undertopmenu { - margin-top: 4px; -} -/* -#undertopmenu { -background-image: url(""); -background-repeat: repeat-x; -} -*/ - - -.paddingrightonly { - border-collapse: collapse; - border: 0px; - margin-left: 0px; - padding-: 0px !important; - padding-: 4px !important; -} -.nocellnopadd { -list-style-type:none; -margin: 0px; -padding: 0px; -} - -.notopnoleft { -border-collapse: collapse; -border: 0px; -padding-top: 0px; -padding-: 0px; -padding-: 10px; -padding-bottom: 4px; -margin: 0px 0px; -} -.notopnoleftnoright { -border-collapse: collapse; -border: 0px; -padding-top: 0px; -padding-left: 0px; -padding-right: 0px; -padding-bottom: 4px; -margin: 0px 0px 0px 0px; -} - - -table.border, table.dataTable, .table-border, .table-border-col, .table-key-border-col, .table-val-border-col, div.border { - border: 1px solid #9CACBB; - border-collapse: collapse; - padding: 1px 2px 2px 1px; /* t r b l */ -} - -table.border td, div.border div div.tagtd { - padding: 1px 2px; - border: 1px solid #9CACBB; - border-collapse: collapse; -} - -td.border, div.tagtable div div.border { - border-top: 1px solid #000000; - border-right: 1px solid #000000; - border-bottom: 1px solid #000000; - border-left: 1px solid #000000; -} - -.table-key-border-col { - width: 25%; - vertical-align:top; -} -.table-val-border-col { - width:auto; -} - -/* Main boxes */ - -table.noborder, div.noborder { - border-collapse: collapse; - border-top-color: #FEFEFE; - - border-right-width: 1px; - border-right-color: #BBBBBB; - border-right-style: solid; - - border-left-width: 1px; - border-left-color: #BBBBBB; - border-left-style: solid; - - border-bottom-width: 1px; - border-bottom-color: #BBBBBB; - border-bottom-style: solid; - - margin-left: 1px; - margin-right: 1px; - margin-bottom: 2px; - margin-top: 0px; - - -moz-box-shadow: 4px 4px 4px #CCC; - -webkit-box-shadow: 4px 4px 4px #CCC; - box-shadow: 4px 4px 4px #CCC; -} - -table.noborder tr, div.noborder form { - border-top-color: #FEFEFE; - - border-right-width: 1px; - border-right-color: #BBBBBB; - border-right-style: solid; - - border-left-width: 1px; - border-left-color: #BBBBBB; - border-left-style: solid; - height: 20px; -} - -table.noborder td, div.noborder form div { - padding: 1px 2px 2px 1px; /* t r b l */ -} - -table.nobordernopadding { -border-collapse: collapse; -border: 0px; -} -table.nobordernopadding tr { -border: 0px; -padding: 0px 0px; -} -table.nobordernopadding td { -border: 0px; -padding: 0px 0px; -} - -/* For lists */ - -table.liste { - width: 100%; - border-collapse: collapse; - border-top-color: #FEFEFE; - - border-left-width: 1px; - border-left-color: #BBBBBB; - border-left-style: solid; - - border-right-width: 1px; - border-right-color: #BBBBBB; - border-right-style: solid; - - border-bottom-width: 1px; - border-bottom-color: #BBBBBB; - border-bottom-style: solid; - - margin-bottom: 2px; - margin-top: 0px; - - -moz-box-shadow: 4px 4px 4px #CCC; - -webkit-box-shadow: 4px 4px 4px #CCC; - box-shadow: 4px 4px 4px #CCC; -} -table.liste td { - padding-right: 2px; -} - -.tagtable, .table-border { display: table; } -.tagtr, .table-border-row { display: table-row; } -.tagtd, .table-border-col, .table-key-border-col, .table-val-border-col { display: table-cell; } - -/* Pagination */ -div.refidpadding { - padding-top: dol_use_jmobile)?'8':'12'; ?>px; -} -div.refid { - padding-top: dol_use_jmobile)?'6':'12'; ?>px; - font-weight: bold; - color: #666; - font-size: 120%; -} - -div.pagination { - float: right; -} -div.pagination a { - font-weight: normal; -} -div.pagination ul -{ - list-style: none; - display: inline-block; - padding-left: 0px; - padding-right: 0px; - margin: 0; -} -div.pagination li { - display: inline-block; - padding-left: 0px; - padding-right: 0px; - padding-top: 6px; - padding-bottom: 6px; -} -.pagination { - display: inline-block; - padding-left: 0; - border-radius: 4px; -} - -div.pagination li a, -div.pagination li span { - /*position: relative;*/ - /*float: left;*/ - padding: 6px 12px; - margin-left: -1px; - line-height: 1.42857143; - color: #000; - text-decoration: none; - background-color: #fff; - border: 1px solid #ddd; -} -div.pagination li:first-child a, -div.pagination li:first-child span { - margin-left: 0; - border-top-left-radius: 4px; - border-bottom-left-radius: 4px; -} -div.pagination li:last-child a, -div.pagination li:last-child span { - border-top-right-radius: 4px; - border-bottom-right-radius: 4px; -} -div.pagination li a:hover, -div.pagination li span:hover, -div.pagination li a:focus, -div.pagination li span:focus { - color: #000; - background-color: #eee; - border-color: #ddd; -} -div.pagination li .active a, -div.pagination li .active span, -div.pagination li .active a:hover, -div.pagination li .active span:hover, -div.pagination li .active a:focus, -div.pagination li .active span:focus { - z-index: 2; - color: #fff; - cursor: default; - background-color: ; - border-color: #337ab7; -} -div.pagination .disabled span, -div.pagination .disabled span:hover, -div.pagination .disabled span:focus, -div.pagination .disabled a, -div.pagination .disabled a:hover, -div.pagination .disabled a:focus { - color: #777; - cursor: not-allowed; - background-color: #fff; - border-color: #ddd; -} -div.pagination li .active { - text-decoration: underline; -} -div.pagination li.paginationafterarrows { - margin-left: 10px; -} - -tr.liste_titre, tr.liste_titre_sel, form.liste_titre, form.liste_titre_sel -{ - height: 24px; -} -div.liste_titre, tr.liste_titre, form.liste_titre -{ - - background: #82c6f9; - background-image: -o-linear-gradient(bottom, rgba(100,100,100,0.3) 0%, rgba(150,150,150,0.3) 100%); - background-image: -moz-linear-gradient(bottom, rgba(100,100,100,0.3) 0%, rgba(150,150,150,0.3) 100%); - background-image: -webkit-linear-gradient(bottom, rgba(100,100,100,0.3) 0%, rgba(1,150,150,0.3) 100%); - background-image: -ms-linear-gradient(bottom, rgba(100,100,100,0.3) 0%, rgba(150,150,150,0.3) 100%); - background-image: linear-gradient(bottom, rgba(1,100,100,0.3) 0%, rgba(150,150,150,0.3) 100%); - font-weight: bold; - border-top: 1px solid; - border-top-color: #57a0c9 !important; - border-bottom: 1px solid; - border-bottom-color: #57a0c9 !important; - - background: #82c6e9; - background-image: url(); - - background-repeat: repeat-x; - color: #FFFFFF; - font-family: ; - /* border-bottom: 1px solid #FDFFFF; */ - text-align: ; -} -th.liste_titre, td.liste_titre -{ - - background: #82c6f9; - background-image: -o-linear-gradient(bottom, rgba(100,100,100,0.3) 0%, rgba(150,150,150,0.3) 100%); - background-image: -moz-linear-gradient(bottom, rgba(100,100,100,0.3) 0%, rgba(150,150,150,0.3) 100%); - background-image: -webkit-linear-gradient(bottom, rgba(100,100,100,0.3) 0%, rgba(1,150,150,0.3) 100%); - background-image: -ms-linear-gradient(bottom, rgba(100,100,100,0.3) 0%, rgba(150,150,150,0.3) 100%); - background-image: linear-gradient(bottom, rgba(1,100,100,0.3) 0%, rgba(150,150,150,0.3) 100%); - font-weight: bold; - border-top: 1px solid #57a0c9; - border-bottom: 1px solid #57a0c9; - - background: #82c6e9; - background-image: url(); - - background-repeat: repeat-x; - font-family: ; - font-weight: normal; - /* border-bottom: 1px solid #FDFFFF; */ - white-space: nowrap; -} -th.liste_titre, td.liste_titre, th.liste_titre a, td.liste_titre a -{ - color: #FFFFFF !important; -} -th.liste_titre_sel, td.liste_titre_sel -{ - - background: #82c6f9; - background-image: -o-linear-gradient(bottom, rgba(100,100,100,0.3) 0%, rgba(150,150,150,0.3) 100%); - background-image: -moz-linear-gradient(bottom, rgba(100,100,100,0.3) 0%, rgba(150,150,150,0.3) 100%); - background-image: -webkit-linear-gradient(bottom, rgba(100,100,100,0.3) 0%, rgba(1,150,150,0.3) 100%); - background-image: -ms-linear-gradient(bottom, rgba(100,100,100,0.3) 0%, rgba(150,150,150,0.3) 100%); - background-image: linear-gradient(bottom, rgba(1,100,100,0.3) 0%, rgba(150,150,150,0.3) 100%); - font-weight: bold; - border-top: 1px solid #57a0c9; - border-bottom: 1px solid #57a0c9; - - background: #82c6e9; - background-image: url(); - - background-repeat: repeat-x; - font-family: ; - font-weight: normal; - /* text-decoration: underline; */ - /* border-bottom: 1px solid #FDFFFF; */ - white-space: nowrap; -} -th.liste_titre_sel, td.liste_titre_sel, th.liste_titre_sel a, td.liste_titre_sel a -{ - color: #FFFFFF !important; -} -input.liste_titre { - background: transparent; - background-repeat: repeat-x; - border: 0px; -} - -tr.liste_total td, form.liste_total div { - border-top: 1px solid #DDDDDD; - background: #F0F0F0; - background-repeat: repeat-x; - color: #332266; - font-weight: normal; - white-space: nowrap; -} - - -.impair:hover { - - background: rgb(); - - border: 0px; -} - -.impair, .nohover .impair:hover, tr.impair td.nohover { - background: #F5F6F7; - font-family: ; - border: 0px; -} - - -.pair:hover { - - background: rgb(); - - border: 0px; -} - -.pair, .nohover .pair:hover, tr.pair td.nohover { - background: #FBFCFC; - font-family: ; - border: 0px; -} - - - -/* Disable shadows */ -.noshadow { - -moz-box-shadow: 0px 0px 0px #CCC !important; - -webkit-box-shadow: 0px 0px 0px #CCC !important; - box-shadow: 0px 0px 0px #CCC !important; -} - -div.tabBar .noborder { - -moz-box-shadow: 0px 0px 0px #CCC !important; - -webkit-box-shadow: 0px 0px 0px #CCC !important; - box-shadow: 0px 0px 0px #CCC !important; -} - - -/* - * Boxes - */ - -.boxstats { - - margin: 4px; - padding: 4px; - /*-moz-box-shadow: 4px 4px 4px #DDD; - -webkit-box-shadow: 4px 4px 4px #DDD; - box-shadow: 4px 4px 4px #DDD; - margin-bottom: 8px !important;*/ - border: 1px solid #AAA; - text-align: center; - border-radius: 5px; -} - -.boxtable { --moz-box-shadow: 4px 4px 4px #CCC; --webkit-box-shadow: 4px 4px 4px #CCC; -box-shadow: 4px 4px 4px #CCC; -} - -.box { -padding-right: 0px; -padding-left: 0px; -padding-bottom: 4px; -} - -tr.box_titre { -height: 24px; -background: #7699A9; -background-image: url(); -background-repeat: repeat-x; -color: #FFFFFF; -font-family: , sans-serif; -font-weight: normal; -border-bottom: 1px solid #FDFFFF; -white-space: nowrap; - -moz-border-radius-topleft:6px; - -moz-border-radius-topright:6px; -} - -tr.box_titre td.boxclose { - width: 30px; -} - -tr.box_impair { -/* background: #e6ebed; */ -background: #F5F6F7; -font-family: ; -} - -tr.box_pair { -/* background: #d0d4d7; */ -background: #FBFCFC; -font-family: ; -} - -tr.box_pair td, tr.box_impair td, td.box_pair, td.box_impair -{ -/*border-bottom: 1px solid white;*/ -} - -.formboxfilter { - vertical-align: middle; - margin-bottom: 6px; -} -.formboxfilter input[type=image] -{ - top: 3px; - position: relative; -} - - - -/* - * Ok, Warning, Error - */ - -.ok { color: #114466; } -.warning { color: #887711; } -.error { color: #550000 !important; font-weight: bold; } - -td.highlights { background: #f9c5c6; } - -div.ok { - color: #114466; -} - -div.warning { - color: #997711; - padding: 0.2em 0.2em 0.2em 0.2em; - margin: 0.5em 0em 0.5em 0em; - border: 1px solid #c0c0d0; - -moz-border-radius:6px; - background: #efefd4; -} - -div.error { - color: #550000; font-weight: bold; - padding: 0.2em 0.2em 0.2em 0.2em; - margin: 0.5em 0em 0.5em 0em; - border: 1px solid #8C9CAB; - -moz-border-radius:6px; -} - -/* Info admin */ -div.info { - color: #707070; - padding: 0.2em 0.2em 0.2em 0.2em; - margin: 0.5em 0em 0.5em 0em; - border: 1px solid #DFDFA0; - -moz-border-radius:6px; - background: #EFEFD4; -} - - -/* - * Liens Payes/Non payes - */ - -a.normal:link { font-weight: normal } -a.normal:visited { font-weight: normal } -a.normal:active { font-weight: normal } -a.normal:hover { font-weight: normal } - -a.impayee:link { font-weight: bold; color: #550000; } -a.impayee:visited { font-weight: bold; color: #550000; } -a.impayee:active { font-weight: bold; color: #550000; } -a.impayee:hover { font-weight: bold; color: #550000; } - - - -/* - * Other - */ - -.product_line_stock_ok { color: #002200; } -.product_line_stock_too_low { color: #664400; } - -.fieldrequired { font-weight: bold; color: #000055; } - -.dolgraphtitle { margin-top: 6px; margin-bottom: 4px; } -.dolgraphtitlecssboxes { margin: 0px; } - -.photo { -border: 0px; -/* filter:alpha(opacity=55); */ -/* opacity:.55; */ -} - -div.titre { - font-family: ; - font-weight: normal; - color: #336666; - text-decoration: none; -} - -#dolpaymenttable { width: 600px; font-size: 13px; } -#tablepublicpayment { border: 1px solid #CCCCCC !important; width: 100%; } -#tablepublicpayment .CTableRow1 { background-color: #F0F0F0 !important; } -#tablepublicpayment tr.liste_total { border-bottom: 1px solid #CCCCCC !important; } -#tablepublicpayment tr.liste_total td { border-top: none; } - - -/* ============================================================================== */ -/* Formulaire confirmation (When Ajax JQuery is used) */ -/* ============================================================================== */ - -.ui-dialog-titlebar { -} -.ui-dialog-content { - font-size: px !important; -} - -/* ============================================================================== */ -/* Formulaire confirmation (When HTML is used) */ -/* ============================================================================== */ - -table.valid { - border-top: solid 1px #E6E6E6; - border-: solid 1px #E6E6E6; - border-: solid 1px #444444; - border-bottom: solid 1px #555555; - padding-top: 0px; - padding-left: 0px; - padding-right: 0px; - padding-bottom: 0px; - margin: 0px 0px; - background: #D5BAA8; -} - -.validtitre { - background: #D5BAA8; - font-weight: bold; -} - - -/* ============================================================================== */ -/* Tooltips */ -/* ============================================================================== */ - -#tooltip { -position: absolute; -width: px; -border-top: solid 1px #BBBBBB; -border-: solid 1px #BBBBBB; -border-: solid 1px #444444; -border-bottom: solid 1px #444444; -padding: 2px; -z-index: 3000; -background-color: #FFFFF0; -opacity: 1; --moz-border-radius:6px; -} - - - -/* ============================================================================== */ -/* Calendar */ -/* ============================================================================== */ - -img.datecallink { padding-left: 2px !important; padding-right: 2px !important; } - -.ui-datepicker-trigger { - vertical-align: middle; - cursor: pointer; -} - -.bodyline { - -moz-border-radius:8px; - border: 1px #E4ECEC outset; - padding: 0px; - margin-bottom: 5px; - z-index: 3000; -} -table.dp { - width: 180px; - background-color: #FFFFFF; - border-top: solid 2px #DDDDDD; - border-: solid 2px #DDDDDD; - border-: solid 1px #222222; - border-bottom: solid 1px #222222; - padding: 0px; - border-spacing: 0px; - border-collapse: collapse; -} -.dp td, .tpHour td, .tpMinute td{padding:2px; font-size:10px;} -/* Barre titre */ -.dpHead,.tpHead,.tpHour td:Hover .tpHead{ - font-weight:bold; - background-color:#b3c5cc; - color:white; - font-size:11px; - cursor:auto; -} -/* Barre navigation */ -.dpButtons,.tpButtons { - text-align:center; - background-color:#617389; - color:#FFFFFF; - font-weight:bold; - border: 1px outset black; - cursor:pointer; -} -.dpButtons:Active,.tpButtons:Active{border: 1px outset black;} -.dpDayNames td,.dpExplanation {background-color:#D9DBE1; font-weight:bold; text-align:center; font-size:11px;} -.dpExplanation{ font-weight:normal; font-size:11px;} -.dpWeek td{text-align:center} - -.dpToday,.dpReg,.dpSelected{ - cursor:pointer; -} -.dpToday{font-weight:bold; color:black; background-color:#DDDDDD;} -.dpReg:Hover,.dpToday:Hover{background-color:black;color:white} - -/* Jour courant */ -.dpSelected{background-color:#0B63A2;color:white;font-weight:bold; } - -.tpHour{border-top:1px solid #DDDDDD; border-right:1px solid #DDDDDD;} -.tpHour td {border-left:1px solid #DDDDDD; border-bottom:1px solid #DDDDDD; cursor:pointer;} -.tpHour td:Hover {background-color:black;color:white;} - -.tpMinute {margin-top:5px;} -.tpMinute td:Hover {background-color:black; color:white; } -.tpMinute td {background-color:#D9DBE1; text-align:center; cursor:pointer;} - -/* Bouton X fermer */ -.dpInvisibleButtons -{ -border-style:none; -background-color:transparent; -padding:0px; -font-size:9px; -border-width:0px; -color:#0B63A2; -vertical-align:middle; -cursor: pointer; -} - - -/* ============================================================================== */ -/* Afficher/cacher */ -/* ============================================================================== */ - -div.visible { - display: block; -} - -div.hidden { - display: none; -} - -tr.visible { - display: block; -} - -td.hidden { - display: none; -} - - -/* ============================================================================== */ -/* Module agenda */ -/* ============================================================================== */ - -table.cal_month { border-spacing: 0px; } -.cal_other_month { background: #DDDDDD; border: solid 1px #ACBCBB; padding-: 2px; padding-: 1px; padding-top: 0px; padding-bottom: 0px; } -.cal_other_month_peruserleft { border-top: 0; border-left: solid 3px #6C7C7B !important; border-right: 0; } -.cal_past_month { background: #EEEEEE; border: solid 1px #ACBCBB; padding-: 2px; padding-: 1px; padding-top: 0px; padding-bottom: 0px; } -.cal_current_month { background: #FFFFFF; border-left: solid 1px #ACBCBB; border-bottom: solid 1px #ACBCBB; padding-: 2px; padding-: 1px; padding-top: 0px; padding-bottom: 0px; } -.cal_current_month_peruserleft { border-top: 0; border-left: solid 3px #6C7C7B; border-right: 0; border-bottom: solid 1px #ACBCBB; } -.cal_current_month_peruserleft { background: #FFFFFF; border-left: solid 3px #6C7C7B; padding-: 2px; padding-: 1px; padding-top: 0px; padding-bottom: 0px; } -.cal_today { background: #FFFFFF; border: solid 2px #6C7C7B; padding-: 2px; padding-: 1px; padding-top: 0px; padding-bottom: 0px; } -.cal_today_peruser { background: #FFFFFF; border-right: solid 1px #6C7C7B; border-top: solid 1px #A0A0A0; border-bottom: solid 1px #A0A0A0; padding-: 2px; padding-: 1px; padding-top: 0px; padding-bottom: 0px; } -.cal_today_peruser_peruserleft { background: #FFFFFF; border-left: solid 3px #6C7C7B; border-top: solid 1px #A0A0A0; border-right: solid 1px #6C7C7B; border-bottom: solid 1px #A0A0A0; padding-: 2px; padding-: 1px; padding-top: 0px; padding-bottom: 0px; } -table.cal_event { border-collapse: collapse; margin-bottom: 1px; } -table.cal_event td { border: 0px; padding-: 0px; padding-: 2px; padding-top: 0px; padding-bottom: 0px; } -ul.cal_event { padding-right: 2px; padding-top: 1px; border: none; list-style-type: none; margin: 0 auto; padding-left: 0px; padding-start: 0px; -khtml-padding-start: 0px; -o-padding-start: 0px; -webkit-padding-start: 0px; -webkit-padding-start: 0px; } -li.cal_event { border: none; list-style-type: none; } -.cal_event a:link { color: #111111; font-size: 11px; font-weight: normal !important; } -.cal_event a:visited { color: #111111; font-size: 11px; font-weight: normal !important; } -.cal_event a:active { color: #111111; font-size: 11px; font-weight: normal !important; } -.cal_event a:hover { color: #111111; font-size: 11px; font-weight: normal !important; } -.cal_peruser { padding: 0px; } -.peruser_busy { background: #CC8888; } -.peruser_notbusy { background: #EEDDDD; } - - -/* ============================================================================== */ -/* Ajax - Liste deroulante de l'autocompletion */ -/* ============================================================================== */ - -.ui-widget { font-family: Verdana,Arial,sans-serif; font-size: 0.9em; } -.ui-autocomplete-loading { background: white url() right center no-repeat; } - - -/* ============================================================================== */ -/* jQuery - jeditable */ -/* ============================================================================== */ - -.editkey_textarea, .editkey_ckeditor, .editkey_string, .editkey_email, .editkey_numeric, .editkey_select, .editkey_autocomplete { - background: url() right top no-repeat; - cursor: pointer; -} - -.editkey_datepicker { - background: url() right center no-repeat; - cursor: pointer; -} - -.editval_textarea.active:hover, .editval_ckeditor.active:hover, .editval_string.active:hover, .editval_email.active:hover, .editval_numeric.active:hover, .editval_select.active:hover, .editval_autocomplete.active:hover, .editval_datepicker.active:hover { - background: white; - cursor: pointer; -} - -.viewval_textarea.active:hover, .viewval_ckeditor.active:hover, .viewval_string.active:hover, .viewval_email.active:hover, .viewval_numeric.active:hover, .viewval_select.active:hover, .viewval_autocomplete.active:hover, .viewval_datepicker.active:hover { - background: white; - cursor: pointer; -} - -.viewval_hover { - background: white; -} - - -/* ============================================================================== */ -/* Admin Menu */ -/* ============================================================================== */ - -/* CSS for treeview */ -.treeview ul { background-color: transparent !important; margin-top: 0; } -.treeview li { background-color: transparent !important; padding: 0 0 0 16px !important; min-height: 20px; } -.treeview .hover { color: black !important; } - - -/* ============================================================================== */ -/* Show Excel tabs */ -/* ============================================================================== */ - -.table_data -{ - border-style:ridge; - border:1px solid; -} -.tab_base -{ - background:#C5D0DD; - font-weight:bold; - border-style:ridge; - border: 1px solid; - cursor:pointer; -} -.table_sub_heading -{ - background:#CCCCCC; - font-weight:bold; - border-style:ridge; - border: 1px solid; -} -.table_body -{ - background:#F0F0F0; - font-weight:normal; - font-family:sans-serif; - border-style:ridge; - border: 1px solid; - border-spacing: 0px; - border-collapse: collapse; -} -.tab_loaded -{ - background:#222222; - color:white; - font-weight:bold; - border-style:groove; - border: 1px solid; - cursor:pointer; -} - - - - -/* ============================================================================== */ -/* CSS for color picker */ -/* ============================================================================== */ - -A.color, A.color:active, A.color:visited { - position : relative; - display : block; - text-decoration : none; - width : 10px; - height : 10px; - line-height : 10px; - margin : 0px; - padding : 0px; - border : 1px inset white; -} -A.color:hover { - border : 1px outset white; -} -A.none, A.none:active, A.none:visited, A.none:hover { - position : relative; - display : block; - text-decoration : none; - width : 10px; - height : 10px; - line-height : 10px; - margin : 0px; - padding : 0px; - cursor : default; - border : 1px solid #b3c5cc; -} -.tblColor { - display : none; -} -.tdColor { - padding : 1px; -} -.tblContainer { - background-color : #b3c5cc; -} -.tblGlobal { - position : absolute; - top : 0px; - left : 0px; - display : none; - background-color : #b3c5cc; - border : 2px outset; -} -.tdContainer { - padding : 5px; -} -.tdDisplay { - width : 50%; - height : 20px; - line-height : 20px; - border : 1px outset white; -} -.tdDisplayTxt { - width : 50%; - height : 24px; - line-height : 12px; - font-family : ; - font-size : 8pt; - color : black; - text-align : center; -} -.btnColor { - width : 100%; - font-family : ; - font-size : 10pt; - padding : 0px; - margin : 0px; -} -.btnPalette { - width : 100%; - font-family : ; - font-size : 8pt; - padding : 0px; - margin : 0px; -} - - -/* Style to overwrites JQuery styles */ -.ui-menu .ui-menu-item a { - text-decoration:none; - display:block; - padding:.2em .4em; - line-height:1.5; - zoom:1; - font-weight: normal; - font-family:; - font-size:1em; -} -.ui-widget { - font-family:; - font-size:px; -} -.ui-button { margin-left: -1px; padding-top: 1px; } -.ui-button-icon-only .ui-button-text { height: 8px; } -.ui-button-icon-only .ui-button-text, .ui-button-icons-only .ui-button-text { padding: 2px 0px 6px 0px; } -.ui-button-text -{ - line-height: 1em !important; -} -.ui-autocomplete-input { margin: 0; padding: 1px; } - - -/* ============================================================================== */ -/* CKEditor */ -/* ============================================================================== */ - -.cke_editor table, .cke_editor tr, .cke_editor td -{ - border: 0px solid #FF0000 !important; -} -span.cke_skin_kama { padding: 0 ! important; } -a.cke_dialog_ui_button -{ - font-family: !important; - background-image: url() !important; - background-position: bottom !important; - border: 1px solid #ACBCBB !important; - -moz-border-radius:0px 5px 0px 5px !important; - -webkit-border-radius:0px 5px 0px 5px !important; - border-radius:0px 5px 0px 5px !important; - -moz-box-shadow: 4px 4px 4px #CCC !important; - -webkit-box-shadow: 4px 4px 4px #CCC !important; - box-shadow: 4px 4px 4px #CCC !important; -} -.cke_dialog_ui_hbox_last -{ - vertical-align: bottom ! important; -} - - -/* ============================================================================== */ -/* File upload */ -/* ============================================================================== */ - -.template-upload { - height: 72px !important; -} - - - -/* ============================================================================== */ -/* Test using div instead of tables */ -/* ============================================================================== */ - -div.tablelines { - display: table; - /* Joindre les bords des cellules */ - border-collapse: collapse; - /* Forcer le tableau à prendre la largeur écran */ - width: 100%; -} -div.thead { - height: 24px; - background: #7699A9; - background-image: url(); - background-repeat: repeat-x; - color: #FFFFFF; - font-family: ; - /* border-bottom: 1px solid #FDFFFF; */ - white-space: nowrap; - display: table-row-group; -} -div.tfoot { - display: table-row-group; -} -div.tbody { - display: table-row-group; -} -div.tr { - display: table-row; -} -div.td { - display: table-cell; - text-align: right; - padding: 5px; - width: 10%; -} -div.td.firstcol { - text-align: left; - width: 65%; -} -div.td.endcol { - width: 5px; -} -div.end { - width: auto; -} - -div.dragClass { - color: #002255; -} -div.showDragHandle { - cursor: move; -} -div.tdlineupdown { - background-image: url(theme.'/img/grip.png',1); ?>); - background-repeat: no-repeat; - background-position: center center; - cursor: move; - white-space: nowrap; -} - - - -/* ============================================================================== */ -/* JSGantt */ -/* ============================================================================== */ - -div.scroll2 { - width: px !important; -} - - -/* ============================================================================== */ -/* jFileTree */ -/* ============================================================================== */ - -.ecmfiletree { - width: 99%; - height: 99%; - background: #FFF; - padding-left: 2px; - font-weight: normal; -} - -.fileview { - width: 99%; - height: 99%; - background: #FFF; - padding-left: 2px; - padding-top: 4px; - font-weight: normal; -} - -div.filedirelem { - position: relative; - display: block; - text-decoration: none; -} - -ul.filedirelem { - padding: 2px; - margin: 0 5px 5px 5px; -} -ul.filedirelem li { - list-style: none; - padding: 2px; - margin: 0 10px 20px 10px; - width: 160px; - height: 120px; - text-align: center; - display: block; - float: ; - border: solid 1px #DDDDDD; -} - -ui-layout-north { - -} - -ul.ecmjqft { - font-size: 11px; - line-height: 16px; - padding: 0px; - margin: 0px; - font-weight: normal; -} - -ul.ecmjqft li { - list-style: none; - padding: 0px; - padding-left: 20px; - margin: 0px; - white-space: nowrap; - display: block; -} - -ul.ecmjqft a { - line-height: 16px; - vertical-align: middle; - color: #333; - padding: 0px 0px; - font-weight:normal; - display: inline-block !important; -/* float: left;*/ -} -ul.ecmjqft a:active { - font-weight: bold !important; -} -ul.ecmjqft a:hover { - text-decoration: underline; -} -div.ecmjqft { - vertical-align: middle; - display: inline-block !important; - text-align: right; - position:absolute; - right:8px; -} - -/* Core Styles */ -.ecmjqft LI.directory { font-weight:normal; background: url() left top no-repeat; } -.ecmjqft LI.expanded { font-weight:normal; background: url() left top no-repeat; } -.ecmjqft LI.wait { font-weight:normal; background: url() left top no-repeat; } - - -/* ============================================================================== */ -/* jNotify */ -/* ============================================================================== */ - -.jnotify-container { - position: fixed !important; -global->MAIN_JQUERY_JNOTIFY_BOTTOM)) { ?> - top: auto !important; - bottom: 4px !important; - - text-align: center; - min-width: px; - width: auto; - padding-left: 10px !important; - padding-right: 10px !important; -} - -/* ============================================================================== */ -/* Maps */ -/* ============================================================================== */ - -.divmap, #google-visualization-geomap-embed-0, #google-visualization-geomap-embed-1, google-visualization-geomap-embed-2 { - -moz-box-shadow: 0px 0px 10px #AAA; - -webkit-box-shadow: 0px 0px 10px #AAA; - box-shadow: 0px 0px 10px #AAA; -} - - -/* ============================================================================== */ -/* Datatable */ -/* ============================================================================== */ - -.sorting_asc { background: url('') no-repeat center right; } -.sorting_desc { background: url('') no-repeat center right; } -.sorting_asc_disabled { background: url('') no-repeat center right; } -.sorting_desc_disabled { background: url('') no-repeat center right; } -.paginate_disabled_previous:hover, .paginate_enabled_previous:hover, .paginate_disabled_next:hover, .paginate_enabled_next:hover -{ - font-weight: normal; -} -.paginate_enabled_previous:hover, .paginate_enabled_next:hover -{ - text-decoration: underline !important; -} -.ui-state-disabled, .ui-widget-content .ui-state-disabled, .ui-widget-header .ui-state-disabled, .paginate_button_disabled { - opacity: .35; - filter: Alpha(Opacity=35); - background-image: none; -} - - -/* ============================================================================== */ -/* Select2 */ -/* ============================================================================== */ - -.selectoptiondisabledwhite { - background: #FFFFFF !important; -} - -.select2-choice, -.select2-drop.select2-drop-above.select2-drop-active, -.select2-container-active .select2-choice, -.select2-container-active .select2-choices, -.select2-dropdown-open.select2-drop-above .select2-choice, -.select2-dropdown-open.select2-drop-above .select2-choices, -.select2-container-multi.select2-container-active .select2-choices -{ - border: 1px solid #aaa; -} -.select2-disabled -{ - color: #888; -} -.select2-drop-active -{ - border: 1px solid #aaa; - border-top: none; -} -a span.select2-chosen -{ - font-weight: normal !important; -} -.select2-container .select2-choice { - background-image: none; - height: 24px; - line-height: 24px; -} -.select2-choices .select2-search-choice { - border: 1px solid #aaa !important; -} -.select2-results .select2-no-results, .select2-results .select2-searching, .select2-results .select2-ajax-error, .select2-results .select2-selection-limit -{ - background: #FFFFFF; -} -.select2-container-multi.select2-container-disabled .select2-choices { - background-color: #FFFFFF; - background-image: none; - border: none; - cursor: default; -} -.select2-container-multi .select2-choices .select2-search-choice { - margin-bottom: 3px; -} -/* To emulate select 2 style */ -.select2-container-multi-dolibarr .select2-choices-dolibarr .select2-search-choice-dolibarr { - padding: 2px 5px 1px 5px; - margin: 0 0 2px 3px; - position: relative; - line-height: 13px; - color: #333; - cursor: default; - border: 1px solid #aaaaaa; - border-radius: 3px; - -webkit-box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, 0.05); - box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, 0.05); - background-clip: padding-box; - -webkit-touch-callout: none; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - background-color: #e4e4e4; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#f4f4f4', GradientType=0); - background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), color-stop(100%, #eee)); - background-image: -webkit-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%); - background-image: -moz-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%); - background-image: linear-gradient(to bottom, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%); -} -.select2-container-multi-dolibarr .select2-choices-dolibarr .select2-search-choice-dolibarr a { - font-weight: normal; -} -.select2-container-multi-dolibarr .select2-choices-dolibarr li { - float: left; - list-style: none; -} -.select2-container-multi-dolibarr .select2-choices-dolibarr { - height: auto !important; - height: 1%; - margin: 0; - padding: 0 5px 0 0; - position: relative; - cursor: text; - overflow: hidden; -} - - -/* ============================================================================== */ -/* JMobile */ -/* ============================================================================== */ - -li.ui-li-divider .ui-link { - color: #FFF !important; -} -.ui-btn { - margin: 0.1em 2px -} -a.ui-link, a.ui-link:hover, .ui-btn:hover, span.ui-btn-text:hover, span.ui-btn-inner:hover { - text-decoration: none !important; -} - -.ui-btn-inner { - min-width: .4em; - padding-left: 10px; - padding-right: 10px; - font-size: px; - /* white-space: normal; */ /* Warning, enable this break the truncate feature */ -} -.ui-select .ui-btn-icon-right .ui-btn-inner { - padding-right: 36px; -} -.ui-select .ui-btn-icon-left .ui-btn-inner { - padding-left: 36px; -} - -.fiche .ui-controlgroup { - margin: 0px; - padding-bottom: 0px; -} -div.ui-controlgroup-controls div.tabsElem -{ - margin-top: 2px; -} -div.ui-controlgroup-controls div.tabsElem a -{ - -moz-box-shadow: 0 -3px 6px rgba(0,0,0,.2); - -webkit-box-shadow: 0 -3px 6px rgba(0,0,0,.2); - box-shadow: 0 -3px 6px rgba(0,0,0,.2); - border: none; -} -a.tab span.ui-btn-inner -{ - border: none; - padding: 0; -} - -.ui-body-c { - border: 1px solid #CCC; - text-shadow: none; -} -.ui-link { - color: rgb() !important; -} - -a.ui-link { - word-wrap: break-word; -} - -/* force wrap possible onto field overflow does not works */ -.formdoc .ui-btn-inner -{ - white-space: normal; - overflow: hidden; - text-overflow: hidden; -} - -/* Warning: setting this may make screen not beeing refreshed after a combo selection */ -.ui-body-c { - background: #fff; -} - -div.ui-radio -{ - display: inline-block; -} -.ui-checkbox input, .ui-radio input { - height: auto; - width: auto; - margin: 4px; - position: static; -} -div.ui-checkbox label+input, div.ui-radio label+input { - position: absolute; -} - -.ui-mobile fieldset -{ - padding-bottom: 10px; margin-bottom: 4px; border-bottom: 1px solid #AAAAAA !important; -} - - -ul.ulmenu { - border-radius: 0; - -webkit-border-radius: 0; -} - -.ui-field-contain label.ui-input-text { - vertical-align: middle !important; -} -.ui-mobile fieldset { - border-bottom: none !important; -} -.ui-body-c, .ui-btn-up-c, .ui-btn-hover-c { - border: none !important; -} - -/* Style for first level menu with jmobile */ -.ui-bar-b, .lilevel0 { - background: #7699A9; - background-image: url(); - background-repeat: repeat-x; - - background-image: -o-linear-gradient(bottom, rgba(0,0,0,0.3) 0%, rgba(250,250,250,0.3) 100%); - background-image: -moz-linear-gradient(bottom, rgba(0,0,0,0.3) 0%, rgba(250,250,250,0.3) 100%); - background-image: -webkit-linear-gradient(bottom, rgba(0,0,0,0.3) 0%, rgba(250,250,250,0.3) 100%); - background-image: -ms-linear-gradient(bottom, rgba(0,0,0,0.3) 0%, rgba(250,250,250,0.3) 100%); - background-image: linear-gradient(bottom, rgba(0,0,0,0.3) 0%, rgba(250,250,250,0.3) 100%); - font-weight: bold; - - color: #FFF !important; -} -.alilevel0 { - color: #FFF !important; - text-shadow: 1px 0px 1px #; -} -.alilevel1 { - color: #FFF !important; - text-shadow: 1px 0px 1px #; -} -.lilevel1 { - background-image: -webkit-gradient(linear,left top,left bottom,from( #eee ),to( #e1e1e1 )) !important; - background-image: -webkit-linear-gradient( #eee,#e1e1e1 ) !important; - background-image: -moz-linear-gradient( #eee,#e1e1e1 ) !important; - background-image: -ms-linear-gradient( #eee,#e1e1e1 ) !important; - background-image: -o-linear-gradient( #eee,#e1e1e1 ) !important; - background-image: linear-gradient( #eee,#e1e1e1 ) !important; -} -.lilevel2 -{ - padding-left: 22px; -} -.lilevel3 -{ - padding-left: 54px; -} - -close(); diff --git a/htdocs/theme/auguria/thumb.png b/htdocs/theme/auguria/thumb.png deleted file mode 100644 index 88cb0e849a2..00000000000 Binary files a/htdocs/theme/auguria/thumb.png and /dev/null differ diff --git a/htdocs/theme/auguria/tpl/README b/htdocs/theme/auguria/tpl/README deleted file mode 100644 index d3bc4b4679f..00000000000 --- a/htdocs/theme/auguria/tpl/README +++ /dev/null @@ -1,3 +0,0 @@ -README (english) - -This directory is used to store custom templates. (system core and modules) \ No newline at end of file diff --git a/htdocs/theme/auguria/tpl/index.html b/htdocs/theme/auguria/tpl/index.html deleted file mode 100644 index e69de29bb2d..00000000000 diff --git a/htdocs/theme/bureau2crea/AUTHOR b/htdocs/theme/bureau2crea/AUTHOR deleted file mode 100644 index d75b99eb570..00000000000 --- a/htdocs/theme/bureau2crea/AUTHOR +++ /dev/null @@ -1 +0,0 @@ -2010-2011 Emmanuel Chauve \ No newline at end of file diff --git a/htdocs/theme/bureau2crea/ckeditor/config.js b/htdocs/theme/bureau2crea/ckeditor/config.js deleted file mode 100644 index 97f1c0a0b62..00000000000 --- a/htdocs/theme/bureau2crea/ckeditor/config.js +++ /dev/null @@ -1,92 +0,0 @@ -/* -Copyright (c) 2003-2010, CKSource - Frederico Knabben. All rights reserved. -For licensing, see LICENSE.html or http://ckeditor.com/license -*/ - -CKEDITOR.editorConfig = function( config ) -{ - // Define changes to default configuration here. - // http://docs.cksource.com/CKEditor_3.x/Developers_Guide - // http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.config.html - config.enterMode = CKEDITOR.ENTER_BR; - config.resize_enabled = false; - //config.resize_maxHeight = 3000; - //config.resize_maxWidth = 3000; - //config.height = '300px'; - //config.resize_dir = 'vertical'; // horizontal, vertical, both - config.removePlugins = 'elementspath,save'; // config.removePlugins = 'elementspath,save,font'; - config.removeDialogTabs = 'flash:advanced'; // config.removeDialogTabs = 'flash:advanced;image:Link'; - config.protectedSource.push( /<\?[\s\S]*?\?>/g ); // Prevent PHP Code to be formatted - //config.menu_groups = 'clipboard,table,anchor,link,image'; // for context menu 'clipboard,form,tablecell,tablecellproperties,tablerow,tablecolumn,table,anchor,link,image,flash,checkbox,radio,textfield,hiddenfield,imagebutton,button,select,textarea' - //config.language = 'de'; - //config.defaultLanguage = 'en'; - //config.contentsLanguage = 'fr'; - config.fullPage = false; // Not a full html page string, just part of it - config.dialog_backgroundCoverColor = 'rgb(255, 254, 253)'; - //config.contentsCss = '/css/mysitestyles.css'; - config.image_previewText=' '; // Must no be empty - - config.toolbar_Full = - [ - ['Source','-','Save','NewPage','Preview','-','Templates'], - ['Cut','Copy','Paste','PasteText','PasteFromWord','-','Print', 'SpellChecker', 'Scayt'], - ['Undo','Redo','-','Find','Replace','-','SelectAll','RemoveFormat'], - ['Form', 'Checkbox', 'Radio', 'TextField', 'Textarea', 'Select', 'Button', 'ImageButton', 'HiddenField'], - '/', - ['Bold','Italic','Underline','Strike','-','Subscript','Superscript'], - ['NumberedList','BulletedList','-','Outdent','Indent','Blockquote','CreateDiv'], - ['JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock'], - ['BidiLtr', 'BidiRtl'], - ['Link','Unlink','Anchor'], - ['Image','Flash','Table','HorizontalRule','Smiley','SpecialChar','PageBreak','Iframe'], - '/', - ['Styles','Format','Font','FontSize'], - ['TextColor','BGColor'], - ['Maximize', 'ShowBlocks','-','About'] - ]; - - // Used for mailing fields - config.toolbar_dolibarr_mailings = - [ - ['Source','Maximize'], - ['Cut','Copy','Paste','-','SpellChecker'], - ['Undo','Redo','-','Find','Replace'], - ['Format','Font','FontSize'], - ['Bold','Italic','Underline','Strike','Subscript','Superscript','-','TextColor','RemoveFormat'], - ['NumberedList','BulletedList','Outdent','Indent','CreateDiv'], - ['JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock'], - ['Link','Unlink','Anchor','Image','Table','HorizontalRule','SpecialChar'] - ]; - - // Used for notes fields - config.toolbar_dolibarr_notes = - [ - ['Source','Maximize'], - ['Cut','Copy','Paste','-','SpellChecker'], - ['Undo','Redo','-','Find','Replace'], - ['Format','Font','FontSize'], - ['Bold','Italic','Underline','Strike','Subscript','Superscript','-','TextColor','RemoveFormat'], - ['NumberedList','BulletedList','Outdent','Indent'], - ['JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock'], - ['Link','Unlink','Image','Table','HorizontalRule','SpecialChar'] - ]; - - // Used for details lines - config.toolbar_dolibarr_details = - [ - ['Source','Maximize'], - ['Cut','Copy','Paste','-','SpellChecker'], - ['Font','FontSize'], - ['Bold','Italic','Underline','Strike','Subscript','Superscript','-','TextColor','RemoveFormat'], - ['NumberedList','BulletedList','Outdent','Indent'], - ['JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock'], - ['Link','Unlink','SpecialChar'] - ]; - - // Used for mailing fields - config.toolbar_dolibarr_readonly = - [ - ['Source','Maximize'], - ['Find'] - ]; -}; diff --git a/htdocs/theme/bureau2crea/ckeditor/index.html b/htdocs/theme/bureau2crea/ckeditor/index.html deleted file mode 100644 index e69de29bb2d..00000000000 diff --git a/htdocs/theme/bureau2crea/graph-color.php b/htdocs/theme/bureau2crea/graph-color.php deleted file mode 100644 index c95f9f7b42d..00000000000 --- a/htdocs/theme/bureau2crea/graph-color.php +++ /dev/null @@ -1,31 +0,0 @@ - - * Copyright (C) 2004-2007 Laurent Destailleur - * Copyright (C) 2010-2011 Emmanuel Chauve - * - * 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 - * the Free Software Foundation; either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ - -/** - * \file htdocs/theme/bureau2crea/graph-color.php - * \brief File to declare colors to use to build graphics with theme Bure2Crea - * \ingroup core - */ - -global $theme_bordercolor, $theme_datacolor, $theme_bgcolor, $theme_bgcoloronglet; -$theme_bordercolor = array(235,235,224); -$theme_datacolor = array(array(120,130,150), array(200,160,180), array(190,190,220)); -$theme_bgcolor = array(hexdec('F4'),hexdec('F4'),hexdec('F4')); -$theme_bgcoloronglet = array(hexdec('FF'),hexdec('FF'),hexdec('FF')); - diff --git a/htdocs/theme/bureau2crea/img/1downarrow.png b/htdocs/theme/bureau2crea/img/1downarrow.png deleted file mode 100644 index 316fe442e2b..00000000000 Binary files a/htdocs/theme/bureau2crea/img/1downarrow.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/1downarrow_selected.png b/htdocs/theme/bureau2crea/img/1downarrow_selected.png deleted file mode 100644 index 082a545addb..00000000000 Binary files a/htdocs/theme/bureau2crea/img/1downarrow_selected.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/1leftarrow.png b/htdocs/theme/bureau2crea/img/1leftarrow.png deleted file mode 100644 index 026a4cfff80..00000000000 Binary files a/htdocs/theme/bureau2crea/img/1leftarrow.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/1leftarrow_selected.png b/htdocs/theme/bureau2crea/img/1leftarrow_selected.png deleted file mode 100644 index 4835cf8f508..00000000000 Binary files a/htdocs/theme/bureau2crea/img/1leftarrow_selected.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/1rightarrow.png b/htdocs/theme/bureau2crea/img/1rightarrow.png deleted file mode 100644 index 54fe3dcf366..00000000000 Binary files a/htdocs/theme/bureau2crea/img/1rightarrow.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/1rightarrow_selected.png b/htdocs/theme/bureau2crea/img/1rightarrow_selected.png deleted file mode 100644 index 2cd1136c77a..00000000000 Binary files a/htdocs/theme/bureau2crea/img/1rightarrow_selected.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/1uparrow.png b/htdocs/theme/bureau2crea/img/1uparrow.png deleted file mode 100644 index e4f7b42acb6..00000000000 Binary files a/htdocs/theme/bureau2crea/img/1uparrow.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/1uparrow_selected.png b/htdocs/theme/bureau2crea/img/1uparrow_selected.png deleted file mode 100644 index d19fae7a61d..00000000000 Binary files a/htdocs/theme/bureau2crea/img/1uparrow_selected.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/2.png b/htdocs/theme/bureau2crea/img/2.png deleted file mode 100644 index f592543dd8e..00000000000 Binary files a/htdocs/theme/bureau2crea/img/2.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/addfile.png b/htdocs/theme/bureau2crea/img/addfile.png deleted file mode 100644 index 1cb7af0ad8a..00000000000 Binary files a/htdocs/theme/bureau2crea/img/addfile.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/banner_02.jpg b/htdocs/theme/bureau2crea/img/banner_02.jpg deleted file mode 100644 index 81635fd2a59..00000000000 Binary files a/htdocs/theme/bureau2crea/img/banner_02.jpg and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/bg-bas-rubrique.png b/htdocs/theme/bureau2crea/img/bg-bas-rubrique.png deleted file mode 100644 index d2fbe3a7a13..00000000000 Binary files a/htdocs/theme/bureau2crea/img/bg-bas-rubrique.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/bg-rubrique.png b/htdocs/theme/bureau2crea/img/bg-rubrique.png deleted file mode 100644 index 9abf1dc1459..00000000000 Binary files a/htdocs/theme/bureau2crea/img/bg-rubrique.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/bg-titre-rubrique.png b/htdocs/theme/bureau2crea/img/bg-titre-rubrique.png deleted file mode 100644 index ad6484fcbe9..00000000000 Binary files a/htdocs/theme/bureau2crea/img/bg-titre-rubrique.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/bg_btnBlue.jpg b/htdocs/theme/bureau2crea/img/bg_btnBlue.jpg deleted file mode 100644 index f24b76ee016..00000000000 Binary files a/htdocs/theme/bureau2crea/img/bg_btnBlue.jpg and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/bg_btnGreen.jpg b/htdocs/theme/bureau2crea/img/bg_btnGreen.jpg deleted file mode 100644 index eae9fb1217b..00000000000 Binary files a/htdocs/theme/bureau2crea/img/bg_btnGreen.jpg and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/bg_btnGrey.jpg b/htdocs/theme/bureau2crea/img/bg_btnGrey.jpg deleted file mode 100644 index 48911bf6f13..00000000000 Binary files a/htdocs/theme/bureau2crea/img/bg_btnGrey.jpg and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/bg_btnRed.jpg b/htdocs/theme/bureau2crea/img/bg_btnRed.jpg deleted file mode 100644 index c8c7f55c85d..00000000000 Binary files a/htdocs/theme/bureau2crea/img/bg_btnRed.jpg and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/bg_btn_blue.jpg b/htdocs/theme/bureau2crea/img/bg_btn_blue.jpg deleted file mode 100644 index 563cebdc3e7..00000000000 Binary files a/htdocs/theme/bureau2crea/img/bg_btn_blue.jpg and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/bg_btn_green.jpg b/htdocs/theme/bureau2crea/img/bg_btn_green.jpg deleted file mode 100644 index d29a1bb0d61..00000000000 Binary files a/htdocs/theme/bureau2crea/img/bg_btn_green.jpg and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/bg_btn_red.jpg b/htdocs/theme/bureau2crea/img/bg_btn_red.jpg deleted file mode 100644 index fb11e4f2daf..00000000000 Binary files a/htdocs/theme/bureau2crea/img/bg_btn_red.jpg and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/bg_centerBlock-title.jpg b/htdocs/theme/bureau2crea/img/bg_centerBlock-title.jpg deleted file mode 100644 index 354fb66cb5e..00000000000 Binary files a/htdocs/theme/bureau2crea/img/bg_centerBlock-title.jpg and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/bg_centerBlock-title2.jpg b/htdocs/theme/bureau2crea/img/bg_centerBlock-title2.jpg deleted file mode 100644 index d3f196e469d..00000000000 Binary files a/htdocs/theme/bureau2crea/img/bg_centerBlock-title2.jpg and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/bg_connectionBox.jpg b/htdocs/theme/bureau2crea/img/bg_connectionBox.jpg deleted file mode 100644 index 946a51b63a8..00000000000 Binary files a/htdocs/theme/bureau2crea/img/bg_connectionBox.jpg and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/bg_inside.gif b/htdocs/theme/bureau2crea/img/bg_inside.gif deleted file mode 100644 index e2a4f5c5841..00000000000 Binary files a/htdocs/theme/bureau2crea/img/bg_inside.gif and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/bg_leftCategorie.jpg b/htdocs/theme/bureau2crea/img/bg_leftCategorie.jpg deleted file mode 100644 index f152d6d083f..00000000000 Binary files a/htdocs/theme/bureau2crea/img/bg_leftCategorie.jpg and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/bg_leftMenu.jpg b/htdocs/theme/bureau2crea/img/bg_leftMenu.jpg deleted file mode 100644 index 0fc515742a3..00000000000 Binary files a/htdocs/theme/bureau2crea/img/bg_leftMenu.jpg and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/bg_mainNav.jpg b/htdocs/theme/bureau2crea/img/bg_mainNav.jpg deleted file mode 100644 index 15387ee476b..00000000000 Binary files a/htdocs/theme/bureau2crea/img/bg_mainNav.jpg and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/bg_navHorizontal.jpg b/htdocs/theme/bureau2crea/img/bg_navHorizontal.jpg deleted file mode 100644 index ad42dee2ee9..00000000000 Binary files a/htdocs/theme/bureau2crea/img/bg_navHorizontal.jpg and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/bg_other_table.jpg b/htdocs/theme/bureau2crea/img/bg_other_table.jpg deleted file mode 100644 index f4409cbaae5..00000000000 Binary files a/htdocs/theme/bureau2crea/img/bg_other_table.jpg and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/bg_ssmenu_btnD.jpg b/htdocs/theme/bureau2crea/img/bg_ssmenu_btnD.jpg deleted file mode 100644 index fd09bb40da0..00000000000 Binary files a/htdocs/theme/bureau2crea/img/bg_ssmenu_btnD.jpg and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/bg_ssmenu_btnG.jpg b/htdocs/theme/bureau2crea/img/bg_ssmenu_btnG.jpg deleted file mode 100644 index ca483b7b295..00000000000 Binary files a/htdocs/theme/bureau2crea/img/bg_ssmenu_btnG.jpg and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/bg_ssmenusel_btnD.jpg b/htdocs/theme/bureau2crea/img/bg_ssmenusel_btnD.jpg deleted file mode 100644 index 1e41b87c6ea..00000000000 Binary files a/htdocs/theme/bureau2crea/img/bg_ssmenusel_btnD.jpg and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/bg_ssmenusel_btnG.jpg b/htdocs/theme/bureau2crea/img/bg_ssmenusel_btnG.jpg deleted file mode 100644 index 3df9a20bcd5..00000000000 Binary files a/htdocs/theme/bureau2crea/img/bg_ssmenusel_btnG.jpg and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/bg_tmenu.jpg b/htdocs/theme/bureau2crea/img/bg_tmenu.jpg deleted file mode 100644 index 985311e8a1e..00000000000 Binary files a/htdocs/theme/bureau2crea/img/bg_tmenu.jpg and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/bg_tmenu_btnD.jpg b/htdocs/theme/bureau2crea/img/bg_tmenu_btnD.jpg deleted file mode 100644 index fc064ef4dcf..00000000000 Binary files a/htdocs/theme/bureau2crea/img/bg_tmenu_btnD.jpg and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/bg_tmenu_btnG.jpg b/htdocs/theme/bureau2crea/img/bg_tmenu_btnG.jpg deleted file mode 100644 index 9c3342222aa..00000000000 Binary files a/htdocs/theme/bureau2crea/img/bg_tmenu_btnG.jpg and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/bg_tmenusel_btnD.jpg b/htdocs/theme/bureau2crea/img/bg_tmenusel_btnD.jpg deleted file mode 100644 index b5507043898..00000000000 Binary files a/htdocs/theme/bureau2crea/img/bg_tmenusel_btnD.jpg and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/bg_tmenusel_btnG.jpg b/htdocs/theme/bureau2crea/img/bg_tmenusel_btnG.jpg deleted file mode 100644 index 317dde2f556..00000000000 Binary files a/htdocs/theme/bureau2crea/img/bg_tmenusel_btnG.jpg and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/bg_vmenu.jpg b/htdocs/theme/bureau2crea/img/bg_vmenu.jpg deleted file mode 100644 index 84d883d8d69..00000000000 Binary files a/htdocs/theme/bureau2crea/img/bg_vmenu.jpg and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/bg_working_table.jpg b/htdocs/theme/bureau2crea/img/bg_working_table.jpg deleted file mode 100644 index bb2c66aded3..00000000000 Binary files a/htdocs/theme/bureau2crea/img/bg_working_table.jpg and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/body_bg.jpg b/htdocs/theme/bureau2crea/img/body_bg.jpg deleted file mode 100644 index 0480bfdc738..00000000000 Binary files a/htdocs/theme/bureau2crea/img/body_bg.jpg and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/bouton/index.html b/htdocs/theme/bureau2crea/img/bouton/index.html deleted file mode 100644 index e69de29bb2d..00000000000 diff --git a/htdocs/theme/bureau2crea/img/bouton/menu_l_title_bg.png b/htdocs/theme/bureau2crea/img/bouton/menu_l_title_bg.png deleted file mode 100644 index 10e03744ace..00000000000 Binary files a/htdocs/theme/bureau2crea/img/bouton/menu_l_title_bg.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/bouton/round_black_tr.png b/htdocs/theme/bureau2crea/img/bouton/round_black_tr.png deleted file mode 100644 index f0ea7d10c5c..00000000000 Binary files a/htdocs/theme/bureau2crea/img/bouton/round_black_tr.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/button_bg.png b/htdocs/theme/bureau2crea/img/button_bg.png deleted file mode 100644 index 7e8a806b28f..00000000000 Binary files a/htdocs/theme/bureau2crea/img/button_bg.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/button_edit.png b/htdocs/theme/bureau2crea/img/button_edit.png deleted file mode 100644 index 894b4cfd78e..00000000000 Binary files a/htdocs/theme/bureau2crea/img/button_edit.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/calc.png b/htdocs/theme/bureau2crea/img/calc.png deleted file mode 100644 index 5e6471408d8..00000000000 Binary files a/htdocs/theme/bureau2crea/img/calc.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/calendar.png b/htdocs/theme/bureau2crea/img/calendar.png deleted file mode 100644 index bbe6c27f041..00000000000 Binary files a/htdocs/theme/bureau2crea/img/calendar.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/call.png b/htdocs/theme/bureau2crea/img/call.png deleted file mode 100644 index ddfc1b7bd90..00000000000 Binary files a/htdocs/theme/bureau2crea/img/call.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/call_out.png b/htdocs/theme/bureau2crea/img/call_out.png deleted file mode 100644 index b5a22eb827b..00000000000 Binary files a/htdocs/theme/bureau2crea/img/call_out.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/close.png b/htdocs/theme/bureau2crea/img/close.png deleted file mode 100644 index ec4338e8bca..00000000000 Binary files a/htdocs/theme/bureau2crea/img/close.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/close_title.png b/htdocs/theme/bureau2crea/img/close_title.png deleted file mode 100644 index bebb74d9861..00000000000 Binary files a/htdocs/theme/bureau2crea/img/close_title.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/cron.png b/htdocs/theme/bureau2crea/img/cron.png deleted file mode 100644 index ddfe62e7b24..00000000000 Binary files a/htdocs/theme/bureau2crea/img/cron.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/delete.png b/htdocs/theme/bureau2crea/img/delete.png deleted file mode 100644 index 8ad73597be7..00000000000 Binary files a/htdocs/theme/bureau2crea/img/delete.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/detail.png b/htdocs/theme/bureau2crea/img/detail.png deleted file mode 100644 index 05562bef842..00000000000 Binary files a/htdocs/theme/bureau2crea/img/detail.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/disable.png b/htdocs/theme/bureau2crea/img/disable.png deleted file mode 100644 index f8c84994d47..00000000000 Binary files a/htdocs/theme/bureau2crea/img/disable.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/dolibarr_logo.png b/htdocs/theme/bureau2crea/img/dolibarr_logo.png deleted file mode 100644 index 9ce642503db..00000000000 Binary files a/htdocs/theme/bureau2crea/img/dolibarr_logo.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/edit.png b/htdocs/theme/bureau2crea/img/edit.png deleted file mode 100644 index 0f5fa5de31f..00000000000 Binary files a/htdocs/theme/bureau2crea/img/edit.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/edit_add.png b/htdocs/theme/bureau2crea/img/edit_add.png deleted file mode 100644 index ae205e9d770..00000000000 Binary files a/htdocs/theme/bureau2crea/img/edit_add.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/edit_remove.png b/htdocs/theme/bureau2crea/img/edit_remove.png deleted file mode 100644 index bc4bdb360fa..00000000000 Binary files a/htdocs/theme/bureau2crea/img/edit_remove.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/editdelete.png b/htdocs/theme/bureau2crea/img/editdelete.png deleted file mode 100644 index f8c84994d47..00000000000 Binary files a/htdocs/theme/bureau2crea/img/editdelete.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/error.png b/htdocs/theme/bureau2crea/img/error.png deleted file mode 100644 index f41dd8a3bc0..00000000000 Binary files a/htdocs/theme/bureau2crea/img/error.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/favicon.ico b/htdocs/theme/bureau2crea/img/favicon.ico deleted file mode 100644 index b93a86747d6..00000000000 Binary files a/htdocs/theme/bureau2crea/img/favicon.ico and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/file.png b/htdocs/theme/bureau2crea/img/file.png deleted file mode 100644 index 73c66e9b2b3..00000000000 Binary files a/htdocs/theme/bureau2crea/img/file.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/filenew.png b/htdocs/theme/bureau2crea/img/filenew.png deleted file mode 100644 index 8680cce82bf..00000000000 Binary files a/htdocs/theme/bureau2crea/img/filenew.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/filter.png b/htdocs/theme/bureau2crea/img/filter.png deleted file mode 100644 index 917715107bd..00000000000 Binary files a/htdocs/theme/bureau2crea/img/filter.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/folder-open.png b/htdocs/theme/bureau2crea/img/folder-open.png deleted file mode 100644 index 1db8369b3d5..00000000000 Binary files a/htdocs/theme/bureau2crea/img/folder-open.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/folder.png b/htdocs/theme/bureau2crea/img/folder.png deleted file mode 100644 index 04a24af2e22..00000000000 Binary files a/htdocs/theme/bureau2crea/img/folder.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/gradient.gif b/htdocs/theme/bureau2crea/img/gradient.gif deleted file mode 100644 index d9d7c1086cd..00000000000 Binary files a/htdocs/theme/bureau2crea/img/gradient.gif and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/grip.png b/htdocs/theme/bureau2crea/img/grip.png deleted file mode 100644 index 8053007e9dd..00000000000 Binary files a/htdocs/theme/bureau2crea/img/grip.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/grip_title.png b/htdocs/theme/bureau2crea/img/grip_title.png deleted file mode 100644 index d6ecce335cb..00000000000 Binary files a/htdocs/theme/bureau2crea/img/grip_title.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/headbg.jpg b/htdocs/theme/bureau2crea/img/headbg.jpg deleted file mode 100644 index 160821354cc..00000000000 Binary files a/htdocs/theme/bureau2crea/img/headbg.jpg and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/headbg2.jpg b/htdocs/theme/bureau2crea/img/headbg2.jpg deleted file mode 100644 index 0bc44f0ea99..00000000000 Binary files a/htdocs/theme/bureau2crea/img/headbg2.jpg and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/help.png b/htdocs/theme/bureau2crea/img/help.png deleted file mode 100644 index 12e6cd655d6..00000000000 Binary files a/htdocs/theme/bureau2crea/img/help.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/helpdoc.png b/htdocs/theme/bureau2crea/img/helpdoc.png deleted file mode 100644 index 8cd950e7be1..00000000000 Binary files a/htdocs/theme/bureau2crea/img/helpdoc.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/high.png b/htdocs/theme/bureau2crea/img/high.png deleted file mode 100644 index c0eaee6542f..00000000000 Binary files a/htdocs/theme/bureau2crea/img/high.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/history.png b/htdocs/theme/bureau2crea/img/history.png deleted file mode 100644 index 0fa4283476b..00000000000 Binary files a/htdocs/theme/bureau2crea/img/history.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/indent1.png b/htdocs/theme/bureau2crea/img/indent1.png deleted file mode 100644 index 09695ac754f..00000000000 Binary files a/htdocs/theme/bureau2crea/img/indent1.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/index.html b/htdocs/theme/bureau2crea/img/index.html deleted file mode 100644 index e69de29bb2d..00000000000 diff --git a/htdocs/theme/bureau2crea/img/info.png b/htdocs/theme/bureau2crea/img/info.png deleted file mode 100644 index db8ba04fac5..00000000000 Binary files a/htdocs/theme/bureau2crea/img/info.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/lock.png b/htdocs/theme/bureau2crea/img/lock.png deleted file mode 100644 index 3d99cf1eaef..00000000000 Binary files a/htdocs/theme/bureau2crea/img/lock.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/login_background.png b/htdocs/theme/bureau2crea/img/login_background.png deleted file mode 100644 index facc2c6f442..00000000000 Binary files a/htdocs/theme/bureau2crea/img/login_background.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/logout.png b/htdocs/theme/bureau2crea/img/logout.png deleted file mode 100644 index 84bd94e7b81..00000000000 Binary files a/htdocs/theme/bureau2crea/img/logout.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/mainlevel.gif b/htdocs/theme/bureau2crea/img/mainlevel.gif deleted file mode 100644 index 548526442a3..00000000000 Binary files a/htdocs/theme/bureau2crea/img/mainlevel.gif and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/menus/agenda.png b/htdocs/theme/bureau2crea/img/menus/agenda.png deleted file mode 100644 index 866037c9b54..00000000000 Binary files a/htdocs/theme/bureau2crea/img/menus/agenda.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/menus/commercial.png b/htdocs/theme/bureau2crea/img/menus/commercial.png deleted file mode 100644 index efc1b3f0608..00000000000 Binary files a/htdocs/theme/bureau2crea/img/menus/commercial.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/menus/company.png b/htdocs/theme/bureau2crea/img/menus/company.png deleted file mode 100644 index 95e5db62046..00000000000 Binary files a/htdocs/theme/bureau2crea/img/menus/company.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/menus/ecm.png b/htdocs/theme/bureau2crea/img/menus/ecm.png deleted file mode 100644 index a9a975219cd..00000000000 Binary files a/htdocs/theme/bureau2crea/img/menus/ecm.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/menus/footer_bg.jpg b/htdocs/theme/bureau2crea/img/menus/footer_bg.jpg deleted file mode 100644 index 7319c16f9af..00000000000 Binary files a/htdocs/theme/bureau2crea/img/menus/footer_bg.jpg and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/menus/generic1.png b/htdocs/theme/bureau2crea/img/menus/generic1.png deleted file mode 100644 index 0222dd8c81d..00000000000 Binary files a/htdocs/theme/bureau2crea/img/menus/generic1.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/menus/generic2.png b/htdocs/theme/bureau2crea/img/menus/generic2.png deleted file mode 100644 index 86847858c4a..00000000000 Binary files a/htdocs/theme/bureau2crea/img/menus/generic2.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/menus/generic3.png b/htdocs/theme/bureau2crea/img/menus/generic3.png deleted file mode 100644 index e22f73aa6f9..00000000000 Binary files a/htdocs/theme/bureau2crea/img/menus/generic3.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/menus/generic4.png b/htdocs/theme/bureau2crea/img/menus/generic4.png deleted file mode 100644 index 29a3d7fed67..00000000000 Binary files a/htdocs/theme/bureau2crea/img/menus/generic4.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/menus/globe.png b/htdocs/theme/bureau2crea/img/menus/globe.png deleted file mode 100644 index 073348a5246..00000000000 Binary files a/htdocs/theme/bureau2crea/img/menus/globe.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/menus/home.png b/htdocs/theme/bureau2crea/img/menus/home.png deleted file mode 100644 index f4d0d917d1f..00000000000 Binary files a/htdocs/theme/bureau2crea/img/menus/home.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/menus/index.html b/htdocs/theme/bureau2crea/img/menus/index.html deleted file mode 100644 index e69de29bb2d..00000000000 diff --git a/htdocs/theme/bureau2crea/img/menus/lr_bg.gif b/htdocs/theme/bureau2crea/img/menus/lr_bg.gif deleted file mode 100644 index e6644e4685f..00000000000 Binary files a/htdocs/theme/bureau2crea/img/menus/lr_bg.gif and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/menus/mail.png b/htdocs/theme/bureau2crea/img/menus/mail.png deleted file mode 100644 index d715ec7810c..00000000000 Binary files a/htdocs/theme/bureau2crea/img/menus/mail.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/menus/members.png b/htdocs/theme/bureau2crea/img/menus/members.png deleted file mode 100644 index 4b703f42cd7..00000000000 Binary files a/htdocs/theme/bureau2crea/img/menus/members.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/menus/moduletable_th_bg.gif b/htdocs/theme/bureau2crea/img/menus/moduletable_th_bg.gif deleted file mode 100644 index 0901e294b1f..00000000000 Binary files a/htdocs/theme/bureau2crea/img/menus/moduletable_th_bg.gif and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/menus/money.png b/htdocs/theme/bureau2crea/img/menus/money.png deleted file mode 100644 index 50166e0f74b..00000000000 Binary files a/htdocs/theme/bureau2crea/img/menus/money.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/menus/pointofsale.png b/htdocs/theme/bureau2crea/img/menus/pointofsale.png deleted file mode 100644 index 748ec41b1e6..00000000000 Binary files a/htdocs/theme/bureau2crea/img/menus/pointofsale.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/menus/products.png b/htdocs/theme/bureau2crea/img/menus/products.png deleted file mode 100644 index 6f5f45269ee..00000000000 Binary files a/htdocs/theme/bureau2crea/img/menus/products.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/menus/project.png b/htdocs/theme/bureau2crea/img/menus/project.png deleted file mode 100644 index 882235d2cd3..00000000000 Binary files a/htdocs/theme/bureau2crea/img/menus/project.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/menus/tab_background.png b/htdocs/theme/bureau2crea/img/menus/tab_background.png deleted file mode 100644 index 6edd65003e0..00000000000 Binary files a/htdocs/theme/bureau2crea/img/menus/tab_background.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/menus/table_bg.gif b/htdocs/theme/bureau2crea/img/menus/table_bg.gif deleted file mode 100644 index bd6bf5c1036..00000000000 Binary files a/htdocs/theme/bureau2crea/img/menus/table_bg.gif and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/menus/tools.png b/htdocs/theme/bureau2crea/img/menus/tools.png deleted file mode 100644 index c053f660ebf..00000000000 Binary files a/htdocs/theme/bureau2crea/img/menus/tools.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/menus/topmenu_bg.gif b/htdocs/theme/bureau2crea/img/menus/topmenu_bg.gif deleted file mode 100644 index 48cfe1a00ae..00000000000 Binary files a/htdocs/theme/bureau2crea/img/menus/topmenu_bg.gif and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/menus/topmenu_bg_over.gif b/htdocs/theme/bureau2crea/img/menus/topmenu_bg_over.gif deleted file mode 100644 index 2d03af87e67..00000000000 Binary files a/htdocs/theme/bureau2crea/img/menus/topmenu_bg_over.gif and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/menus/topmenu_left.gif b/htdocs/theme/bureau2crea/img/menus/topmenu_left.gif deleted file mode 100644 index 0f08aa2a2a7..00000000000 Binary files a/htdocs/theme/bureau2crea/img/menus/topmenu_left.gif and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/menus/topmenu_right.gif b/htdocs/theme/bureau2crea/img/menus/topmenu_right.gif deleted file mode 100644 index cc7dd51652d..00000000000 Binary files a/htdocs/theme/bureau2crea/img/menus/topmenu_right.gif and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/menus/toppath.gif b/htdocs/theme/bureau2crea/img/menus/toppath.gif deleted file mode 100644 index 2180d924dee..00000000000 Binary files a/htdocs/theme/bureau2crea/img/menus/toppath.gif and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/menus/trtitle.png b/htdocs/theme/bureau2crea/img/menus/trtitle.png deleted file mode 100644 index e1841a4f7a7..00000000000 Binary files a/htdocs/theme/bureau2crea/img/menus/trtitle.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/money.png b/htdocs/theme/bureau2crea/img/money.png deleted file mode 100644 index 50166e0f74b..00000000000 Binary files a/htdocs/theme/bureau2crea/img/money.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/nav.jpg b/htdocs/theme/bureau2crea/img/nav.jpg deleted file mode 100644 index c4f28779dfe..00000000000 Binary files a/htdocs/theme/bureau2crea/img/nav.jpg and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/next.png b/htdocs/theme/bureau2crea/img/next.png deleted file mode 100644 index aff8f9e2ca5..00000000000 Binary files a/htdocs/theme/bureau2crea/img/next.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/object_account.png b/htdocs/theme/bureau2crea/img/object_account.png deleted file mode 100644 index 82f72c25740..00000000000 Binary files a/htdocs/theme/bureau2crea/img/object_account.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/object_accounting.png b/htdocs/theme/bureau2crea/img/object_accounting.png deleted file mode 100644 index b5600221f02..00000000000 Binary files a/htdocs/theme/bureau2crea/img/object_accounting.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/object_action.png b/htdocs/theme/bureau2crea/img/object_action.png deleted file mode 100644 index 9844c2dfa9b..00000000000 Binary files a/htdocs/theme/bureau2crea/img/object_action.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/object_action_rdv.png b/htdocs/theme/bureau2crea/img/object_action_rdv.png deleted file mode 100644 index 25edfa85b45..00000000000 Binary files a/htdocs/theme/bureau2crea/img/object_action_rdv.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/object_address.png b/htdocs/theme/bureau2crea/img/object_address.png deleted file mode 100644 index a4b878966dc..00000000000 Binary files a/htdocs/theme/bureau2crea/img/object_address.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/object_barcode.png b/htdocs/theme/bureau2crea/img/object_barcode.png deleted file mode 100644 index 9241513f0b8..00000000000 Binary files a/htdocs/theme/bureau2crea/img/object_barcode.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/object_bill.png b/htdocs/theme/bureau2crea/img/object_bill.png deleted file mode 100644 index 277b6ab3233..00000000000 Binary files a/htdocs/theme/bureau2crea/img/object_bill.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/object_billa.png b/htdocs/theme/bureau2crea/img/object_billa.png deleted file mode 100644 index 2589f34bfed..00000000000 Binary files a/htdocs/theme/bureau2crea/img/object_billa.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/object_billd.png b/htdocs/theme/bureau2crea/img/object_billd.png deleted file mode 100644 index 201dc9057ae..00000000000 Binary files a/htdocs/theme/bureau2crea/img/object_billd.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/object_billr.png b/htdocs/theme/bureau2crea/img/object_billr.png deleted file mode 100644 index 18b8701685e..00000000000 Binary files a/htdocs/theme/bureau2crea/img/object_billr.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/object_book.png b/htdocs/theme/bureau2crea/img/object_book.png deleted file mode 100644 index cbbc05e8e72..00000000000 Binary files a/htdocs/theme/bureau2crea/img/object_book.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/object_bookmark.png b/htdocs/theme/bureau2crea/img/object_bookmark.png deleted file mode 100644 index a78697bdc3b..00000000000 Binary files a/htdocs/theme/bureau2crea/img/object_bookmark.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/object_calendar.png b/htdocs/theme/bureau2crea/img/object_calendar.png deleted file mode 100644 index c647b7f998d..00000000000 Binary files a/htdocs/theme/bureau2crea/img/object_calendar.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/object_calendarday.png b/htdocs/theme/bureau2crea/img/object_calendarday.png deleted file mode 100644 index 8cda1f3f220..00000000000 Binary files a/htdocs/theme/bureau2crea/img/object_calendarday.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/object_calendarweek.png b/htdocs/theme/bureau2crea/img/object_calendarweek.png deleted file mode 100644 index 4ea2c09ccc9..00000000000 Binary files a/htdocs/theme/bureau2crea/img/object_calendarweek.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/object_category-expanded.png b/htdocs/theme/bureau2crea/img/object_category-expanded.png deleted file mode 100644 index af943c376e6..00000000000 Binary files a/htdocs/theme/bureau2crea/img/object_category-expanded.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/object_category.png b/htdocs/theme/bureau2crea/img/object_category.png deleted file mode 100644 index c7e79d4d408..00000000000 Binary files a/htdocs/theme/bureau2crea/img/object_category.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/object_commercial.png b/htdocs/theme/bureau2crea/img/object_commercial.png deleted file mode 100644 index ad1519f111c..00000000000 Binary files a/htdocs/theme/bureau2crea/img/object_commercial.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/object_company.png b/htdocs/theme/bureau2crea/img/object_company.png deleted file mode 100644 index 58021fa506a..00000000000 Binary files a/htdocs/theme/bureau2crea/img/object_company.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/object_contact.png b/htdocs/theme/bureau2crea/img/object_contact.png deleted file mode 100644 index e98a7e367e2..00000000000 Binary files a/htdocs/theme/bureau2crea/img/object_contact.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/object_contact_all.png b/htdocs/theme/bureau2crea/img/object_contact_all.png deleted file mode 100644 index f5c80635c28..00000000000 Binary files a/htdocs/theme/bureau2crea/img/object_contact_all.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/object_contract.png b/htdocs/theme/bureau2crea/img/object_contract.png deleted file mode 100644 index 78af93d559f..00000000000 Binary files a/htdocs/theme/bureau2crea/img/object_contract.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/object_cron.png b/htdocs/theme/bureau2crea/img/object_cron.png deleted file mode 100644 index 6186d18da70..00000000000 Binary files a/htdocs/theme/bureau2crea/img/object_cron.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/object_dir.png b/htdocs/theme/bureau2crea/img/object_dir.png deleted file mode 100644 index 7324bca0143..00000000000 Binary files a/htdocs/theme/bureau2crea/img/object_dir.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/object_email.png b/htdocs/theme/bureau2crea/img/object_email.png deleted file mode 100644 index fdda80ed4cf..00000000000 Binary files a/htdocs/theme/bureau2crea/img/object_email.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/object_energie.png b/htdocs/theme/bureau2crea/img/object_energie.png deleted file mode 100644 index 27b3b52f2c6..00000000000 Binary files a/htdocs/theme/bureau2crea/img/object_energie.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/object_generic.png b/htdocs/theme/bureau2crea/img/object_generic.png deleted file mode 100644 index 39e0ab9f52f..00000000000 Binary files a/htdocs/theme/bureau2crea/img/object_generic.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/object_globe.png b/htdocs/theme/bureau2crea/img/object_globe.png deleted file mode 100644 index 701e24b1c46..00000000000 Binary files a/htdocs/theme/bureau2crea/img/object_globe.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/object_gravatar.png b/htdocs/theme/bureau2crea/img/object_gravatar.png deleted file mode 100644 index 42bccdc4339..00000000000 Binary files a/htdocs/theme/bureau2crea/img/object_gravatar.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/object_group.png b/htdocs/theme/bureau2crea/img/object_group.png deleted file mode 100644 index 0e651e5aa5f..00000000000 Binary files a/htdocs/theme/bureau2crea/img/object_group.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/object_holiday.png b/htdocs/theme/bureau2crea/img/object_holiday.png deleted file mode 100644 index fdc1dd8e22b..00000000000 Binary files a/htdocs/theme/bureau2crea/img/object_holiday.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/object_intervention.png b/htdocs/theme/bureau2crea/img/object_intervention.png deleted file mode 100644 index 09cd8370678..00000000000 Binary files a/htdocs/theme/bureau2crea/img/object_intervention.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/object_invoice.png b/htdocs/theme/bureau2crea/img/object_invoice.png deleted file mode 100644 index 277b6ab3233..00000000000 Binary files a/htdocs/theme/bureau2crea/img/object_invoice.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/object_label.png b/htdocs/theme/bureau2crea/img/object_label.png deleted file mode 100644 index b112af5cf0a..00000000000 Binary files a/htdocs/theme/bureau2crea/img/object_label.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/object_list.png b/htdocs/theme/bureau2crea/img/object_list.png deleted file mode 100644 index f22dca04b37..00000000000 Binary files a/htdocs/theme/bureau2crea/img/object_list.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/object_margin.png b/htdocs/theme/bureau2crea/img/object_margin.png deleted file mode 100644 index cd0eb4109f7..00000000000 Binary files a/htdocs/theme/bureau2crea/img/object_margin.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/object_opensurvey.png b/htdocs/theme/bureau2crea/img/object_opensurvey.png deleted file mode 100644 index b5de3223bd4..00000000000 Binary files a/htdocs/theme/bureau2crea/img/object_opensurvey.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/object_order.png b/htdocs/theme/bureau2crea/img/object_order.png deleted file mode 100644 index 1516cd03433..00000000000 Binary files a/htdocs/theme/bureau2crea/img/object_order.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/object_payment.png b/htdocs/theme/bureau2crea/img/object_payment.png deleted file mode 100644 index f8ecf1d144e..00000000000 Binary files a/htdocs/theme/bureau2crea/img/object_payment.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/object_phoning.png b/htdocs/theme/bureau2crea/img/object_phoning.png deleted file mode 100644 index 9f5a14edd23..00000000000 Binary files a/htdocs/theme/bureau2crea/img/object_phoning.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/object_phoning_fax.png b/htdocs/theme/bureau2crea/img/object_phoning_fax.png deleted file mode 100644 index 9f5a14edd23..00000000000 Binary files a/htdocs/theme/bureau2crea/img/object_phoning_fax.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/object_product.png b/htdocs/theme/bureau2crea/img/object_product.png deleted file mode 100644 index f6477644a1f..00000000000 Binary files a/htdocs/theme/bureau2crea/img/object_product.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/object_project.png b/htdocs/theme/bureau2crea/img/object_project.png deleted file mode 100644 index bea2ebd1f7f..00000000000 Binary files a/htdocs/theme/bureau2crea/img/object_project.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/object_projectpub.png b/htdocs/theme/bureau2crea/img/object_projectpub.png deleted file mode 100644 index 1ba7da16dcc..00000000000 Binary files a/htdocs/theme/bureau2crea/img/object_projectpub.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/object_projecttask.png b/htdocs/theme/bureau2crea/img/object_projecttask.png deleted file mode 100644 index 7aff1a2ee20..00000000000 Binary files a/htdocs/theme/bureau2crea/img/object_projecttask.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/object_propal.png b/htdocs/theme/bureau2crea/img/object_propal.png deleted file mode 100644 index 4e66eebbedb..00000000000 Binary files a/htdocs/theme/bureau2crea/img/object_propal.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/object_reduc.png b/htdocs/theme/bureau2crea/img/object_reduc.png deleted file mode 100644 index 39dcc0fe6a0..00000000000 Binary files a/htdocs/theme/bureau2crea/img/object_reduc.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/object_resource.png b/htdocs/theme/bureau2crea/img/object_resource.png deleted file mode 100644 index 8cda1f3f220..00000000000 Binary files a/htdocs/theme/bureau2crea/img/object_resource.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/object_rss.png b/htdocs/theme/bureau2crea/img/object_rss.png deleted file mode 100644 index f3f9db58d95..00000000000 Binary files a/htdocs/theme/bureau2crea/img/object_rss.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/object_search.png b/htdocs/theme/bureau2crea/img/object_search.png deleted file mode 100644 index 6ffb1c806c7..00000000000 Binary files a/htdocs/theme/bureau2crea/img/object_search.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/object_sending.png b/htdocs/theme/bureau2crea/img/object_sending.png deleted file mode 100644 index 93404176e87..00000000000 Binary files a/htdocs/theme/bureau2crea/img/object_sending.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/object_service.png b/htdocs/theme/bureau2crea/img/object_service.png deleted file mode 100644 index f6477644a1f..00000000000 Binary files a/htdocs/theme/bureau2crea/img/object_service.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/object_skype.png b/htdocs/theme/bureau2crea/img/object_skype.png deleted file mode 100644 index b209cd8d16e..00000000000 Binary files a/htdocs/theme/bureau2crea/img/object_skype.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/object_stock.png b/htdocs/theme/bureau2crea/img/object_stock.png deleted file mode 100644 index c7e79d4d408..00000000000 Binary files a/htdocs/theme/bureau2crea/img/object_stock.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/object_task.png b/htdocs/theme/bureau2crea/img/object_task.png deleted file mode 100644 index 20b9d641a23..00000000000 Binary files a/htdocs/theme/bureau2crea/img/object_task.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/object_technic.png b/htdocs/theme/bureau2crea/img/object_technic.png deleted file mode 100644 index ac256e463e9..00000000000 Binary files a/htdocs/theme/bureau2crea/img/object_technic.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/object_trip.png b/htdocs/theme/bureau2crea/img/object_trip.png deleted file mode 100644 index d1a025c8477..00000000000 Binary files a/htdocs/theme/bureau2crea/img/object_trip.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/object_user.png b/htdocs/theme/bureau2crea/img/object_user.png deleted file mode 100644 index 152fd668c08..00000000000 Binary files a/htdocs/theme/bureau2crea/img/object_user.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/off.png b/htdocs/theme/bureau2crea/img/off.png deleted file mode 100644 index 9e28e0fa91e..00000000000 Binary files a/htdocs/theme/bureau2crea/img/off.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/on.png b/htdocs/theme/bureau2crea/img/on.png deleted file mode 100644 index 72e87ecaeb4..00000000000 Binary files a/htdocs/theme/bureau2crea/img/on.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/pdf2.png b/htdocs/theme/bureau2crea/img/pdf2.png deleted file mode 100644 index 975d8098993..00000000000 Binary files a/htdocs/theme/bureau2crea/img/pdf2.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/pdf3.png b/htdocs/theme/bureau2crea/img/pdf3.png deleted file mode 100644 index f053591bf2d..00000000000 Binary files a/htdocs/theme/bureau2crea/img/pdf3.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/play.png b/htdocs/theme/bureau2crea/img/play.png deleted file mode 100644 index 4922ea1ec12..00000000000 Binary files a/htdocs/theme/bureau2crea/img/play.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/previous.png b/htdocs/theme/bureau2crea/img/previous.png deleted file mode 100644 index bff23a0f55d..00000000000 Binary files a/htdocs/theme/bureau2crea/img/previous.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/printer.png b/htdocs/theme/bureau2crea/img/printer.png deleted file mode 100644 index 774686d23be..00000000000 Binary files a/htdocs/theme/bureau2crea/img/printer.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/puce.png b/htdocs/theme/bureau2crea/img/puce.png deleted file mode 100644 index 0bd4bd51023..00000000000 Binary files a/htdocs/theme/bureau2crea/img/puce.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/recent.png b/htdocs/theme/bureau2crea/img/recent.png deleted file mode 100644 index a3405497f03..00000000000 Binary files a/htdocs/theme/bureau2crea/img/recent.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/redstar.png b/htdocs/theme/bureau2crea/img/redstar.png deleted file mode 100644 index ce7b207978a..00000000000 Binary files a/htdocs/theme/bureau2crea/img/redstar.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/refresh.png b/htdocs/theme/bureau2crea/img/refresh.png deleted file mode 100644 index edc14adcd23..00000000000 Binary files a/htdocs/theme/bureau2crea/img/refresh.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/reload.png b/htdocs/theme/bureau2crea/img/reload.png deleted file mode 100644 index 1e638197612..00000000000 Binary files a/htdocs/theme/bureau2crea/img/reload.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/rightarrow.png b/htdocs/theme/bureau2crea/img/rightarrow.png deleted file mode 100644 index 2c479d9453b..00000000000 Binary files a/htdocs/theme/bureau2crea/img/rightarrow.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/search.png b/htdocs/theme/bureau2crea/img/search.png deleted file mode 100644 index 97f4801c921..00000000000 Binary files a/htdocs/theme/bureau2crea/img/search.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/searchclear.png b/htdocs/theme/bureau2crea/img/searchclear.png deleted file mode 100644 index 56fb7f1de87..00000000000 Binary files a/htdocs/theme/bureau2crea/img/searchclear.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/setup.png b/htdocs/theme/bureau2crea/img/setup.png deleted file mode 100644 index ad9a58fe0d3..00000000000 Binary files a/htdocs/theme/bureau2crea/img/setup.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/sort_asc.png b/htdocs/theme/bureau2crea/img/sort_asc.png deleted file mode 100644 index e327d952fa4..00000000000 Binary files a/htdocs/theme/bureau2crea/img/sort_asc.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/sort_asc_disabled.png b/htdocs/theme/bureau2crea/img/sort_asc_disabled.png deleted file mode 100644 index e327d952fa4..00000000000 Binary files a/htdocs/theme/bureau2crea/img/sort_asc_disabled.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/sort_desc.png b/htdocs/theme/bureau2crea/img/sort_desc.png deleted file mode 100644 index db99fd9ad47..00000000000 Binary files a/htdocs/theme/bureau2crea/img/sort_desc.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/sort_desc_disabled.png b/htdocs/theme/bureau2crea/img/sort_desc_disabled.png deleted file mode 100644 index 89051c2f34f..00000000000 Binary files a/htdocs/theme/bureau2crea/img/sort_desc_disabled.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/split.png b/htdocs/theme/bureau2crea/img/split.png deleted file mode 100644 index 50b6324c334..00000000000 Binary files a/htdocs/theme/bureau2crea/img/split.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/star.png b/htdocs/theme/bureau2crea/img/star.png deleted file mode 100644 index 81feace1c30..00000000000 Binary files a/htdocs/theme/bureau2crea/img/star.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/stats.png b/htdocs/theme/bureau2crea/img/stats.png deleted file mode 100644 index d883f7faea9..00000000000 Binary files a/htdocs/theme/bureau2crea/img/stats.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/statut0.png b/htdocs/theme/bureau2crea/img/statut0.png deleted file mode 100644 index 196f4f53c7d..00000000000 Binary files a/htdocs/theme/bureau2crea/img/statut0.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/statut1.png b/htdocs/theme/bureau2crea/img/statut1.png deleted file mode 100644 index 774b3e4bd54..00000000000 Binary files a/htdocs/theme/bureau2crea/img/statut1.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/statut3.png b/htdocs/theme/bureau2crea/img/statut3.png deleted file mode 100644 index 9ce49b93476..00000000000 Binary files a/htdocs/theme/bureau2crea/img/statut3.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/statut4.png b/htdocs/theme/bureau2crea/img/statut4.png deleted file mode 100644 index 75f9155a6d2..00000000000 Binary files a/htdocs/theme/bureau2crea/img/statut4.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/statut5.png b/htdocs/theme/bureau2crea/img/statut5.png deleted file mode 100644 index 774b3e4bd54..00000000000 Binary files a/htdocs/theme/bureau2crea/img/statut5.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/statut6.png b/htdocs/theme/bureau2crea/img/statut6.png deleted file mode 100644 index e4f42ac6d53..00000000000 Binary files a/htdocs/theme/bureau2crea/img/statut6.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/statut7.png b/htdocs/theme/bureau2crea/img/statut7.png deleted file mode 100644 index b391da08db5..00000000000 Binary files a/htdocs/theme/bureau2crea/img/statut7.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/statut8.png b/htdocs/theme/bureau2crea/img/statut8.png deleted file mode 100644 index c24d4a9dac2..00000000000 Binary files a/htdocs/theme/bureau2crea/img/statut8.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/statut9.png b/htdocs/theme/bureau2crea/img/statut9.png deleted file mode 100644 index 94b6dabf265..00000000000 Binary files a/htdocs/theme/bureau2crea/img/statut9.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/stcomm-1.png b/htdocs/theme/bureau2crea/img/stcomm-1.png deleted file mode 100644 index 2641cfa6a9d..00000000000 Binary files a/htdocs/theme/bureau2crea/img/stcomm-1.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/stcomm0.png b/htdocs/theme/bureau2crea/img/stcomm0.png deleted file mode 100644 index b6c11d4569a..00000000000 Binary files a/htdocs/theme/bureau2crea/img/stcomm0.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/stcomm1.png b/htdocs/theme/bureau2crea/img/stcomm1.png deleted file mode 100644 index 40618af47ce..00000000000 Binary files a/htdocs/theme/bureau2crea/img/stcomm1.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/stcomm2.png b/htdocs/theme/bureau2crea/img/stcomm2.png deleted file mode 100644 index f9f3f1d853e..00000000000 Binary files a/htdocs/theme/bureau2crea/img/stcomm2.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/stcomm3.png b/htdocs/theme/bureau2crea/img/stcomm3.png deleted file mode 100644 index 24cd66d3457..00000000000 Binary files a/htdocs/theme/bureau2crea/img/stcomm3.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/stcomm4.png b/htdocs/theme/bureau2crea/img/stcomm4.png deleted file mode 100644 index 3e26b4d06ed..00000000000 Binary files a/htdocs/theme/bureau2crea/img/stcomm4.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/switch_off.png b/htdocs/theme/bureau2crea/img/switch_off.png deleted file mode 100644 index 28a4376fb43..00000000000 Binary files a/htdocs/theme/bureau2crea/img/switch_off.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/switch_on.png b/htdocs/theme/bureau2crea/img/switch_on.png deleted file mode 100644 index d4e32d98f57..00000000000 Binary files a/htdocs/theme/bureau2crea/img/switch_on.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/tab_background.png b/htdocs/theme/bureau2crea/img/tab_background.png deleted file mode 100644 index 6edd65003e0..00000000000 Binary files a/htdocs/theme/bureau2crea/img/tab_background.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/test.gif b/htdocs/theme/bureau2crea/img/test.gif deleted file mode 100644 index 55ce8fb72b1..00000000000 Binary files a/htdocs/theme/bureau2crea/img/test.gif and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/tick.png b/htdocs/theme/bureau2crea/img/tick.png deleted file mode 100644 index c899abb9c34..00000000000 Binary files a/htdocs/theme/bureau2crea/img/tick.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/title.gif b/htdocs/theme/bureau2crea/img/title.gif deleted file mode 100644 index f7b6917596f..00000000000 Binary files a/htdocs/theme/bureau2crea/img/title.gif and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/title.png b/htdocs/theme/bureau2crea/img/title.png deleted file mode 100644 index eb9c329a6a5..00000000000 Binary files a/htdocs/theme/bureau2crea/img/title.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/title_accountancy.png b/htdocs/theme/bureau2crea/img/title_accountancy.png deleted file mode 100644 index 6e7c2a412c6..00000000000 Binary files a/htdocs/theme/bureau2crea/img/title_accountancy.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/title_bank.png b/htdocs/theme/bureau2crea/img/title_bank.png deleted file mode 100644 index 034a8d0c5e4..00000000000 Binary files a/htdocs/theme/bureau2crea/img/title_bank.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/title_commercial.png b/htdocs/theme/bureau2crea/img/title_commercial.png deleted file mode 100644 index 46394177698..00000000000 Binary files a/htdocs/theme/bureau2crea/img/title_commercial.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/title_companies.png b/htdocs/theme/bureau2crea/img/title_companies.png deleted file mode 100644 index b2539dba849..00000000000 Binary files a/htdocs/theme/bureau2crea/img/title_companies.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/title_generic.png b/htdocs/theme/bureau2crea/img/title_generic.png deleted file mode 100644 index ae224327549..00000000000 Binary files a/htdocs/theme/bureau2crea/img/title_generic.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/title_home.png b/htdocs/theme/bureau2crea/img/title_home.png deleted file mode 100644 index e9273e727f5..00000000000 Binary files a/htdocs/theme/bureau2crea/img/title_home.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/title_products.png b/htdocs/theme/bureau2crea/img/title_products.png deleted file mode 100644 index d3c5b125bbe..00000000000 Binary files a/htdocs/theme/bureau2crea/img/title_products.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/title_project.png b/htdocs/theme/bureau2crea/img/title_project.png deleted file mode 100644 index 05d8ea630b8..00000000000 Binary files a/htdocs/theme/bureau2crea/img/title_project.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/title_setup.png b/htdocs/theme/bureau2crea/img/title_setup.png deleted file mode 100644 index d7548d28709..00000000000 Binary files a/htdocs/theme/bureau2crea/img/title_setup.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/tmenu.jpg b/htdocs/theme/bureau2crea/img/tmenu.jpg deleted file mode 100644 index b8ffd399418..00000000000 Binary files a/htdocs/theme/bureau2crea/img/tmenu.jpg and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/tmenu2.jpg b/htdocs/theme/bureau2crea/img/tmenu2.jpg deleted file mode 100644 index 920e0066341..00000000000 Binary files a/htdocs/theme/bureau2crea/img/tmenu2.jpg and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/tmenu3.jpg b/htdocs/theme/bureau2crea/img/tmenu3.jpg deleted file mode 100644 index d42f804b026..00000000000 Binary files a/htdocs/theme/bureau2crea/img/tmenu3.jpg and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/tmenu_inverse.jpg b/htdocs/theme/bureau2crea/img/tmenu_inverse.jpg deleted file mode 100644 index e1efd44376e..00000000000 Binary files a/htdocs/theme/bureau2crea/img/tmenu_inverse.jpg and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/unlock.png b/htdocs/theme/bureau2crea/img/unlock.png deleted file mode 100644 index afefaa94d47..00000000000 Binary files a/htdocs/theme/bureau2crea/img/unlock.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/uparrow.png b/htdocs/theme/bureau2crea/img/uparrow.png deleted file mode 100644 index 5706ca39da4..00000000000 Binary files a/htdocs/theme/bureau2crea/img/uparrow.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/vcard.png b/htdocs/theme/bureau2crea/img/vcard.png deleted file mode 100644 index 315abdf179d..00000000000 Binary files a/htdocs/theme/bureau2crea/img/vcard.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/view.png b/htdocs/theme/bureau2crea/img/view.png deleted file mode 100644 index 76c1e9f1e6a..00000000000 Binary files a/htdocs/theme/bureau2crea/img/view.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/warning.png b/htdocs/theme/bureau2crea/img/warning.png deleted file mode 100644 index dfa237a5302..00000000000 Binary files a/htdocs/theme/bureau2crea/img/warning.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/working.gif b/htdocs/theme/bureau2crea/img/working.gif deleted file mode 100644 index 1e421c3113f..00000000000 Binary files a/htdocs/theme/bureau2crea/img/working.gif and /dev/null differ diff --git a/htdocs/theme/bureau2crea/img/working2.gif b/htdocs/theme/bureau2crea/img/working2.gif deleted file mode 100644 index bf0fc8f2167..00000000000 Binary files a/htdocs/theme/bureau2crea/img/working2.gif and /dev/null differ diff --git a/htdocs/theme/bureau2crea/index.html b/htdocs/theme/bureau2crea/index.html deleted file mode 100644 index e69de29bb2d..00000000000 diff --git a/htdocs/theme/bureau2crea/style.css.php b/htdocs/theme/bureau2crea/style.css.php deleted file mode 100644 index eee7afcb9c0..00000000000 --- a/htdocs/theme/bureau2crea/style.css.php +++ /dev/null @@ -1,2855 +0,0 @@ - - * Copyright (C) 2006 Rodolphe Quiedeville - * Copyright (C) 2007-2010 Regis Houssin - * Copyright (C) 2011 Philippe Grand - * Copyright (C) 2011 Juanjo Menent - * - * 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 - * the Free Software Foundation; either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - * - * FIXME: This is a bugged theme: - * No wrapping of top menu entries when window not large enough - * Not compatible with jmobile - */ - -/** - * \file htdocs/theme/bureau2crea/style.css.php - * \brief Fichier de style CSS du theme bureau2crea - */ - -//if (! defined('NOREQUIREUSER')) define('NOREQUIREUSER','1'); // Not disabled cause need to load personalized language -//if (! defined('NOREQUIREDB')) define('NOREQUIREDB','1'); // Not disabled to increase speed. Language code is found on url. -if (! defined('NOREQUIRESOC')) define('NOREQUIRESOC','1'); -//if (! defined('NOREQUIRETRAN')) define('NOREQUIRETRAN','1'); // Not disabled cause need to do translations -if (! defined('NOCSRFCHECK')) define('NOCSRFCHECK',1); -if (! defined('NOTOKENRENEWAL')) define('NOTOKENRENEWAL',1); -if (! defined('NOLOGIN')) define('NOLOGIN',1); -if (! defined('NOREQUIREMENU')) define('NOREQUIREMENU',1); -if (! defined('NOREQUIREHTML')) define('NOREQUIREHTML',1); -if (! defined('NOREQUIREAJAX')) define('NOREQUIREAJAX','1'); - -session_cache_limiter(FALSE); - -require_once '../../main.inc.php'; - -// Load user to have $user->conf loaded (not done into main because of NOLOGIN constant defined) -if (empty($user->id) && ! empty($_SESSION['dol_login'])) $user->fetch('',$_SESSION['dol_login']); - - -// Define css type -header('Content-type: text/css'); -// Important: Following code is to avoid page request by browser and PHP CPU at each Dolibarr page access. -if (empty($dolibarr_nocache)) header('Cache-Control: max-age=3600, public, must-revalidate'); -else header('Cache-Control: no-cache'); - -// On the fly GZIP compression for all pages (if browser support it). Must set the bit 3 of constant to 1. -if (isset($conf->global->MAIN_OPTIMIZE_SPEED) && ($conf->global->MAIN_OPTIMIZE_SPEED & 0x04)) { ob_start("ob_gzhandler"); } - -if (GETPOST('lang')) $langs->setDefaultLang(GETPOST('lang')); // If language was forced on URL -if (GETPOST('theme')) $conf->theme=GETPOST('theme'); // If theme was forced on URL -$langs->load("main",0,1); -$right=($langs->trans("DIRECTION")=='rtl'?'left':'right'); -$left=($langs->trans("DIRECTION")=='rtl'?'right':'left'); - - -$path=''; // This value may be used in future for external module to overwrite theme -$theme='bureau2crea'; // Value of theme -if (! empty($conf->global->MAIN_OVERWRITE_THEME_RES)) { $path='/'.$conf->global->MAIN_OVERWRITE_THEME_RES; $theme=$conf->global->MAIN_OVERWRITE_THEME_RES; } - -// Define image path files and other constants -$fontlist='arial, sans-serif, verdana, helvetica'; -$dol_hide_topmenu=$conf->dol_hide_topmenu; -$dol_hide_leftmenu=$conf->dol_hide_leftmenu; -$dol_optimize_smallscreen=$conf->dol_optimize_smallscreen; -$dol_no_mouse_hover=$conf->dol_no_mouse_hover; -$dol_use_jmobile=$conf->dol_use_jmobile; - -$colorshadowtitle='000'; -$fontsize='12'; -$fontsizesmaller='11'; - -if (! empty($conf->dol_optimize_smallscreen)) $fontsize=11; -?> - -/* ============================================================================== */ -/* Styles par defaut */ -/* ============================================================================== */ - -body { -/* background-color: #FFFFFF; */ - color: #101010; - font-size: px; - font-family: ; - margin-top: 0; - margin-bottom: 0; - margin-right: 0; - margin-left: 0; - trans("DIRECTION").";\n"; ?> -} - -#mainbody .main_box { - position: absolute; - width: 100%; - margin: 0px; - } - -#mainbody .connexion_box { - position: absolute; - top: 2px; - right: 5px; - height: 12px; - text-align: left; - } - -#mainbody .connexion_box .login, #mainbody .connexion_box .printer { - margin-left: 10px; - font-size: 10px; - line-height: 14px; - padding: 0px !important; - padding-right: 10px !important; - } - -#mainbody .connexion_box .login a { - color: #333; - text-decoration: none; - } - -#mainbody .connexion_box table { - margin-left: 10px; - display: block; - } - -#mainbody .content_box { - margin: 0px 20px 20px 20px; - } - -#ad_banner { - text-align: center; - vertical-align: bottom; -} - -a:link, a:visited, a:hover, a:active { font-family: ; font-weight: bold; color: #000000; text-decoration: none; } - -input, input.flat, textarea, textarea.flat, form.flat select, select.flat { - font-size: px; - font-family: ; - background: #FDFDFD; - border: 1px solid #ACBCBB; - padding: 1px; - margin: 0px 0px 0px 0px; -} -select.flat, form.flat select { - font-weight: normal; -} -input:disabled { - background:#ddd; -} -textarea:disabled { - background:#ddd; -} - -input[type=checkbox] { background-color: transparent; border: none; box-shadow: none; } -input[type=radio] { background-color: transparent; border: none; box-shadow: none; } -input[type=image] { background-color: transparent; border: none; box-shadow: none; } -input[type=text] { min-width: 20px; } -input:-webkit-autofill { - background-color: !important; - background-image:none !important; - -webkit-box-shadow: 0 0 0 50px inset; -} - -input.button[type=submit] { - background-image: url(); - display: block; - height: 18px; - line-height: 16px; - padding: 0px 10px 0px 10px; - margin: 0px; - background-repeat: repeat-x; - /*border: 2px solid #336600;*/ - color: #FFFFFF; - cursor: pointer; - font-size: 10px; - display: inline; -} -::-webkit-input-placeholder { color:#ccc; } -::-moz-placeholder { color:#ccc; } /* firefox 19+ */ -:-ms-input-placeholder { color:#ccc; } /* ie */ -input:-moz-placeholder { color:#ccc; } - - -legend { margin-bottom: 8px; } - - -.button { - font-family: ; - border: 0px; - background-image: url(); - background-position: bottom; - padding: 0px 2px 0px 2px; - margin: 0px 0px 0px 0px; -} -.button:focus { - font-family: ; - color: #222244; - border: 0px; - background-image: url(); - background-position: bottom; - padding: 0px 2px 0px 2px; - margin: 0px 0px 0px 0px; -} -.button:disabled { - opacity: 0.4; - filter: alpha(opacity=40); /* For IE8 and earlier */ - box-shadow: none; - -webkit-box-shadow: none; - -moz-box-shadow: none; - cursor: auto; -} -.buttonRefused { - pointer-events: none; - cursor: default; - opacity: 0.4; - filter: alpha(opacity=40); /* For IE8 and earlier */ - box-shadow: none; - -webkit-box-shadow: none; - -moz-box-shadow: none; -} -form { - padding: 0em 0em 0em 0em; - margin: 0em 0em 0em 0em; -} -div.float -{ - float:; -} -div.floatright -{ - float:; -} -.inline-block -{ - display:inline-block; -} - -.valignmiddle { - vertical-align: middle; -} -.centpercent { - width: 100%; -} -.center { - text-align: center; -} -.left { - text-align: ; -} -.right { - text-align: ; -} -.nowrap { - white-space: ; -} -.nobold { - font-weight: normal !important; -} -.nounderline { - text-decoration: none; -} -.cursorpointer { - cursor: pointer; -} -.badge { - display: inline-block; - min-width: 10px; - padding: 2px 5px; - font-size: 10px; - font-weight: 700; - line-height: 0.9em; - color: #fff; - text-align: center; - white-space: nowrap; - vertical-align: baseline; - background-color: #777; - border-radius: 10px; -} - - -/* ============================================================================== */ -/* Styles to hide objects */ -/* ============================================================================== */ - -.hideobject { display: none; } - -.hideonsmartphone { display: none; } -.noenlargeonsmartphone { width : 50px !important; display: inline !important; } -.maxwidthonsmartphone { max-width: 100px; } -.maxwidth200onsmartphone { max-width: 200px; } - -.linkobject { cursor: pointer; } - -.hideonprint { display: none !important; } - - - -/* ============================================================================== */ -/* Styles for dragging lines */ -/* ============================================================================== */ - -.dragClass { - color: #002255; -} -td.showDragHandle { - cursor: move; -} -.tdlineupdown { - white-space: nowrap; - min-width: 10px; -} - - -/* ============================================================================== */ -/* Styles de positionnement des zones */ -/* ============================================================================== */ - -#id-container { - margin-bottom: 8px; - display: table; - table-layout: fixed; -} -#id-right, #id-left { - display: table-cell; - float: none; - vertical-align: top; -} -#id- { - width: 100%; -} - -div.leftContent { - margin-left: 20px !important; - width: 220px !important; -} - -div.fiche { - margin-: dol_optimize_smallscreen)?'10':'2'; ?>px; - margin-: dol_optimize_smallscreen)?'10':''; ?>px; - padding: 0px; - position: relative; - height: auto; -} - -div.fichecenter { - width: 100%; - clear: both; /* This is to have div fichecenter that are true rectangles */ -} -div.fichethirdleft { - dol_optimize_smallscreen)) { print "float: ".$left.";\n"; } ?> - dol_optimize_smallscreen)) { print "width: 35%;\n"; } ?> -} -div.fichetwothirdright { - dol_optimize_smallscreen)) { print "float: ".$right.";\n"; } ?> - dol_optimize_smallscreen)) { print "width: 65%;\n"; } ?> -} -div.fichehalfleft { - dol_optimize_smallscreen)) { print "float: ".$left.";\n"; } ?> - dol_optimize_smallscreen)) { print "width: 50%;\n"; } ?> -} -div.fichehalfright { - dol_optimize_smallscreen)) { print "float: ".$right.";\n"; } ?> - dol_optimize_smallscreen)) { print "width: 50%;\n"; } ?> -} -div.ficheaddleft { - dol_optimize_smallscreen)) { print "padding-left: 16px;\n"; } - else print "margin-top: 10px;\n"; ?> -} - - -/* ============================================================================== */ -/* Barre de redimensionnement menu */ -/* ============================================================================== */ - -.ui-layout-resizer-west-open { - /*left: 240px !important;*/ -} - - -/* ============================================================================== */ -/* Menu top et 1ere ligne tableau */ -/* ============================================================================== */ - - - -/* This theme is bugged. If width not large enough, menu are not wrapped on next line -div#tmenu_tooltip { - padding-right: 100px; -} -*/ - -div.tmenu { - - display:none; - - position: relative; - display: block; - white-space: nowrap; - border-left: 0px; - padding: 0px; - margin: 5px 0px 10px 0px; - background-image : url(); - background-repeat: no-repeat; - background-color: #996644; - height: 22px; - border-bottom: 2px solid #842F00; - -} - - - -/* -div.mainmenu { - position : relative; - color: white; - background-repeat:no-repeat; - background-position:center top; - height: px; - margin-left: 0px; -} -*/ - - -/* Do not load menu img if hidden to save bandwidth */ -'name of class for div') - -$moduletomainmenu=array('user'=>'','syslog'=>'','societe'=>'companies','projet'=>'project','propale'=>'commercial','commande'=>'commercial', - 'produit'=>'products','service'=>'products','stock'=>'products', - 'don'=>'accountancy','tax'=>'accountancy','banque'=>'accountancy','facture'=>'accountancy','compta'=>'accountancy','accounting'=>'accountancy','adherent'=>'members','import'=>'tools','export'=>'tools','mailing'=>'tools', - 'contrat'=>'commercial','ficheinter'=>'commercial','deplacement'=>'commercial', - 'fournisseur'=>'companies', - 'barcode'=>'','fckeditor'=>'','categorie'=>'', -); -$mainmenuused='home'; -foreach($conf->modules as $val) -{ - $mainmenuused.=','.(isset($moduletomainmenu[$val])?$moduletomainmenu[$val]:$val); -} -//var_dump($mainmenuused); -$mainmenuusedarray=array_unique(explode(',',$mainmenuused)); - -$mainmenuusedarray=array(); // Disable - -$generic=1; -$divalreadydefined=array('home','companies','products','commercial','accountancy','project','tools','members','agenda','ecm','cashdesk'); -foreach($mainmenuusedarray as $val) -{ - if (empty($val) || in_array($val,$divalreadydefined)) continue; - //print "XXX".$val; - - // Search img file in module dir - $found=0; $url=''; - foreach($conf->file->dol_document_root as $dirroot) - { - if (file_exists($dirroot."/".$val."/img/".$val.".png")) - { - $url=dol_buildpath($path.'/'.$val.'/img/'.$val.'.png',1); - $found=1; - break; - } - } - // Img file not found - if (! $found && $generic <= 4) - { - $url=dol_buildpath($path.'/theme/'.$theme.'/img/menus/generic'.$generic.'.png',1); - $found=1; - $generic++; - } - if ($found) - { - print "/* A mainmenu entry but img file ".$val.".png not found (check /".$val."/img/".$val.".png), so we use a generic one */\n"; - print "div.mainmenu.".$val." {\n"; - print " background-image: url(".$url.");\n"; - print " height:28px;\n"; - print "}\n"; - } -} -// End of part to add more div class css -?> - - - -ul.tmenu { - padding: 0px; - margin: 0px 5px 0px 5px; - list-style: none; - width: auto; - height: 22px; -} - -li.tmenu, li.tmenusel { - float: ; - position:relative; - display: block; - padding: 0px; - margin: 0px 2px 0px 0px; -} - -li.tmenu span, li.tmenusel span { - margin: 0px 10px 0px 10px; - } - -.tmenuimage { - margin: 0 !important; - padding: 0 !important; -} - -li.tmenu a, li.tmenusel a { - position: relative; - display: block; - font-size: 12px; - font-family: Geneva, Verdana, sans-serif; - line-height: 20px; - color: #FFF; - font-weight: normal; - float: ; -} - -li.tmenu a:hover { - color: #FFFFFF; - background-color: #D45416; -} - -li.tmenu a.tmenusel, li.tmenu a.tmenusel:hover, li.tmenusel a.tmenusel, li.tmenusel a.tmenusel:hover { - color: #842F00; - font-weight: bold; - background-color: #FFF; - font-weight: normal; -} - -li.tmenu .tmenusel, li.tmenusel .tmenusel { - background: #FFFFFF; -} - -li.tmenusel { - background-image : url(); - background-position: right; -} - -li.tmenusel a:hover { - color: #474747; -} - -li.tmenu a.tmenudisabled { - color: #CCC; -} - -/* --- end nav --- */ - - - - -/* Login */ - -form#login { - margin-top: px; - margin-bottom: 30px; - font-size: 13px; -} -.login_table_title { - margin-left: 10px; - margin-right: 10px; - max-width: 540px; - color: #888888; - text-shadow: 1px 1px 1px #FFF; -} -.login_table label { - text-shadow: 1px 1px 1px #FFF; -} -.login_table { - margin-left: 10px; - margin-right: 10px; - padding:12px; - max-width: 540px; - border: 1px solid #C0C0C0; - background-color: #E0E0E0; - - -moz-box-shadow: 4px 4px 4px #CCC; - -webkit-box-shadow: 4px 4px 4px #CCC; - box-shadow: 4px 4px 4px #CCC; - - border-radius: 12px; - border:solid 1px rgba(168,168,168,.4); - border-top:solid 1px f8f8f8; - background-color: #f8f8f8; - background-image: -o-linear-gradient(top, rgba(240,240,240,.3) 0%, rgba(192,192,192,.3) 100%); - background-image: -moz-linear-gradient(top, rgba(240,240,240,.3) 0%, rgba(192,192,192,.3) 100%); - background-image: -webkit-linear-gradient(top, rgba(240,240,240,.3) 0%, rgba(192,192,192,.3) 100%); - background-image: -ms-linear-gradient(top, rgba(240,240,240,.3) 0%, rgba(192,192,192,.3) 100%); - background-image: linear-gradient(top, rgba(240,240,240,.3) 0%, rgba(192,192,192,.3) 100%); -} -#securitycode { - min-width: 60px; -} -#img_securitycode { - border: 1px solid #DDDDDD; -} -#img_logo { - max-width: 200px; - max-height: 100px; -} - -div.login_block { - width: 180px; - position: absolute; - : 5px; - top: 2px; - font-weight: bold; - - display: none; - color: #FFF; - -} - -div.login_block table { - display: inline; -} - -div#login_left, div#login_right { - display: inline-block; - min-width: 220px; - text-align: center; - vertical-align: middle; -} - -div.login { - white-space:nowrap; - padding: dol_optimize_smallscreen?'0':'8')?>px 0px 0px 0px; - margin: 0px 0px 0px 8px; - font-weight: bold; -} -div.login a { - color: #FFFFFF; -} -div.login a:hover { - color: black; - text-decoration:underline; -} -.login_block_user { - float: right; -} -.login_block_elem { - float: right; - vertical-align: top; - padding: 8px 0px 0px 4px !important; -} - -.alogin, .alogin:hover { - color: #888 !important; - font-weight: normal !important; - font-size: px !important; -} -.alogin:hover { - text-decoration:underline !important; -} - -img.login, img.printer, img.entity { - padding: 0px 0px 0px 0px; - margin: 0px 0px 0px 8px; - text-decoration: none; - color: white; - font-weight: bold; -} - - -/* ============================================================================== */ -/* Menu gauche */ -/* ============================================================================== */ - -.vmenu { - margin: 0; - position: relative; - width: 180px; -} - -.vmenu { - display: none; -} - - -div.vmenu { - position: relative; - float: left; - margin: 0px; - width: 180px; - margin-left: 10px; -} - -a.vmenu:link { font-size:12px; text-align:left; font-weight: normal; color: #FFFFFF; margin: 1px 1px 1px 4px; } -a.vmenu:visited { font-size:12px; text-align:left; font-weight: normal; color: #FFFFFF; margin: 1px 1px 1px 4px; } -a.vmenu:active { font-size:12px; text-align:left; font-weight: normal; color: #FFFFFF; margin: 1px 1px 1px 4px; } -a.vmenu:hover { font-size:12px; text-align:left; font-weight: normal; color: #7F0A29; margin: 1px 1px 1px 4px; } -font.vmenudisabled { font-size:12px; text-align:left; font-weight: normal; color: #FFFFFF; margin: 1px 1px 1px 4px; } - -a.vsmenu:link { font-size:11px; text-align:left; font-weight: normal; color: #202020; margin: 1px 1px 1px 4px; } -a.vsmenu:visited { font-size:11px; text-align:left; font-weight: normal; color: #202020; margin: 1px 1px 1px 4px; } -a.vsmenu:active { font-size:11px; text-align:left; font-weight: normal; color: RGB(94,148,181); margin: 1px 1px 1px 4px; } -a.vsmenu:hover { font-size:11px; text-align:left; font-weight: normal; color: #7F0A29; margin: 1px 1px 1px 4px; } -font.vsmenudisabled { font-size:11px; text-align:left; font-weight: normal; color: #202020; } -font.vsmenudisabledmargin { margin: 1px 1px 1px 4px; } - -a.help:link { font-size: 10px; font-weight: bold; background: #FFFFFF; border: 1px solid #8CACBB; color: #68ACCF; padding: 0em 0.7em; margin: 0em 0.5em; text-decoration: none; white-space: nowrap; } -a.help:visited { font-size: 10px; font-weight: bold; background: #FFFFFF; border: 1px solid #8CACBB; color: #68ACCF; padding: 0em 0.7em; margin: 0em 0.5em; text-decoration: none; white-space: nowrap; } -a.help:active { font-size: 10px; font-weight: bold; background: #FFFFFF; border: 1px solid #8CACBB; color: #6198BA; padding: 0em 0.7em; margin: 0em 0.5em; text-decoration: none; white-space: nowrap; } -a.help:hover { font-size: 10px; font-weight: bold; background: #FFFFFF; border: 1px solid #8CACBB; color: #6198BA; padding: 0em 0.7em; margin: 0em 0.5em; text-decoration: none; white-space: nowrap; } - - -div.blockvmenupair -{ - margin-bottom: 15px; - border-spacing: 0px; - padding: 0px; - width: 100%; - background-image: url(); - background-position: top right; - background-repeat: no-repeat; - -} -div.blockvmenuimpair -{ - margin-bottom: 15px; - border-spacing: 0px; - padding: 0px; - width: 100%; - background-image: url(); - background-position: top right; - background-repeat: no-repeat; - -} - -div.blockvmenuimpair form a.vmenu, div.blockvmenupair form a.vmenu -{ - width: 166px; - border-spacing: 0px; - color: #000000; - text-align:left; - text-decoration: none; - padding: 4px; - margin: 0px; - background: #FFFFFF; - margin-bottom: -12px; -} - -div.menu_titre -{ - padding: 0px; - padding-left:0px; - margin-top: 8px; - margin: 0px; - height: 16px; - text-align: left; - font-size : 12px; - color : #FFFFFF; - font-weight: bold; - height: 20px; - line-height: 20px; -} - -div.menu_titre a.vmenu { - /*font-weight: bold;*/ - /*font-family: "Trebuchet MS",Arial,Helvetica,sans-serif;*/ - font-size: 12px; -} - -div.blockvmenusearch -{ - margin: 3px 0px 15px 0px; - padding: 25px 0px 2px 2px; - background-image: url(); - background-position: top right; - background-repeat: no-repeat; -} - -div.blockvmenusearch input[type="text"] { - float: left; - width: 110px; - border: 1px solid #333; - font-size: 10px; - height: 16px; -} - -div.blockvmenusearch input.button[type="submit"] { - float: left; - margin-left: 10px; -} - -div.blockvmenusearch div.menu_titre { - margin-top: 5px; -} - -#blockvmenusearch div.menu_titre, #blockvmenusearch form -{ - padding-top: 1px; - padding-bottom: 1px; - min-height: 14px; -} - -#blockvmenusearch form -{ - clear: both; - margin-bottom: 14px; -} - -div.blockvmenubookmarks -{ - margin: 0px; - border-spacing: 0px; - padding: 0px; - width: 100%; - background-image: url(); - background-position: top right; - background-repeat: no-repeat; - margin-bottom: 15px; -} - -div.blockvmenuhelp -{ -dol_optimize_smallscreen)) { ?> - text-align: center; - border-spacing: 0px; - width: 162px; - background: transparent; - font-family: ; - color: #000000; - text-decoration: none; - padding-left: 0px; - padding-right: 1px; - padding-top: 3px; - padding-bottom: 3px; - margin: 1px 0px 0px 0px; - - display: none; - -} - -div.menu_contenu { - margin: 0px; - padding: 1px; - - padding-right: 8px; - font-size : 11px; - font-weight:normal; - color : #000000; - text-align: left; -} - -div.menu_end { -/* border-top: 1px solid #436981; */ - margin: 0px; - padding: 0px; - height: 6px; - width: 165px; - background-repeat:no-repeat; - display: none; -} - - -td.barre { - border-right: 1px solid #000000; - border-bottom: 1px solid #000000; - background: #b3c5cc; - font-family: ; - color: #000000; - text-align: ; - text-decoration: none; -} - -td.barre_select { - background: #b3c5cc; - color: #000000; -} - -td.photo { - box-shadow: 2px 4px 2px #CCCCCC; - -moz-box-shadow: 2px 4px 2px #CCCCCC; - -webkit-box-shadow: 2px 4px 2px #CCCCCC; - border-collapse: collapse; - border: 1px solid #666; - background-color: #EDEDED; -} - - -/* ============================================================================== */ -/* Panes for Main */ -/* ============================================================================== */ - -/* - * PANES and CONTENT-DIVs - */ - -#mainContent, #leftContent .ui-layout-pane { - padding: 0px; - overflow: auto; -} - -#mainContent, #leftContent .ui-layout-center { - padding: 0px; - position: relative; /* contain floated or positioned elements */ - overflow: auto; /* add scrolling to content-div */ -} - - -/* ============================================================================== */ -/* Toolbar for ECM or Filemanager */ -/* ============================================================================== */ - -.toolbar { - background-image: url(theme.'/img/tmenu2.png',1); ?>) !important; - background-repeat: repeat-x !important; - border: 1px solid #BBB !important; -} - -a.toolbarbutton { - margin-top: 1px; - margin-left: 4px; - margin-right: 4px; - height: 30px; -/* border: solid 1px #AAAAAA; - width: 32px; - background: #FFFFFF;*/ -} -img.toolbarbutton { - margin-top: 2px; - height: 28px; -} - - -/* ============================================================================== */ -/* Panes for ECM or Filemanager */ -/* ============================================================================== */ - -#containerlayout .layout-with-no-border { - border: 0 !important; - border-width: 0 !important; -} - -#containerlayout .layout-padding { - padding: 2px !important; -} - -/* - * PANES and CONTENT-DIVs - */ -#containerlayout .ui-layout-pane { /* all 'panes' */ - background: #FFF; - border: 1px solid #BBB; - /* DO NOT add scrolling (or padding) to 'panes' that have a content-div, - otherwise you may get double-scrollbars - on the pane AND on the content-div - */ - padding: 0px; - overflow: auto; -} -/* (scrolling) content-div inside pane allows for fixed header(s) and/or footer(s) */ -#containerlayout .ui-layout-content { - padding: 10px; - position: relative; /* contain floated or positioned elements */ - overflow: auto; /* add scrolling to content-div */ -} - -/* - * RESIZER-BARS - */ -.ui-layout-resizer { /* all 'resizer-bars' */ - width: dol_optimize_smallscreen)?'8':'24'); ?>px !important; -} -.ui-layout-resizer-hover { /* affects both open and closed states */ -} -/* NOTE: It looks best when 'hover' and 'dragging' are set to the same color, - otherwise color shifts while dragging when bar can't keep up with mouse */ -/*.ui-layout-resizer-open-hover ,*/ /* hover-color to 'resize' */ -.ui-layout-resizer-dragging { /* resizer beging 'dragging' */ - background: #DDD; - width: dol_optimize_smallscreen)?'8':'24'); ?>px; -} -.ui-layout-resizer-dragging { /* CLONED resizer being dragged */ - border-left: 1px solid #BBB; - border-right: 1px solid #BBB; -} -/* NOTE: Add a 'dragging-limit' color to provide visual feedback when resizer hits min/max size limits */ -.ui-layout-resizer-dragging-limit { /* CLONED resizer at min or max size-limit */ - background: #E1A4A4; /* red */ -} -.ui-layout-resizer-closed:hover { - background-color: #EEDDDD; -} -.ui-layout-resizer-sliding { /* resizer when pane is 'slid open' */ - opacity: .10; /* show only a slight shadow */ - filter: alpha(opacity=10); - } - .ui-layout-resizer-sliding-hover { /* sliding resizer - hover */ - opacity: 1.00; /* on-hover, show the resizer-bar normally */ - filter: alpha(opacity=100); - } -/* sliding resizer - add 'outside-border' to resizer on-hover - * this sample illustrates how to target specific panes and states */ -.ui-layout-resizer-north-sliding-hover { border-bottom-width: 1px; } -.ui-layout-resizer-south-sliding-hover { border-top-width: 1px; } -.ui-layout-resizer-west-sliding-hover { border-right-width: 1px; } -.ui-layout-resizer-east-sliding-hover { border-left-width: 1px; } - -/* - * TOGGLER-BUTTONS - */ -.ui-layout-toggler { - border-top: 1px solid #AAA; /* match pane-border */ - border-right: 1px solid #AAA; /* match pane-border */ - border-bottom: 1px solid #AAA; /* match pane-border */ - background-color: #DDD; - top: 5px !important; - } -.ui-layout-toggler-open { - height: 48px !important; - width: 5px !important; - -moz-border-radius:0px 10px 10px 0px; - -webkit-border-radius:0px 10px 10px 0px; - border-radius:0px 10px 10px 0px; -} -.ui-layout-toggler-closed { - height: 48px !important; - width: 5px !important; - -moz-border-radius:0px 10px 10px 0px; - -webkit-border-radius:0px 10px 10px 0px; - border-radius:0px 10px 10px 0px; -} -.ui-layout-toggler .content { /* style the text we put INSIDE the togglers */ - color: #666; - font-size: 12px; - font-weight: bold; - width: 100%; - padding-bottom: 0.35ex; /* to 'vertically center' text inside text-span */ -} - -/* hide the toggler-button when the pane is 'slid open' */ -.ui-layout-resizer-sliding ui-layout-toggler { - display: none; -} - -.ui-layout-north { - height: dol_optimize_smallscreen)?'40':'40'); ?>px !important; -} - -/* ECM */ - -#containerlayout .ecm-layout-pane { /* all 'panes' */ - background: #FFF; - border: 1px solid #BBB; - /* DO NOT add scrolling (or padding) to 'panes' that have a content-div, - otherwise you may get double-scrollbars - on the pane AND on the content-div - */ - padding: 0px; - overflow: auto; -} -/* (scrolling) content-div inside pane allows for fixed header(s) and/or footer(s) */ -#containerlayout .ecm-layout-content { - padding: 10px; - position: relative; /* contain floated or positioned elements */ - overflow: auto; /* add scrolling to content-div */ -} - -.ecm-layout-toggler { - background-color: #DDD; - } -.ecm-layout-toggler-open { - height: 48px !important; - width: 6px !important; -} -.ecm-layout-toggler-closed { - height: 48px !important; - width: 6px !important; -} -.ecm-layout-toggler .content { /* style the text we put INSIDE the togglers */ - color: #666; - font-size: 12px; - font-weight: bold; - width: 100%; - padding-bottom: 0.35ex; /* to 'vertically center' text inside text-span */ -} -#ecm-layout-west-resizer { - width: 6px !important; -} - -.ecm-layout-resizer { /* all 'resizer-bars' */ - border: 1px solid #BBB; - border-width: 0; - } -.ecm-layout-resizer-closed { -} - -.ecm-in-layout-center { - border-left: 1px !important; - border-right: 0px !important; - border-top: 0px !important; -} - -.ecm-in-layout-south { - border-left: 0px !important; - border-right: 0px !important; - border-bottom: 0px !important; - padding: 4px 0 4px 4px !important; -} - - - -/* ============================================================================== */ -/* Onglets */ -/* ============================================================================== */ - -div.tabs { - top: 20px; - margin: 0px 0px 10px 0px; - text-align: left; - width: 100%; - background-image: url(); - height: 25px; - background-repeat: repeat-x; - background-position: left; -} - -div.tabs a.tabTitle { - padding: 4px 10px; - margin-left: 25px; - position: relative; - float: left; - height: 17px; - color: #FFF; - line-height: 16px; - font-weight: bold; - font-size: 14px; - display: block; - background-color: #202020; -} - -div.tabs a.tabTitle img { -position: absolute; -top: 4px; -left: -20px; -} - -div.tabs a.tab { - display: block; - width: auto; - font-size: 11px; - height: 25px; - line-height: 25px; - color: #FFFFFF; - text-decoration: none; - position: relative; - padding: 0px 10px 0px 10px; -} - -div.tabs a.tab:active, .tabactive { - background-color: #888 !important; - color: #D45416; - border-bottom: 0px; - background-image: none; - -} - -div.tabs a.tab:hover { - color: #FFFFFF; - background-color: #505050; -} - -/*div.tabs { - top: 20px; - margin: 1px 0px 0px 0px; - padding: 0px 6px 0px 0px; - text-align: ; -} - -*/ - -div.tabBar { - margin: 0px 0px 10px 0px; -} - -div.tabsAction { - margin: 20px 0em 1px 0em; - padding: 0em 0em; - text-align: right; -} - -/* -a.tabTitle { - background: #5088A9; - color: white; - font-family: ; - font-weight: normal; - padding: 0px 6px; - margin: 0px 6px; - text-decoration: none; - white-space: nowrap; - border-: 1px solid #555555; - border-: 1px solid #D8D8D8; - border-top: 1px solid #D8D8D8; -} - -a.tab:link { - background: #dee7ec; - color: #436976; - font-family: ; - padding: 0px 6px; - margin: 0em 0.2em; - text-decoration: none; - white-space: nowrap; - -moz-border-radius-topleft:6px; - -moz-border-radius-topright:6px; - - border-: 1px solid #555555; - border-: 1px solid #D8D8D8; - border-top: 1px solid #D8D8D8; -} -a.tab:visited { - background: #dee7ec; - color: #436976; - font-family: ; - padding: 0px 6px; - margin: 0em 0.2em; - text-decoration: none; - white-space: nowrap; - -moz-border-radius-topleft:6px; - -moz-border-radius-topright:6px; - - border-: 1px solid #555555; - border-: 1px solid #D8D8D8; - border-top: 1px solid #D8D8D8; -} -a.tab#active { - background: white; - border-bottom: #dee7ec 1px solid; - font-family: ; - color: #436976; - padding: 0px 6px; - margin: 0em 0.2em; - text-decoration: none; - -moz-border-radius-topleft:6px; - -moz-border-radius-topright:6px; - - border-: 1px solid #555555; - border-: 1px solid #D8D8D8; - border-top: 1px solid #D8D8D8; - border-bottom: 1px solid white; -} -a.tab:hover { - background: white; - color: #436976; - font-family: ; - padding: 0px 6px; - margin: 0em 0.2em; - text-decoration: none; - -moz-border-radius-topleft:6px; - -moz-border-radius-topright:6px; - - border-: 1px solid #555555; - border-: 1px solid #D8D8D8; - border-top: 1px solid #D8D8D8; -} - -a.tabimage { - color: #436976; - font-family: ; - text-decoration: none; - white-space: nowrap; -} -*/ -td.tab { - background: #dee7ec; -} - -span.tabspan { - background: #dee7ec; - color: #436976; - font-family: ; - padding: 0px 6px; - margin: 0em 0.2em; - text-decoration: none; - white-space: nowrap; - -moz-border-radius-topleft:6px; - -moz-border-radius-topright:6px; - - border-: 1px solid #555555; - border-: 1px solid #D8D8D8; - border-top: 1px solid #D8D8D8; -} - -/* ============================================================================== */ -/* Boutons actions */ -/* ============================================================================== */ - -div.divButAction { margin-bottom: 1.4em; } - -.butAction, .butAction:link, .butAction:visited, .butAction:hover, .butAction:active, .butActionDelete, .butActionDelete:link, .butActionDelete:visited, .butActionDelete:hover, .butActionDelete:active { - font-family:"Trebuchet MS",Arial,Helvetica,sans-serif; - font-weight: bold; - background: url() repeat-x; - color: #FFF !important; - padding: 0px 10px 0px 10px; - margin: 0px 10px 0px 10px; - text-decoration: none; - white-space: nowrap; - font-size: 12px; - height: 18px; - line-height: 18px; - cursor: pointer; - margin-bottom: 10px; -} - -.butAction:hover { -} - -.butActionDelete { - background: url() repeat-x !important; - color: #FFF; -} - -.butActionDelete:link, .butActionDelete:visited, .butActionDelete:hover, .butActionDelete:active { -} - -.butActionDelete:hover { -} - -.butActionRefused { - font-family:"Trebuchet MS",Arial,Helvetica,sans-serif; - font-weight: bold; - background: url() repeat-x; - color: #AAA !important; - padding: 0px 10px 0px 10px; - margin: 0px 10px 0px 10px; - text-decoration: none; - white-space: nowrap; - font-size: 12px; - height: 18px; - line-height: 18px; - margin-bottom: 10px; - cursor: not-allowed; -} - -global->MAIN_BUTTON_HIDE_UNAUTHORIZED)) { ?> -.butActionRefused { - display: none; -} - - -span.butAction, span.butActionDelete { - cursor: pointer; -} - - -/* ============================================================================== */ -/* Tables */ -/* ============================================================================== */ - -.allwidth { - width: 100%; -} - -/* -#undertopmenu { -background-image: url(""); -background-repeat: repeat-x; -} -*/ - -.paddingrightonly { - border-collapse: collapse; - border: 0px; - margin-left: 0px; - padding-: 0px !important; - padding-: 4px !important; -} -.nocellnopadd { -list-style-type:none; -margin: 0px; -padding: 0px; -} - -.boxhandle { - margin: 1px 1px 0px 0px; -} - -.notopnoleft { -border-collapse: collapse; -border: 0px; -padding-top: 0px; -padding-: 0px; -padding-: 10px; -padding-bottom: 4px; -margin: 0px 0px; -} -.notopnoleftnoright { -border-collapse: collapse; -border: 0px; -padding-top: 0px; -padding-left: 0px; -padding-right: 0px; -padding-bottom: 4px; -margin: 0px 0px 0px 0px; -} - - -table.border, table.dataTable, .table-border, .table-border-col, .table-key-border-col, .table-val-border-col, div.border { - border-collapse: collapse; - padding: 10px; - border-spacing: 2px; - border: 1px solid #EFEFEF; -} -table.border, table.dataTable, .table-border { - -webkit-box-shadow: #CCCCCC 2px 4px 2px; - border: 2px solid #BBBBBB; -} -table.border.formdoc { - padding: 0px; - border-collapse: collapse; - border: 1px solid #666; -} - -table.border.formdoc td { - margin: 0px; - padding: 0px; - border: none; -} - -table.border td, div.border div div.tagtd { - padding: 4px; - border: 1px solid #EFEFEF; - border-spacing: 0px; - /*border-collapse: collapse;*/ - margin: 0px; -} - -table.border table td { - border: none; -} - -td.border, div.tagtable div div.border { - border-top: 1px solid #000000; - border-right: 1px solid #000000; - border-bottom: 1px solid #000000; - border-left: 1px solid #000000; -} - -.table-key-border-col { - width: 25%; - vertical-align:top; -} -.table-val-border-col { - width:auto; -} - -/* Main boxes */ - -table.noborder, div.noborder form { - /*box-shadow: 2px 4px 2px #CCCCCC; - -moz-box-shadow: 2px 4px 2px #CCCCCC; - -webkit-box-shadow: 2px 4px 2px #CCCCCC; */ - border-collapse: collapse; - /*border: 1px solid #666;*/ - -} - -table.noborder tr, div.noborder form { -} - -table.noborder td, div.noborder div { -} - -table.nobordernopadding { -border-collapse: collapse; -border: 0px; -} -table.nobordernopadding tr { -border: 0px; -padding: 0px 0px; -} -table.nobordernopadding td { - border: 0px; - padding: 0px 0px 0px 0px !important; -} - -/* For lists */ - -table.liste { - /*background-image: url();*/ - background-repeat: no-repeat; - background-position: top right; - vertical-align: text-top; - border-collapse: collapse; -} -table.liste td { -padding: 0px 5px; -} - -table.noborder { - /*background-image: url();*/ - background-repeat: no-repeat; - background-position: top right; - vertical-align: text-top; -} - -.tagtable, .table-border { display: table; } -.tagtr, .table-border-row { display: table-row; } -.tagtd, .table-border-col, .table-key-border-col, .table-val-border-col { display: table-cell; } - -/* Pagination */ -div.refidpadding { - padding-top: dol_use_jmobile)?'8':'12'; ?>px; -} -div.refid { - padding-top: dol_use_jmobile)?'5':'12'; ?>px; - font-weight: bold; - color: #666; - font-size: 120%; -} - -div.pagination { - float: right; -} -div.pagination a { - font-weight: normal; -} -div.pagination ul -{ - list-style: none; - display: inline-block; - padding-left: 0px; - padding-right: 0px; - margin: 0; -} -div.pagination li { - display: inline-block; - padding-left: 0px; - padding-right: 0px; - padding-top: 6px; - padding-bottom: 6px; -} -.pagination { - display: inline-block; - padding-left: 0; - border-radius: 4px; -} - -div.pagination li a, -div.pagination li span { - /*position: relative;*/ - /*float: left;*/ - padding: 6px 12px; - margin-left: -1px; - line-height: 1.42857143; - color: #000; - text-decoration: none; - background-color: #fff; - border: 1px solid #ddd; -} -div.pagination li:first-child a, -div.pagination li:first-child span { - margin-left: 0; - border-top-left-radius: 4px; - border-bottom-left-radius: 4px; -} -div.pagination li:last-child a, -div.pagination li:last-child span { - border-top-right-radius: 4px; - border-bottom-right-radius: 4px; -} -div.pagination li a:hover, -div.pagination li span:hover, -div.pagination li a:focus, -div.pagination li span:focus { - color: #000; - background-color: #eee; - border-color: #ddd; -} -div.pagination li .active a, -div.pagination li .active span, -div.pagination li .active a:hover, -div.pagination li .active span:hover, -div.pagination li .active a:focus, -div.pagination li .active span:focus { - z-index: 2; - color: #fff; - cursor: default; - background-color: ; - border-color: #337ab7; -} -div.pagination .disabled span, -div.pagination .disabled span:hover, -div.pagination .disabled span:focus, -div.pagination .disabled a, -div.pagination .disabled a:hover, -div.pagination .disabled a:focus { - color: #777; - cursor: not-allowed; - background-color: #fff; - border-color: #ddd; -} -div.pagination li .active { - text-decoration: underline; -} -div.pagination li.paginationafterarrows { - margin-left: 10px; -} - -tr.liste_titre, form.liste_titre { - height: 25px; - background-repeat: no-repeat; - background-color: #C8C8C8; - color: #333333; - font-family: ; - font-weight: normal; - /* text-decoration: underline; */ - /* border-bottom: 1px solid #FDFFFF; */ - background-image: url(); - background-position: top right; -} - -th.liste_titre_sel, td.liste_titre_sel, th.liste_titre { - color: #FFFFFF !important; -} - -tr.liste_total, form.liste_total { - height: 25px; - border-top: 1px solid #333; -} - -div#stats { -} - -div.liste_titre, tr.liste_titre, form.liste_titre { - text-align: ; -} - -div.liste_titre a, tr.liste_titre a, form.liste_titre a { - color: #333333; - margin: 0px 5px; -} - -div.liste_titre td, tr.liste_titre td, form.liste_titre div { - padding: 0px 5px; - vertical-align: middle; - background: none !important; -} - -div.liste_titre, th.liste_titre, td.liste_titre -{ - background-repeat: repeat-x; - color: #333333; - font-family: ; - font-weight: normal; - background-image: none; - background: none; -} - -div.liste_titre input.button, tr.liste_titre input.button, form.liste_titre input.button { - float: left; - position: relative; - /*margin: 30px 10px 10px 0px;*/ -} - -th.liste_titre_sel, td.liste_titre_sel, div.liste_titre_sel -{ - background: #505050; - background-repeat: repeat-x; - color: #FFFFFF; - font-family: ; - font-weight: normal; - /* text-decoration: underline; */ - /* border-bottom: 1px solid #FDFFFF; */ -} - -input.liste_titre { - background: transparent; - background-repeat: repeat-x; - border: 0px; -} - -tr.liste_total td, form.liste_total div { - border-top: 1px solid #DDDDDD; - background: #F0F0F0; - background-repeat: repeat-x; - color: #332266; - font-weight: normal; - padding: 5px; -} - -.impair { - background: #eaeaea; - font-family: ; - border: 0px; -} - -.impair:hover { - background: #c0c4c7; - border: 0px; -} - -tr.impair td.nohover, form.impair div.nohover { - background: #eaeaea; -} - -.pair { - background: #FFFFFF; - font-family: ; - border: 0px; -} - -.pair:hover { - background: #c0c4c7; - border: 0px; -} - -tr.pair td.nohover { - background: #FFFFFF; -} - -.pair td, .impair td, .pair div, .impair div -{ - padding: 2px 3px !important; -} - -.noshadow { - -moz-box-shadow: 0px 0px 0px #CCC !important; - -webkit-box-shadow: 0px 0px 0px #CCC !important; - box-shadow: 0px 0px 0px #CCC !important; -} - - -/* - * Boxes - */ - -.boxstats { - - margin: 4px; - padding: 4px; - /*-moz-box-shadow: 4px 4px 4px #DDD; - -webkit-box-shadow: 4px 4px 4px #DDD; - box-shadow: 4px 4px 4px #DDD; - margin-bottom: 8px !important;*/ - border: 1px solid #AAA; - text-align: center; - border-radius: 5px; -} - -.box { - padding-right: 0px; - padding-left: 0px; - padding-bottom: 4px; -} - -tr.box_titre { - height: 24px; - background: #7699A9; - background-image: url(); - background-repeat: repeat-x; - color: #FFFFFF; - font-family: , sans-serif; - font-weight: normal; - border-bottom: 1px solid #FDFFFF; - -moz-border-radius-topleft:6px; - -moz-border-radius-topright:6px; -} - -tr.box_titre td.boxclose { - width: 30px; -} - -tr.box_impair { -/* background: #e6ebed; */ -background: #eaeaea; -font-family: ; -} - -tr.box_pair { -/* background: #d0d4d7; */ -background: #f4f4f4; -font-family: ; -} - -.formboxfilter { - vertical-align: middle; - margin-bottom: 6px; -} -.formboxfilter input[type=image] -{ - top: 3px; - position: relative; -} - - - -/* - * Ok, Warning, Error - */ - -.ok { color: #114466; } -.warning { color: #887711; } -.error { color: #550000 !important; font-weight: bold; } - -td.highlights { background: #f9c5c6; } - -div.ok { - color: #114466; -} - -div.warning { - color: #997711; - padding: 0.2em 0.2em 0.2em 0.2em; - margin: 0.5em 0em 0.5em 0em; - border: 1px solid #c0c0d0; - -moz-border-radius:6px; - background: #efefd4; -} - -div.error { - color: #FFFFFF; - font-weight: bold; - text-align: left; - padding-left: 10px; - background-color: #AD1800; - height: 20px; - line-height: 20px; - margin-bottom: 20px; -} - -#login div.error { - margin-top: 20px; - } - -/* Info admin */ -div.info { - color: #505050; - padding: 0.2em 0.2em 0.2em 0.2em; - margin: 0.5em 0em 0.5em 0em; - border: 1px solid #878003; - background: #F4EAA2; -} - - -/* - * Liens Payes/Non payes - */ - -a.normal:link { font-weight: normal } -a.normal:visited { font-weight: normal } -a.normal:active { font-weight: normal } -a.normal:hover { font-weight: normal } - -a.impayee:link { font-weight: bold; color: #550000; } -a.impayee:visited { font-weight: bold; color: #550000; } -a.impayee:active { font-weight: bold; color: #550000; } -a.impayee:hover { font-weight: bold; color: #550000; } - - - -/* - * Other - */ - -.product_line_stock_ok { color: #002200; } -.product_line_stock_too_low { color: #664400; } - -.fieldrequired { font-weight: bold; color: #000055; } - -.dolgraphtitle { margin-top: 6px; margin-bottom: 4px; } -.dolgraphtitlecssboxes { margin: 0px; } - -.photo { -border: 0px; -/* filter:alpha(opacity=55); */ -/* opacity:.55; */ -} - -div.titre { - font-family: ; - font-weight: normal; - color: #842F00; - font-size: 16px; - text-decoration: none; -} - -#pictotitle { - margin-right: 15px; -} - -#dolpaymenttable { width: 600px; font-size: 13px; } -#tablepublicpayment { border: 1px solid #CCCCCC !important; width: 100%; } -#tablepublicpayment .CTableRow1 { background-color: #F0F0F0 !important; } -#tablepublicpayment tr.liste_total { border-bottom: 1px solid #CCCCCC !important; } -#tablepublicpayment tr.liste_total td { border-top: none; } - - -/* ============================================================================== */ -/* Formulaire confirmation (When Ajax JQuery is used) */ -/* ============================================================================== */ - -.ui-dialog-titlebar { -} -.ui-dialog-content { - font-size: px !important; -} - -/* ============================================================================== */ -/* Formulaire confirmation (When HTML is used) */ -/* ============================================================================== */ - -table.valid { - border-top: solid 1px #E6E6E6; - border-: solid 1px #E6E6E6; - border-: solid 1px #444444; - border-bottom: solid 1px #555555; - padding-top: 0px; - padding-left: 0px; - padding-right: 0px; - padding-bottom: 0px; - margin: 0px 0px; - background: #D5BAA8; -} - -.validtitre { - background: #D5BAA8; - font-weight: bold; -} - - -/* ============================================================================== */ -/* Tooltips */ -/* ============================================================================== */ - -#tooltip { -position: absolute; -width: px; -border-top: solid 1px #BBBBBB; -border-: solid 1px #BBBBBB; -border-: solid 1px #444444; -border-bottom: solid 1px #444444; -padding: 2px; -z-index: 3000; -background-color: #FFFFF0; -opacity: 1; --moz-border-radius:6px; -} - - - -/* ============================================================================== */ -/* Calendar */ -/* ============================================================================== */ - -img.datecallink { padding-left: 2px !important; padding-right: 2px !important; padding-bottom: 2px !important; } - -.ui-datepicker-trigger { - vertical-align: middle; - cursor: pointer; -} - -.bodyline { - -moz-border-radius:8px; - border: 1px #E4ECEC outset; - padding: 0px; - margin-bottom: 5px; - z-index: 3000; -} -table.dp { - width: 180px; - background-color: #FFFFFF; - border-top: solid 2px #DDDDDD; - border-: solid 2px #DDDDDD; - border-: solid 1px #222222; - border-bottom: solid 1px #222222; -} -.dp td, .tpHour td, .tpMinute td{padding:2px; font-size:10px;} -/* Barre titre */ -.dpHead,.tpHead,.tpHour td:Hover .tpHead{ - font-weight:bold; - background-color:#BB6644; - color:white !important; - font-size:11px; - cursor:auto; - text-align: center; -} -/* Barre navigation */ -.dpButtons,.tpButtons { - text-align:center; - background-color:#BB6644; - color:#FFFFFF; - font-weight:bold; - border: 1px outset black; - cursor:pointer; -} -.dpButtons:Active,.tpButtons:Active{border: 1px outset black;} -.dpDayNames td,.dpExplanation {background-color:#D9DBE1; font-weight:bold; text-align:center; font-size:11px;} -.dpExplanation{ font-weight:normal; font-size:11px;} -.dpWeek td{text-align:center} - -.dpToday,.dpReg,.dpSelected { cursor:pointer; } -.dpToday{font-weight:bold; color:black; background-color:#DDDDDD;} -.dpReg:Hover,.dpToday:Hover{background-color:black;color:white} - -/* Jour courant */ -.dpSelected {background-color:#BB6644;color:white;font-weight:bold; } - -.tpHour {border-top:1px solid #DDDDDD; border-right:1px solid #DDDDDD;} -.tpHour td {border-left:1px solid #DDDDDD; border-bottom:1px solid #DDDDDD; cursor:pointer;} -.tpHour td:Hover {background-color:black;color:white;} - -.tpMinute {margin-top:5px;} -.tpMinute td:Hover {background-color:black; color:white; } -.tpMinute td {background-color:#D9DBE1; text-align:center; cursor:pointer;} - -/* Bouton X fermer */ -.dpInvisibleButtons -{ -border-style:none; -background-color:transparent; -padding:0px; -font-size:9px; -border-width:0px; -color:#0B63A2; -vertical-align:middle; -cursor: pointer; -} - - -/* ============================================================================== */ -/* Afficher/cacher */ -/* ============================================================================== */ - -div.visible { - display: block; -} - -div.hidden { - display: none; -} - -tr.visible { - display: block; -} - -td.hidden { - display: none; -} - - -/* ============================================================================== */ -/* Module agenda */ -/* ============================================================================== */ - -table.cal_month { border-spacing: 0px; } -.cal_current_month { border-top: 0; border-left: solid 1px #E0E0E0; border-right: 0; border-bottom: solid 1px #E0E0E0; } -.cal_current_month_peruserleft { border-top: 0; border-left: solid 3px #6C7C7B; border-right: 0; border-bottom: solid 1px #E0E0E0; } -.cal_other_month { border-top: 0; border-left: solid 1px #C0C0C0; border-right: 0; border-bottom: solid 1px #C0C0C0; } -.cal_other_month_peruserleft { border-top: 0; border-left: solid 3px #6C7C7B !important; border-right: 0; } -.cal_current_month_right { border-right: solid 1px #E0E0E0; } -.cal_other_month_right { border-right: solid 1px #C0C0C0; } -.cal_other_month { background: #DDDDDD; padding-: 2px; padding-: 1px; padding-top: 0px; padding-bottom: 0px; } -.cal_past_month { background: #EEEEEE; padding-: 2px; padding-: 1px; padding-top: 0px; padding-bottom: 0px; } -.cal_current_month { background: #FFFFFF; padding-: 2px; padding-: 1px; padding-top: 0px; padding-bottom: 0px; } -.cal_current_month_peruserleft { background: #FFFFFF; border-left: solid 3px #6C7C7B; padding-: 2px; padding-: 1px; padding-top: 0px; padding-bottom: 0px; } -.cal_today { background: #FFFFFF; border: solid 2px #C0C0C0; padding-: 2px; padding-: 1px; padding-top: 0px; padding-bottom: 0px; } -.cal_today_peruser { background: #FFFFFF; border-right: solid 1px #6C7C7B; border-top: solid 1px #A0A0A0; border-bottom: solid 1px #A0A0A0; padding-: 2px; padding-: 1px; padding-top: 0px; padding-bottom: 0px; } -.cal_today_peruser_peruserleft { background: #FFFFFF; border-left: solid 3px #6C7C7B; border-top: solid 1px #A0A0A0; border-right: solid 1px #6C7C7B; border-bottom: solid 1px #A0A0A0; padding-: 2px; padding-: 1px; padding-top: 0px; padding-bottom: 0px; } -table.cal_event { border-collapse: collapse; margin-bottom: 1px; } -table.cal_event td { border: 0px; padding-: 0px; padding-: 2px; padding-top: 0px; padding-bottom: 0px; } -ul.cal_event { padding-right: 2px; padding-top: 1px; border: none; list-style-type: none; margin: 0 auto; padding-left: 0px; padding-start: 0px; -khtml-padding-start: 0px; -o-padding-start: 0px; -webkit-padding-start: 0px; -webkit-padding-start: 0px; } -li.cal_event { border: none; list-style-type: none; } -.cal_event a:link { color: #111111; font-size: 11px; font-weight: normal !important; } -.cal_event a:visited { color: #111111; font-size: 11px; font-weight: normal !important; } -.cal_event a:active { color: #111111; font-size: 11px; font-weight: normal !important; } -.cal_event a:hover { color: #111111; font-size: 11px; font-weight: normal !important; } -.peruser_busy { background: #CC8888; } -.peruser_notbusy { background: #EEDDDD; } - - -/* ============================================================================== */ -/* Ajax - Liste deroulante de l'autocompletion */ -/* ============================================================================== */ - -.ui-autocomplete-loading { background: white url() right center no-repeat; } -.ui-autocomplete { - position:absolute; - width:auto; - font-size: 1.0em; - background-color:white; - border:1px solid #888; - margin:0px; - padding:0px; - } -.ui-autocomplete ul { - list-style-type:none; - margin:0px; - padding:0px; - } -.ui-autocomplete ul li.selected { background-color: #D3E5EC;} -.ui-autocomplete ul li { - list-style-type:none; - display:block; - margin:0; - padding:2px; - height:18px; - cursor:pointer; - } - -/* ============================================================================== */ -/* jQuery - jeditable */ -/* ============================================================================== */ - -.editkey_textarea, .editkey_ckeditor, .editkey_string, .editkey_email, .editkey_numeric, .editkey_select, .editkey_autocomplete { - background: url() right top no-repeat; - cursor: pointer; -} - -.editkey_datepicker { - background: url() right center no-repeat; - cursor: pointer; -} - -.editval_textarea.active:hover, .editval_ckeditor.active:hover, .editval_string.active:hover, .editval_email.active:hover, .editval_numeric.active:hover, .editval_select.active:hover, .editval_autocomplete.active:hover, .editval_datepicker.active:hover { - background: white; - cursor: pointer; -} - -.viewval_textarea.active:hover, .viewval_ckeditor.active:hover, .viewval_string.active:hover, .viewval_email.active:hover, .viewval_numeric.active:hover, .viewval_select.active:hover, .viewval_autocomplete.active:hover, .viewval_datepicker.active:hover { - background: white; - cursor: pointer; -} - -.viewval_hover { - background: white; -} - - -/* ============================================================================== */ -/* Admin Menu */ -/* ============================================================================== */ - -/* CSS for treeview */ -.treeview ul { background-color: transparent !important; margin-top: 0; } -.treeview li { background-color: transparent !important; padding: 0 0 0 16px !important; min-height: 20px; } -.treeview .hover { color: black !important; } - - -/* ============================================================================== */ -/* Show Excel tabs */ -/* ============================================================================== */ - -.table_data -{ - border-style:ridge; - border:1px solid; -} -.tab_base -{ - background:#C5D0DD; - font-weight:bold; - border-style:ridge; - border: 1px solid; - cursor:pointer; -} -.table_sub_heading -{ - background:#CCCCCC; - font-weight:bold; - border-style:ridge; - border: 1px solid; -} -.table_body -{ - background:#F0F0F0; - font-weight:normal; - font-family:sans-serif; - border-style:ridge; - border: 1px solid; - border-spacing: 0px; - border-collapse: collapse; -} -.tab_loaded -{ - background:#222222; - color:white; - font-weight:bold; - border-style:groove; - border: 1px solid; - cursor:pointer; -} - - -/* ============================================================================== */ -/* CSS for color picker */ -/* ============================================================================== */ - -A.color, A.color:active, A.color:visited { - position : relative; - display : block; - text-decoration : none; - width : 10px; - height : 10px; - line-height : 10px; - margin : 0px; - padding : 0px; - border : 1px inset white; -} -A.color:hover { - border : 1px outset white; -} -A.none, A.none:active, A.none:visited, A.none:hover { - position : relative; - display : block; - text-decoration : none; - width : 10px; - height : 10px; - line-height : 10px; - margin : 0px; - padding : 0px; - cursor : default; - border : 1px solid #b3c5cc; -} -.tblColor { - display : none; -} -.tdColor { - padding : 1px; -} -.tblContainer { - background-color : #b3c5cc; -} -.tblGlobal { - position : absolute; - top : 0px; - left : 0px; - display : none; - background-color : #b3c5cc; - border : 2px outset; -} -.tdContainer { - padding : 5px; -} -.tdDisplay { - width : 50%; - height : 20px; - line-height : 20px; - border : 1px outset white; -} -.tdDisplayTxt { - width : 50%; - height : 24px; - line-height : 12px; - font-family : ; - font-size : 8pt; - color : black; - text-align : center; -} -.btnColor { - width : 100%; - font-family : ; - font-size : 10pt; - padding : 0px; - margin : 0px; -} -.btnPalette { - width : 100%; - font-family : ; - font-size : 8pt; - padding : 0px; - margin : 0px; -} - - -/* Style to overwrites JQuery styles */ -.ui-menu .ui-menu-item a { - text-decoration:none; - display:block; - padding:.2em .4em; - line-height:1.5; - zoom:1; - font-weight: normal; - font-family:; - font-size:1em; -} -.ui-widget { - font-family:; - font-size:px; -} -.ui-button { margin-left: -1px; padding-top: 1px; } -.ui-button-icon-only .ui-button-text { height: 8px; } -.ui-button-icon-only .ui-button-text, .ui-button-icons-only .ui-button-text { padding: 2px 0px 6px 0px; } -.ui-button-text -{ - line-height: 1em !important; -} -.ui-autocomplete-input { margin: 0; padding: 1px; } - - -table.noborder { - margin-bottom: 10px; - position: relative; - border: none; -} - -div.leftContent { - background-color: #FFF; -} - - -/* ============================================================================== */ -/* CKEditor */ -/* ============================================================================== */ - -.cke_editor table, .cke_editor tr, .cke_editor td -{ - border: 0px solid #FF0000 !important; -} -span.cke_skin_kama { padding: 0 !important; } -.cke_wrapper { padding: 4px !important; } - -a.cke_dialog_ui_button -{ - font-family: !important; - background-image: url() !important; - background-position: bottom !important; - border: 1px solid #ACBCBB !important; - -moz-border-radius:0px 5px 0px 5px !important; - -webkit-border-radius:0px 5px 0px 5px !important; - border-radius:0px 5px 0px 5px !important; - -moz-box-shadow: 4px 4px 4px #CCC !important; - -webkit-box-shadow: 4px 4px 4px #CCC !important; - box-shadow: 4px 4px 4px #CCC !important; -} - - -/* ============================================================================== */ -/* File upload */ -/* ============================================================================== */ - -.template-upload { - height: 72px !important; -} - - -/* ============================================================================== */ -/* Login */ -/* ============================================================================== */ - -#login { - display: block; - height: auto; - top: 20px; - margin-bottom: 30px; - } - -div#infoVersion { - position: relative; - width: 100%; - height: 15px; - line-height: 15px; - text-align: center; - font-size: 10px; - background-color: #D6D6D6; - } - -div#logoBox { - position: relative; - width: 100%; - height: auto; - margin-top: 30px; - text-align: center; - } - -div#parameterBox { - position: relative; - width: 100%; - height: auto; - border: 1px solid #666; - border-top: 2px solid #842F00; - background-image: url(); - background-repeat: no-repeat; - background-position: top center; - } - -div#parameterBox div { - width: 100%; - height: 20px; - position: relative; - line-height: 20px; - } - -div#parameterBox div label { - width: 190px; - text-align: right; - display: block; - float: left; - margin-right: 10px; - } - -div#parameterBox div input[type="text"], -div#parameterBox div input[type="password"] { - width: 180px; - height: 16px; - font-size: 10px; - margin-top: 2px; - } - -div#connectionLine { - margin: 10px 0px; - text-align: center; - } - -div#logBox { -margin-top: 25px; -} - -div.captchaBox { - margin-top: 10px; - } - -div.captchaImg { - margin-bottom: 10px; - margin-top: 5px; - height: 40px !important; - } - -img#captcha { - margin-left: 200px; - } - -#captcha_refresh_img { - margin-bottom: 6px; -} - -div#infoLogin { - width: 100%; - height: auto; - text-align: center; - margin-top: 20px; - color: #666; - position: relative; - margin-bottom: 20px; -} - -div.other { - margin: 10px 0px; - text-align: center; - position: relative; - width: 480px; - left: 50%; - margin-left: -240px; - } - -form.listactionsfilter img { - display: none; - } - -form.listactionsfilter input[type="submit"] { - margin: 2px 0px; -} - - - -/* ============================================================================== */ -/* JSGantt */ -/* ============================================================================== */ - -div.scroll2 { - width: px !important; -} - - -/* ============================================================================== */ -/* jFileTree */ -/* ============================================================================== */ - -.ecmfiletree { - width: 99%; - height: 99%; - background: #FFF; - padding-left: 2px; - font-weight: normal; -} - -.fileview { - width: 99%; - height: 99%; - background: #FFF; - padding-left: 2px; - padding-top: 4px; - font-weight: normal; -} - -div.filedirelem { - position: relative; - display: block; - text-decoration: none; -} - -ul.filedirelem { - padding: 2px; - margin: 0 5px 5px 5px; -} -ul.filedirelem li { - list-style: none; - padding: 2px; - margin: 0 10px 20px 10px; - width: 160px; - height: 120px; - text-align: center; - display: block; - float: ; - border: solid 1px #DDDDDD; -} - -ui-layout-north { - -} - -ul.ecmjqft { - font-size: 11px; - line-height: 16px; - padding: 0px; - margin: 0px; - font-weight: normal; -} - -ul.ecmjqft li { - list-style: none; - padding: 0px; - padding-left: 20px; - margin: 0px; - white-space: nowrap; - display: block; -} - -ul.ecmjqft a { - line-height: 16px; - vertical-align: middle; - color: #333; - padding: 0px 0px; - font-weight:normal; - display: inline-block !important; -/* float: left;*/ -} -ul.ecmjqft a:active { - font-weight: bold !important; -} -ul.ecmjqft a:hover { - text-decoration: underline; -} -div.ecmjqft { - vertical-align: middle; - display: inline-block !important; - text-align: right; - position:absolute; - right:8px; -} - -/* Core Styles */ -.ecmjqft LI.directory { font-weight:normal; background: url() left top no-repeat; } -.ecmjqft LI.expanded { font-weight:normal; background: url() left top no-repeat; } -.ecmjqft LI.wait { font-weight:normal; background: url() left top no-repeat; } - - -/* ============================================================================== */ -/* jNotify */ -/* ============================================================================== */ - -.jnotify-container { - position: fixed !important; -global->MAIN_JQUERY_JNOTIFY_BOTTOM)) { ?> - top: auto !important; - bottom: 4px !important; - - text-align: center; - min-width: px; - width: auto; - padding-left: 10px !important; - padding-right: 10px !important; -} - - -/* ============================================================================== */ -/* Maps */ -/* ============================================================================== */ - -.divmap, #google-visualization-geomap-embed-0, #google-visualization-geomap-embed-1, google-visualization-geomap-embed-2 { - -moz-box-shadow: 0px 0px 10px #AAA; - -webkit-box-shadow: 0px 0px 10px #AAA; - box-shadow: 0px 0px 10px #AAA; -} - - -/* ============================================================================== */ -/* Datatable */ -/* ============================================================================== */ - -.sorting_asc { background: url('') no-repeat center right; } -.sorting_desc { background: url('') no-repeat center right; } -.sorting_asc_disabled { background: url('') no-repeat center right; } -.sorting_desc_disabled { background: url('') no-repeat center right; } -.paginate_disabled_previous:hover, .paginate_enabled_previous:hover, .paginate_disabled_next:hover, .paginate_enabled_next:hover -{ - font-weight: normal; -} -.paginate_enabled_previous:hover, .paginate_enabled_next:hover -{ - text-decoration: underline !important; -} -.ui-state-disabled, .ui-widget-content .ui-state-disabled, .ui-widget-header .ui-state-disabled, .paginate_button_disabled { - opacity: .35; - filter: Alpha(Opacity=35); - background-image: none; -} - - -/* ============================================================================== */ -/* Select2 */ -/* ============================================================================== */ - -.selectoptiondisabledwhite { - background: #FFFFFF !important; -} - -.select2-choice, -.select2-drop.select2-drop-above.select2-drop-active, -.select2-container-active .select2-choice, -.select2-container-active .select2-choices, -.select2-dropdown-open.select2-drop-above .select2-choice, -.select2-dropdown-open.select2-drop-above .select2-choices, -.select2-container-multi.select2-container-active .select2-choices -{ - border: 1px solid #aaa; -} -.select2-disabled -{ - color: #888; -} -.select2-drop-active -{ - border: 1px solid #aaa; - border-top: none; -} -a span.select2-chosen -{ - font-weight: normal !important; -} -.select2-container .select2-choice { - background-image: none; - height: 24px; - line-height: 24px; -} -.select2-choices .select2-search-choice { - border: 1px solid #aaa !important; -} -.select2-results .select2-no-results, .select2-results .select2-searching, .select2-results .select2-ajax-error, .select2-results .select2-selection-limit -{ - background: #FFFFFF; -} -.select2-container-multi.select2-container-disabled .select2-choices { - background-color: #FFFFFF; - background-image: none; - border: none; - cursor: default; -} -.select2-container-multi .select2-choices .select2-search-choice { - margin-bottom: 3px; -} -/* To emulate select 2 style */ -.select2-container-multi-dolibarr .select2-choices-dolibarr .select2-search-choice-dolibarr { - padding: 2px 5px 1px 5px; - margin: 0 0 2px 3px; - position: relative; - line-height: 13px; - color: #333; - cursor: default; - border: 1px solid #aaaaaa; - border-radius: 3px; - -webkit-box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, 0.05); - box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, 0.05); - background-clip: padding-box; - -webkit-touch-callout: none; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - background-color: #e4e4e4; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#f4f4f4', GradientType=0); - background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), color-stop(100%, #eee)); - background-image: -webkit-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%); - background-image: -moz-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%); - background-image: linear-gradient(to bottom, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%); -} -.select2-container-multi-dolibarr .select2-choices-dolibarr .select2-search-choice-dolibarr a { - font-weight: normal; -} -.select2-container-multi-dolibarr .select2-choices-dolibarr li { - float: left; - list-style: none; -} -.select2-container-multi-dolibarr .select2-choices-dolibarr { - height: auto !important; - height: 1%; - margin: 0; - padding: 0 5px 0 0; - position: relative; - cursor: text; - overflow: hidden; -} - - -/* ============================================================================== */ -/* JMobile */ -/* ============================================================================== */ - -li.ui-li-divider .ui-link { - color: #FFF !important; -} -.ui-btn { - margin: 0.1em 2px -} -a.ui-link, a.ui-link:hover, .ui-btn:hover, span.ui-btn-text:hover, span.ui-btn-inner:hover { - text-decoration: none !important; -} - -.ui-btn-inner { - padding-left: 10px; - padding-right: 10px; - /* white-space: normal; */ /* Warning, enable this break the truncate feature */ -} -.ui-select .ui-btn-icon-right .ui-btn-inner { - padding-right: 36px; -} -.ui-select .ui-btn-icon-left .ui-btn-inner { - padding-left: 36px; -} - -.fiche .ui-controlgroup { - margin: 0px; - padding-bottom: 0px; -} -div.ui-controlgroup-controls div.tabsElem -{ - margin-top: 2px; -} -div.ui-controlgroup-controls div.tabsElem a -{ - -moz-box-shadow: 0 -3px 6px rgba(0,0,0,.2); - -webkit-box-shadow: 0 -3px 6px rgba(0,0,0,.2); - box-shadow: 0 -3px 6px rgba(0,0,0,.2); - border: none; -} -a.tab span.ui-btn-inner -{ - border: none; - padding: 0; -} - -.ui-body-c { - border: 1px solid #CCC; - text-shadow: none; -} -.ui-link { - color: rgb() !important; -} - -a.ui-link { - word-wrap: break-word; -} - -/* force wrap possible onto field overflow does not works */ -.formdoc .ui-btn-inner -{ - white-space: normal; - overflow: hidden; - text-overflow: hidden; -} - -/* Warning: setting this may make screen not beeing refreshed after a combo selection */ -.ui-body-c { - background: #fff; -} - -div.ui-radio -{ - display: inline-block; -} -.ui-checkbox input, .ui-radio input { - height: auto; - width: auto; - margin: 4px; - position: static; -} -div.ui-checkbox label+input, div.ui-radio label+input { - position: absolute; -} - -.ui-mobile fieldset -{ - padding-bottom: 10px; margin-bottom: 4px; border-bottom: 1px solid #AAAAAA !important; -} - -ul.ulmenu { - border-radius: 0; - -webkit-border-radius: 0; -} -.ui-body-c, .ui-btn-up-c, .ui-btn-hover-c { - border: none !important; -} - -/* Style for first level menu with jmobile */ -.ui-bar-b, .lilevel0 { - background: rgb(); - background-repeat: repeat-x; - color: # !important; -} -.alilevel0 { - color: # !important; - text-shadow: 1px 0px 1px #; -} -.alilevel1 { - color: # !important; - text-shadow: 1px 0px 1px #; -} -.lilevel1 { - background-image: -webkit-gradient(linear,left top,left bottom,from( #eee ),to( #e1e1e1 )) !important; - background-image: -webkit-linear-gradient( #eee,#e1e1e1 ) !important; - background-image: -moz-linear-gradient( #eee,#e1e1e1 ) !important; - background-image: -ms-linear-gradient( #eee,#e1e1e1 ) !important; - background-image: -o-linear-gradient( #eee,#e1e1e1 ) !important; - background-image: linear-gradient( #eee,#e1e1e1 ) !important; -} -.lilevel2 -{ - padding-left: 22px; -} -.lilevel3 -{ - padding-left: 54px; -} - - -close(); diff --git a/htdocs/theme/bureau2crea/thumb.png b/htdocs/theme/bureau2crea/thumb.png deleted file mode 100644 index 75beae21b09..00000000000 Binary files a/htdocs/theme/bureau2crea/thumb.png and /dev/null differ diff --git a/htdocs/theme/bureau2crea/tpl/README b/htdocs/theme/bureau2crea/tpl/README deleted file mode 100644 index d3bc4b4679f..00000000000 --- a/htdocs/theme/bureau2crea/tpl/README +++ /dev/null @@ -1,3 +0,0 @@ -README (english) - -This directory is used to store custom templates. (system core and modules) \ No newline at end of file diff --git a/htdocs/theme/bureau2crea/tpl/index.html b/htdocs/theme/bureau2crea/tpl/index.html deleted file mode 100644 index e69de29bb2d..00000000000 diff --git a/htdocs/theme/cameleo/ckeditor/config.js b/htdocs/theme/cameleo/ckeditor/config.js deleted file mode 100644 index 97f1c0a0b62..00000000000 --- a/htdocs/theme/cameleo/ckeditor/config.js +++ /dev/null @@ -1,92 +0,0 @@ -/* -Copyright (c) 2003-2010, CKSource - Frederico Knabben. All rights reserved. -For licensing, see LICENSE.html or http://ckeditor.com/license -*/ - -CKEDITOR.editorConfig = function( config ) -{ - // Define changes to default configuration here. - // http://docs.cksource.com/CKEditor_3.x/Developers_Guide - // http://docs.cksource.com/ckeditor_api/symbols/CKEDITOR.config.html - config.enterMode = CKEDITOR.ENTER_BR; - config.resize_enabled = false; - //config.resize_maxHeight = 3000; - //config.resize_maxWidth = 3000; - //config.height = '300px'; - //config.resize_dir = 'vertical'; // horizontal, vertical, both - config.removePlugins = 'elementspath,save'; // config.removePlugins = 'elementspath,save,font'; - config.removeDialogTabs = 'flash:advanced'; // config.removeDialogTabs = 'flash:advanced;image:Link'; - config.protectedSource.push( /<\?[\s\S]*?\?>/g ); // Prevent PHP Code to be formatted - //config.menu_groups = 'clipboard,table,anchor,link,image'; // for context menu 'clipboard,form,tablecell,tablecellproperties,tablerow,tablecolumn,table,anchor,link,image,flash,checkbox,radio,textfield,hiddenfield,imagebutton,button,select,textarea' - //config.language = 'de'; - //config.defaultLanguage = 'en'; - //config.contentsLanguage = 'fr'; - config.fullPage = false; // Not a full html page string, just part of it - config.dialog_backgroundCoverColor = 'rgb(255, 254, 253)'; - //config.contentsCss = '/css/mysitestyles.css'; - config.image_previewText=' '; // Must no be empty - - config.toolbar_Full = - [ - ['Source','-','Save','NewPage','Preview','-','Templates'], - ['Cut','Copy','Paste','PasteText','PasteFromWord','-','Print', 'SpellChecker', 'Scayt'], - ['Undo','Redo','-','Find','Replace','-','SelectAll','RemoveFormat'], - ['Form', 'Checkbox', 'Radio', 'TextField', 'Textarea', 'Select', 'Button', 'ImageButton', 'HiddenField'], - '/', - ['Bold','Italic','Underline','Strike','-','Subscript','Superscript'], - ['NumberedList','BulletedList','-','Outdent','Indent','Blockquote','CreateDiv'], - ['JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock'], - ['BidiLtr', 'BidiRtl'], - ['Link','Unlink','Anchor'], - ['Image','Flash','Table','HorizontalRule','Smiley','SpecialChar','PageBreak','Iframe'], - '/', - ['Styles','Format','Font','FontSize'], - ['TextColor','BGColor'], - ['Maximize', 'ShowBlocks','-','About'] - ]; - - // Used for mailing fields - config.toolbar_dolibarr_mailings = - [ - ['Source','Maximize'], - ['Cut','Copy','Paste','-','SpellChecker'], - ['Undo','Redo','-','Find','Replace'], - ['Format','Font','FontSize'], - ['Bold','Italic','Underline','Strike','Subscript','Superscript','-','TextColor','RemoveFormat'], - ['NumberedList','BulletedList','Outdent','Indent','CreateDiv'], - ['JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock'], - ['Link','Unlink','Anchor','Image','Table','HorizontalRule','SpecialChar'] - ]; - - // Used for notes fields - config.toolbar_dolibarr_notes = - [ - ['Source','Maximize'], - ['Cut','Copy','Paste','-','SpellChecker'], - ['Undo','Redo','-','Find','Replace'], - ['Format','Font','FontSize'], - ['Bold','Italic','Underline','Strike','Subscript','Superscript','-','TextColor','RemoveFormat'], - ['NumberedList','BulletedList','Outdent','Indent'], - ['JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock'], - ['Link','Unlink','Image','Table','HorizontalRule','SpecialChar'] - ]; - - // Used for details lines - config.toolbar_dolibarr_details = - [ - ['Source','Maximize'], - ['Cut','Copy','Paste','-','SpellChecker'], - ['Font','FontSize'], - ['Bold','Italic','Underline','Strike','Subscript','Superscript','-','TextColor','RemoveFormat'], - ['NumberedList','BulletedList','Outdent','Indent'], - ['JustifyLeft','JustifyCenter','JustifyRight','JustifyBlock'], - ['Link','Unlink','SpecialChar'] - ]; - - // Used for mailing fields - config.toolbar_dolibarr_readonly = - [ - ['Source','Maximize'], - ['Find'] - ]; -}; diff --git a/htdocs/theme/cameleo/ckeditor/index.html b/htdocs/theme/cameleo/ckeditor/index.html deleted file mode 100644 index e69de29bb2d..00000000000 diff --git a/htdocs/theme/cameleo/graph-color.php b/htdocs/theme/cameleo/graph-color.php deleted file mode 100644 index a09ab902ecd..00000000000 --- a/htdocs/theme/cameleo/graph-color.php +++ /dev/null @@ -1,31 +0,0 @@ - - * Copyright (C) 2004-2007 Laurent Destailleur - * Copyright (C) 2010-2011 Herve Prot - * - * 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 - * the Free Software Foundation; either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ - -/** - * \file htdocs/theme/cameleo/graph-color.php - * \brief File to declare colors to use to build graphics with theme cameleo - * \ingroup core - */ - -global $theme_bordercolor, $theme_datacolor, $theme_bgcolor, $theme_bgcoloronglet; -$theme_bordercolor = array(235,235,224); -$theme_datacolor = array(array(120,130,150), array(200,160,180), array(190,190,220)); -$theme_bgcolor = array(hexdec('F4'),hexdec('F4'),hexdec('F4')); -$theme_bgcoloronglet = array(hexdec('DE'),hexdec('E7'),hexdec('EC')); - diff --git a/htdocs/theme/cameleo/img/1downarrow.png b/htdocs/theme/cameleo/img/1downarrow.png deleted file mode 100644 index 1d134ab3e4e..00000000000 Binary files a/htdocs/theme/cameleo/img/1downarrow.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/1downarrow_selected.png b/htdocs/theme/cameleo/img/1downarrow_selected.png deleted file mode 100644 index 5caf8ead52d..00000000000 Binary files a/htdocs/theme/cameleo/img/1downarrow_selected.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/1uparrow.png b/htdocs/theme/cameleo/img/1uparrow.png deleted file mode 100644 index 70ea061dc5e..00000000000 Binary files a/htdocs/theme/cameleo/img/1uparrow.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/1uparrow_selected.png b/htdocs/theme/cameleo/img/1uparrow_selected.png deleted file mode 100644 index 36d25a408c5..00000000000 Binary files a/htdocs/theme/cameleo/img/1uparrow_selected.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/1updownarrow.png b/htdocs/theme/cameleo/img/1updownarrow.png deleted file mode 100644 index 871ac1c1f29..00000000000 Binary files a/htdocs/theme/cameleo/img/1updownarrow.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/2.png b/htdocs/theme/cameleo/img/2.png deleted file mode 100644 index f592543dd8e..00000000000 Binary files a/htdocs/theme/cameleo/img/2.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/addfile.png b/htdocs/theme/cameleo/img/addfile.png deleted file mode 100644 index 1cb7af0ad8a..00000000000 Binary files a/htdocs/theme/cameleo/img/addfile.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/banner_02.jpg b/htdocs/theme/cameleo/img/banner_02.jpg deleted file mode 100644 index 81635fd2a59..00000000000 Binary files a/htdocs/theme/cameleo/img/banner_02.jpg and /dev/null differ diff --git a/htdocs/theme/cameleo/img/bg-bas-rubrique.png b/htdocs/theme/cameleo/img/bg-bas-rubrique.png deleted file mode 100644 index d2fbe3a7a13..00000000000 Binary files a/htdocs/theme/cameleo/img/bg-bas-rubrique.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/bg-rubrique.png b/htdocs/theme/cameleo/img/bg-rubrique.png deleted file mode 100644 index 9abf1dc1459..00000000000 Binary files a/htdocs/theme/cameleo/img/bg-rubrique.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/bg-titre-rubrique.png b/htdocs/theme/cameleo/img/bg-titre-rubrique.png deleted file mode 100644 index ad6484fcbe9..00000000000 Binary files a/htdocs/theme/cameleo/img/bg-titre-rubrique.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/bg_ListeTitrelong.jpg b/htdocs/theme/cameleo/img/bg_ListeTitrelong.jpg deleted file mode 100644 index 05e49219bf4..00000000000 Binary files a/htdocs/theme/cameleo/img/bg_ListeTitrelong.jpg and /dev/null differ diff --git a/htdocs/theme/cameleo/img/bg_btnBlue.jpg b/htdocs/theme/cameleo/img/bg_btnBlue.jpg deleted file mode 100644 index 7409bacab3e..00000000000 Binary files a/htdocs/theme/cameleo/img/bg_btnBlue.jpg and /dev/null differ diff --git a/htdocs/theme/cameleo/img/bg_btnGreen.jpg b/htdocs/theme/cameleo/img/bg_btnGreen.jpg deleted file mode 100644 index fc1f52c65d4..00000000000 Binary files a/htdocs/theme/cameleo/img/bg_btnGreen.jpg and /dev/null differ diff --git a/htdocs/theme/cameleo/img/bg_btnGrey.jpg b/htdocs/theme/cameleo/img/bg_btnGrey.jpg deleted file mode 100644 index 48911bf6f13..00000000000 Binary files a/htdocs/theme/cameleo/img/bg_btnGrey.jpg and /dev/null differ diff --git a/htdocs/theme/cameleo/img/bg_btnRed.jpg b/htdocs/theme/cameleo/img/bg_btnRed.jpg deleted file mode 100644 index c8c7f55c85d..00000000000 Binary files a/htdocs/theme/cameleo/img/bg_btnRed.jpg and /dev/null differ diff --git a/htdocs/theme/cameleo/img/bg_btn_blue.jpg b/htdocs/theme/cameleo/img/bg_btn_blue.jpg deleted file mode 100644 index 563cebdc3e7..00000000000 Binary files a/htdocs/theme/cameleo/img/bg_btn_blue.jpg and /dev/null differ diff --git a/htdocs/theme/cameleo/img/bg_btn_green.jpg b/htdocs/theme/cameleo/img/bg_btn_green.jpg deleted file mode 100644 index d29a1bb0d61..00000000000 Binary files a/htdocs/theme/cameleo/img/bg_btn_green.jpg and /dev/null differ diff --git a/htdocs/theme/cameleo/img/bg_btn_red.jpg b/htdocs/theme/cameleo/img/bg_btn_red.jpg deleted file mode 100644 index fb11e4f2daf..00000000000 Binary files a/htdocs/theme/cameleo/img/bg_btn_red.jpg and /dev/null differ diff --git a/htdocs/theme/cameleo/img/bg_centerBlock-title.jpg b/htdocs/theme/cameleo/img/bg_centerBlock-title.jpg deleted file mode 100644 index 9666d52336a..00000000000 Binary files a/htdocs/theme/cameleo/img/bg_centerBlock-title.jpg and /dev/null differ diff --git a/htdocs/theme/cameleo/img/bg_inside.gif b/htdocs/theme/cameleo/img/bg_inside.gif deleted file mode 100644 index e2a4f5c5841..00000000000 Binary files a/htdocs/theme/cameleo/img/bg_inside.gif and /dev/null differ diff --git a/htdocs/theme/cameleo/img/bg_leftCategorie.jpg b/htdocs/theme/cameleo/img/bg_leftCategorie.jpg deleted file mode 100644 index f152d6d083f..00000000000 Binary files a/htdocs/theme/cameleo/img/bg_leftCategorie.jpg and /dev/null differ diff --git a/htdocs/theme/cameleo/img/bg_leftCategorie2.jpg b/htdocs/theme/cameleo/img/bg_leftCategorie2.jpg deleted file mode 100644 index 1a26e37a99b..00000000000 Binary files a/htdocs/theme/cameleo/img/bg_leftCategorie2.jpg and /dev/null differ diff --git a/htdocs/theme/cameleo/img/bg_leftMenu.jpg b/htdocs/theme/cameleo/img/bg_leftMenu.jpg deleted file mode 100644 index 03bca88e2ae..00000000000 Binary files a/htdocs/theme/cameleo/img/bg_leftMenu.jpg and /dev/null differ diff --git a/htdocs/theme/cameleo/img/bg_leftTable.jpg b/htdocs/theme/cameleo/img/bg_leftTable.jpg deleted file mode 100644 index 36d6f9d00d2..00000000000 Binary files a/htdocs/theme/cameleo/img/bg_leftTable.jpg and /dev/null differ diff --git a/htdocs/theme/cameleo/img/bg_liste_titremenu.jpg b/htdocs/theme/cameleo/img/bg_liste_titremenu.jpg deleted file mode 100644 index 419c8ce6bf0..00000000000 Binary files a/htdocs/theme/cameleo/img/bg_liste_titremenu.jpg and /dev/null differ diff --git a/htdocs/theme/cameleo/img/bg_other_table.jpg b/htdocs/theme/cameleo/img/bg_other_table.jpg deleted file mode 100644 index f4409cbaae5..00000000000 Binary files a/htdocs/theme/cameleo/img/bg_other_table.jpg and /dev/null differ diff --git a/htdocs/theme/cameleo/img/bg_ssmenu_btnD.jpg b/htdocs/theme/cameleo/img/bg_ssmenu_btnD.jpg deleted file mode 100644 index fd09bb40da0..00000000000 Binary files a/htdocs/theme/cameleo/img/bg_ssmenu_btnD.jpg and /dev/null differ diff --git a/htdocs/theme/cameleo/img/bg_ssmenu_btnG.jpg b/htdocs/theme/cameleo/img/bg_ssmenu_btnG.jpg deleted file mode 100644 index ca483b7b295..00000000000 Binary files a/htdocs/theme/cameleo/img/bg_ssmenu_btnG.jpg and /dev/null differ diff --git a/htdocs/theme/cameleo/img/bg_ssmenusel_btnD.jpg b/htdocs/theme/cameleo/img/bg_ssmenusel_btnD.jpg deleted file mode 100644 index 1e41b87c6ea..00000000000 Binary files a/htdocs/theme/cameleo/img/bg_ssmenusel_btnD.jpg and /dev/null differ diff --git a/htdocs/theme/cameleo/img/bg_ssmenusel_btnG.jpg b/htdocs/theme/cameleo/img/bg_ssmenusel_btnG.jpg deleted file mode 100644 index 3df9a20bcd5..00000000000 Binary files a/htdocs/theme/cameleo/img/bg_ssmenusel_btnG.jpg and /dev/null differ diff --git a/htdocs/theme/cameleo/img/bg_tmenu.jpg b/htdocs/theme/cameleo/img/bg_tmenu.jpg deleted file mode 100644 index 95fc9868971..00000000000 Binary files a/htdocs/theme/cameleo/img/bg_tmenu.jpg and /dev/null differ diff --git a/htdocs/theme/cameleo/img/bg_tmenu_btnD.jpg b/htdocs/theme/cameleo/img/bg_tmenu_btnD.jpg deleted file mode 100644 index af8c5f9e49c..00000000000 Binary files a/htdocs/theme/cameleo/img/bg_tmenu_btnD.jpg and /dev/null differ diff --git a/htdocs/theme/cameleo/img/bg_tmenu_btnG.jpg b/htdocs/theme/cameleo/img/bg_tmenu_btnG.jpg deleted file mode 100644 index fc9152e2b0d..00000000000 Binary files a/htdocs/theme/cameleo/img/bg_tmenu_btnG.jpg and /dev/null differ diff --git a/htdocs/theme/cameleo/img/bg_tmenusel_btnD.jpg b/htdocs/theme/cameleo/img/bg_tmenusel_btnD.jpg deleted file mode 100644 index ab0be94ee9c..00000000000 Binary files a/htdocs/theme/cameleo/img/bg_tmenusel_btnD.jpg and /dev/null differ diff --git a/htdocs/theme/cameleo/img/bg_tmenusel_btnG.jpg b/htdocs/theme/cameleo/img/bg_tmenusel_btnG.jpg deleted file mode 100644 index 3e488176929..00000000000 Binary files a/htdocs/theme/cameleo/img/bg_tmenusel_btnG.jpg and /dev/null differ diff --git a/htdocs/theme/cameleo/img/bg_vmenu.jpg b/htdocs/theme/cameleo/img/bg_vmenu.jpg deleted file mode 100644 index 84d883d8d69..00000000000 Binary files a/htdocs/theme/cameleo/img/bg_vmenu.jpg and /dev/null differ diff --git a/htdocs/theme/cameleo/img/bg_working_table.jpg b/htdocs/theme/cameleo/img/bg_working_table.jpg deleted file mode 100644 index 881e65fcb7b..00000000000 Binary files a/htdocs/theme/cameleo/img/bg_working_table.jpg and /dev/null differ diff --git a/htdocs/theme/cameleo/img/blue-dot.png b/htdocs/theme/cameleo/img/blue-dot.png deleted file mode 100644 index 98b280d3019..00000000000 Binary files a/htdocs/theme/cameleo/img/blue-dot.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/body_bg.jpg b/htdocs/theme/cameleo/img/body_bg.jpg deleted file mode 100644 index 0480bfdc738..00000000000 Binary files a/htdocs/theme/cameleo/img/body_bg.jpg and /dev/null differ diff --git a/htdocs/theme/cameleo/img/bouton/index.html b/htdocs/theme/cameleo/img/bouton/index.html deleted file mode 100644 index e69de29bb2d..00000000000 diff --git a/htdocs/theme/cameleo/img/bouton/menu_l_title_bg.png b/htdocs/theme/cameleo/img/bouton/menu_l_title_bg.png deleted file mode 100644 index 10e03744ace..00000000000 Binary files a/htdocs/theme/cameleo/img/bouton/menu_l_title_bg.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/bouton/round_black_tr.png b/htdocs/theme/cameleo/img/bouton/round_black_tr.png deleted file mode 100644 index f0ea7d10c5c..00000000000 Binary files a/htdocs/theme/cameleo/img/bouton/round_black_tr.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/bouton_edit.png b/htdocs/theme/cameleo/img/bouton_edit.png deleted file mode 100644 index 3d36eb0523f..00000000000 Binary files a/htdocs/theme/cameleo/img/bouton_edit.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/button_bg.png b/htdocs/theme/cameleo/img/button_bg.png deleted file mode 100644 index 7e8a806b28f..00000000000 Binary files a/htdocs/theme/cameleo/img/button_bg.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/calc.png b/htdocs/theme/cameleo/img/calc.png deleted file mode 100644 index 5e6471408d8..00000000000 Binary files a/htdocs/theme/cameleo/img/calc.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/calendar.png b/htdocs/theme/cameleo/img/calendar.png deleted file mode 100644 index bbe6c27f041..00000000000 Binary files a/htdocs/theme/cameleo/img/calendar.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/call.png b/htdocs/theme/cameleo/img/call.png deleted file mode 100644 index ddfc1b7bd90..00000000000 Binary files a/htdocs/theme/cameleo/img/call.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/call_out.png b/htdocs/theme/cameleo/img/call_out.png deleted file mode 100644 index b5a22eb827b..00000000000 Binary files a/htdocs/theme/cameleo/img/call_out.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/close.png b/htdocs/theme/cameleo/img/close.png deleted file mode 100644 index ec4338e8bca..00000000000 Binary files a/htdocs/theme/cameleo/img/close.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/close_title.png b/htdocs/theme/cameleo/img/close_title.png deleted file mode 100644 index ec4338e8bca..00000000000 Binary files a/htdocs/theme/cameleo/img/close_title.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/cron.png b/htdocs/theme/cameleo/img/cron.png deleted file mode 100644 index ddfe62e7b24..00000000000 Binary files a/htdocs/theme/cameleo/img/cron.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/delete.png b/htdocs/theme/cameleo/img/delete.png deleted file mode 100644 index 8ad73597be7..00000000000 Binary files a/htdocs/theme/cameleo/img/delete.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/detail.png b/htdocs/theme/cameleo/img/detail.png deleted file mode 100644 index 05562bef842..00000000000 Binary files a/htdocs/theme/cameleo/img/detail.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/disable.png b/htdocs/theme/cameleo/img/disable.png deleted file mode 100644 index f8c84994d47..00000000000 Binary files a/htdocs/theme/cameleo/img/disable.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/edit.png b/htdocs/theme/cameleo/img/edit.png deleted file mode 100644 index c1b0acb03c2..00000000000 Binary files a/htdocs/theme/cameleo/img/edit.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/edit_add.png b/htdocs/theme/cameleo/img/edit_add.png deleted file mode 100644 index ae205e9d770..00000000000 Binary files a/htdocs/theme/cameleo/img/edit_add.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/edit_remove.png b/htdocs/theme/cameleo/img/edit_remove.png deleted file mode 100644 index bc4bdb360fa..00000000000 Binary files a/htdocs/theme/cameleo/img/edit_remove.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/editdelete.png b/htdocs/theme/cameleo/img/editdelete.png deleted file mode 100644 index f8c84994d47..00000000000 Binary files a/htdocs/theme/cameleo/img/editdelete.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/error.png b/htdocs/theme/cameleo/img/error.png deleted file mode 100644 index f41dd8a3bc0..00000000000 Binary files a/htdocs/theme/cameleo/img/error.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/favicon.ico b/htdocs/theme/cameleo/img/favicon.ico deleted file mode 100644 index b93a86747d6..00000000000 Binary files a/htdocs/theme/cameleo/img/favicon.ico and /dev/null differ diff --git a/htdocs/theme/cameleo/img/file.png b/htdocs/theme/cameleo/img/file.png deleted file mode 100644 index 73c66e9b2b3..00000000000 Binary files a/htdocs/theme/cameleo/img/file.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/filenew.png b/htdocs/theme/cameleo/img/filenew.png deleted file mode 100644 index 8680cce82bf..00000000000 Binary files a/htdocs/theme/cameleo/img/filenew.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/filter.png b/htdocs/theme/cameleo/img/filter.png deleted file mode 100644 index 917715107bd..00000000000 Binary files a/htdocs/theme/cameleo/img/filter.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/folder-open.png b/htdocs/theme/cameleo/img/folder-open.png deleted file mode 100644 index 1db8369b3d5..00000000000 Binary files a/htdocs/theme/cameleo/img/folder-open.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/folder.png b/htdocs/theme/cameleo/img/folder.png deleted file mode 100644 index 04a24af2e22..00000000000 Binary files a/htdocs/theme/cameleo/img/folder.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/gradient.gif b/htdocs/theme/cameleo/img/gradient.gif deleted file mode 100644 index d9d7c1086cd..00000000000 Binary files a/htdocs/theme/cameleo/img/gradient.gif and /dev/null differ diff --git a/htdocs/theme/cameleo/img/green-dot.png b/htdocs/theme/cameleo/img/green-dot.png deleted file mode 100644 index c6e68366215..00000000000 Binary files a/htdocs/theme/cameleo/img/green-dot.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/grip.png b/htdocs/theme/cameleo/img/grip.png deleted file mode 100644 index 8053007e9dd..00000000000 Binary files a/htdocs/theme/cameleo/img/grip.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/grip_title.png b/htdocs/theme/cameleo/img/grip_title.png deleted file mode 100644 index 8053007e9dd..00000000000 Binary files a/htdocs/theme/cameleo/img/grip_title.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/headbg.jpg b/htdocs/theme/cameleo/img/headbg.jpg deleted file mode 100644 index 160821354cc..00000000000 Binary files a/htdocs/theme/cameleo/img/headbg.jpg and /dev/null differ diff --git a/htdocs/theme/cameleo/img/headbg2.jpg b/htdocs/theme/cameleo/img/headbg2.jpg deleted file mode 100644 index 0bc44f0ea99..00000000000 Binary files a/htdocs/theme/cameleo/img/headbg2.jpg and /dev/null differ diff --git a/htdocs/theme/cameleo/img/help.png b/htdocs/theme/cameleo/img/help.png deleted file mode 100644 index 12e6cd655d6..00000000000 Binary files a/htdocs/theme/cameleo/img/help.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/helpdoc.png b/htdocs/theme/cameleo/img/helpdoc.png deleted file mode 100644 index 8cd950e7be1..00000000000 Binary files a/htdocs/theme/cameleo/img/helpdoc.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/high.png b/htdocs/theme/cameleo/img/high.png deleted file mode 100644 index c0eaee6542f..00000000000 Binary files a/htdocs/theme/cameleo/img/high.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/history.png b/htdocs/theme/cameleo/img/history.png deleted file mode 100644 index 0fa4283476b..00000000000 Binary files a/htdocs/theme/cameleo/img/history.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/indent1.png b/htdocs/theme/cameleo/img/indent1.png deleted file mode 100644 index 09695ac754f..00000000000 Binary files a/htdocs/theme/cameleo/img/indent1.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/index.html b/htdocs/theme/cameleo/img/index.html deleted file mode 100644 index e69de29bb2d..00000000000 diff --git a/htdocs/theme/cameleo/img/info.png b/htdocs/theme/cameleo/img/info.png deleted file mode 100644 index db8ba04fac5..00000000000 Binary files a/htdocs/theme/cameleo/img/info.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/lock.png b/htdocs/theme/cameleo/img/lock.png deleted file mode 100644 index 3d99cf1eaef..00000000000 Binary files a/htdocs/theme/cameleo/img/lock.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/login_background.png b/htdocs/theme/cameleo/img/login_background.png deleted file mode 100644 index facc2c6f442..00000000000 Binary files a/htdocs/theme/cameleo/img/login_background.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/logout.png b/htdocs/theme/cameleo/img/logout.png deleted file mode 100644 index 84bd94e7b81..00000000000 Binary files a/htdocs/theme/cameleo/img/logout.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/mainlevel.gif b/htdocs/theme/cameleo/img/mainlevel.gif deleted file mode 100644 index 548526442a3..00000000000 Binary files a/htdocs/theme/cameleo/img/mainlevel.gif and /dev/null differ diff --git a/htdocs/theme/cameleo/img/menus/agenda.png b/htdocs/theme/cameleo/img/menus/agenda.png deleted file mode 100644 index 866037c9b54..00000000000 Binary files a/htdocs/theme/cameleo/img/menus/agenda.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/menus/bank.png b/htdocs/theme/cameleo/img/menus/bank.png deleted file mode 100644 index 9c6300eae32..00000000000 Binary files a/htdocs/theme/cameleo/img/menus/bank.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/menus/commercial.png b/htdocs/theme/cameleo/img/menus/commercial.png deleted file mode 100644 index efc1b3f0608..00000000000 Binary files a/htdocs/theme/cameleo/img/menus/commercial.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/menus/company.png b/htdocs/theme/cameleo/img/menus/company.png deleted file mode 100644 index 95e5db62046..00000000000 Binary files a/htdocs/theme/cameleo/img/menus/company.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/menus/ecm.png b/htdocs/theme/cameleo/img/menus/ecm.png deleted file mode 100644 index a9a975219cd..00000000000 Binary files a/htdocs/theme/cameleo/img/menus/ecm.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/menus/externalsite.png b/htdocs/theme/cameleo/img/menus/externalsite.png deleted file mode 100644 index 0bf9138d463..00000000000 Binary files a/htdocs/theme/cameleo/img/menus/externalsite.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/menus/footer_bg.jpg b/htdocs/theme/cameleo/img/menus/footer_bg.jpg deleted file mode 100644 index 7319c16f9af..00000000000 Binary files a/htdocs/theme/cameleo/img/menus/footer_bg.jpg and /dev/null differ diff --git a/htdocs/theme/cameleo/img/menus/generic1.png b/htdocs/theme/cameleo/img/menus/generic1.png deleted file mode 100644 index 0222dd8c81d..00000000000 Binary files a/htdocs/theme/cameleo/img/menus/generic1.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/menus/generic2.png b/htdocs/theme/cameleo/img/menus/generic2.png deleted file mode 100644 index 86847858c4a..00000000000 Binary files a/htdocs/theme/cameleo/img/menus/generic2.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/menus/generic3.png b/htdocs/theme/cameleo/img/menus/generic3.png deleted file mode 100644 index e22f73aa6f9..00000000000 Binary files a/htdocs/theme/cameleo/img/menus/generic3.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/menus/generic4.png b/htdocs/theme/cameleo/img/menus/generic4.png deleted file mode 100644 index 29a3d7fed67..00000000000 Binary files a/htdocs/theme/cameleo/img/menus/generic4.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/menus/globe.png b/htdocs/theme/cameleo/img/menus/globe.png deleted file mode 100644 index 073348a5246..00000000000 Binary files a/htdocs/theme/cameleo/img/menus/globe.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/menus/holiday.png b/htdocs/theme/cameleo/img/menus/holiday.png deleted file mode 100644 index 42c519aa63d..00000000000 Binary files a/htdocs/theme/cameleo/img/menus/holiday.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/menus/home.png b/htdocs/theme/cameleo/img/menus/home.png deleted file mode 100644 index f4d0d917d1f..00000000000 Binary files a/htdocs/theme/cameleo/img/menus/home.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/menus/index.html b/htdocs/theme/cameleo/img/menus/index.html deleted file mode 100644 index e69de29bb2d..00000000000 diff --git a/htdocs/theme/cameleo/img/menus/lr_bg.gif b/htdocs/theme/cameleo/img/menus/lr_bg.gif deleted file mode 100644 index e6644e4685f..00000000000 Binary files a/htdocs/theme/cameleo/img/menus/lr_bg.gif and /dev/null differ diff --git a/htdocs/theme/cameleo/img/menus/mail.png b/htdocs/theme/cameleo/img/menus/mail.png deleted file mode 100644 index d715ec7810c..00000000000 Binary files a/htdocs/theme/cameleo/img/menus/mail.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/menus/members.png b/htdocs/theme/cameleo/img/menus/members.png deleted file mode 100644 index 4b703f42cd7..00000000000 Binary files a/htdocs/theme/cameleo/img/menus/members.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/menus/moduletable_th_bg.gif b/htdocs/theme/cameleo/img/menus/moduletable_th_bg.gif deleted file mode 100644 index 0901e294b1f..00000000000 Binary files a/htdocs/theme/cameleo/img/menus/moduletable_th_bg.gif and /dev/null differ diff --git a/htdocs/theme/cameleo/img/menus/money.png b/htdocs/theme/cameleo/img/menus/money.png deleted file mode 100644 index 50166e0f74b..00000000000 Binary files a/htdocs/theme/cameleo/img/menus/money.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/menus/pointofsale.png b/htdocs/theme/cameleo/img/menus/pointofsale.png deleted file mode 100644 index 748ec41b1e6..00000000000 Binary files a/htdocs/theme/cameleo/img/menus/pointofsale.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/menus/products.png b/htdocs/theme/cameleo/img/menus/products.png deleted file mode 100644 index 6f5f45269ee..00000000000 Binary files a/htdocs/theme/cameleo/img/menus/products.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/menus/project.png b/htdocs/theme/cameleo/img/menus/project.png deleted file mode 100644 index 882235d2cd3..00000000000 Binary files a/htdocs/theme/cameleo/img/menus/project.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/menus/tab_background.png b/htdocs/theme/cameleo/img/menus/tab_background.png deleted file mode 100644 index 6edd65003e0..00000000000 Binary files a/htdocs/theme/cameleo/img/menus/tab_background.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/menus/table_bg.gif b/htdocs/theme/cameleo/img/menus/table_bg.gif deleted file mode 100644 index bd6bf5c1036..00000000000 Binary files a/htdocs/theme/cameleo/img/menus/table_bg.gif and /dev/null differ diff --git a/htdocs/theme/cameleo/img/menus/tools.png b/htdocs/theme/cameleo/img/menus/tools.png deleted file mode 100644 index c053f660ebf..00000000000 Binary files a/htdocs/theme/cameleo/img/menus/tools.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/menus/topmenu_bg.gif b/htdocs/theme/cameleo/img/menus/topmenu_bg.gif deleted file mode 100644 index 48cfe1a00ae..00000000000 Binary files a/htdocs/theme/cameleo/img/menus/topmenu_bg.gif and /dev/null differ diff --git a/htdocs/theme/cameleo/img/menus/topmenu_bg_over.gif b/htdocs/theme/cameleo/img/menus/topmenu_bg_over.gif deleted file mode 100644 index 2d03af87e67..00000000000 Binary files a/htdocs/theme/cameleo/img/menus/topmenu_bg_over.gif and /dev/null differ diff --git a/htdocs/theme/cameleo/img/menus/topmenu_left.gif b/htdocs/theme/cameleo/img/menus/topmenu_left.gif deleted file mode 100644 index 0f08aa2a2a7..00000000000 Binary files a/htdocs/theme/cameleo/img/menus/topmenu_left.gif and /dev/null differ diff --git a/htdocs/theme/cameleo/img/menus/topmenu_right.gif b/htdocs/theme/cameleo/img/menus/topmenu_right.gif deleted file mode 100644 index cc7dd51652d..00000000000 Binary files a/htdocs/theme/cameleo/img/menus/topmenu_right.gif and /dev/null differ diff --git a/htdocs/theme/cameleo/img/menus/toppath.gif b/htdocs/theme/cameleo/img/menus/toppath.gif deleted file mode 100644 index 2180d924dee..00000000000 Binary files a/htdocs/theme/cameleo/img/menus/toppath.gif and /dev/null differ diff --git a/htdocs/theme/cameleo/img/menus/trtitle.png b/htdocs/theme/cameleo/img/menus/trtitle.png deleted file mode 100644 index 29b694864e5..00000000000 Binary files a/htdocs/theme/cameleo/img/menus/trtitle.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/money.png b/htdocs/theme/cameleo/img/money.png deleted file mode 100644 index 50166e0f74b..00000000000 Binary files a/htdocs/theme/cameleo/img/money.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/next.png b/htdocs/theme/cameleo/img/next.png deleted file mode 100644 index aff8f9e2ca5..00000000000 Binary files a/htdocs/theme/cameleo/img/next.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/object_account.png b/htdocs/theme/cameleo/img/object_account.png deleted file mode 100644 index bc85bd73f83..00000000000 Binary files a/htdocs/theme/cameleo/img/object_account.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/object_accounting.png b/htdocs/theme/cameleo/img/object_accounting.png deleted file mode 100644 index b5600221f02..00000000000 Binary files a/htdocs/theme/cameleo/img/object_accounting.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/object_action.png b/htdocs/theme/cameleo/img/object_action.png deleted file mode 100644 index 3b964b907dc..00000000000 Binary files a/htdocs/theme/cameleo/img/object_action.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/object_action_rdv.png b/htdocs/theme/cameleo/img/object_action_rdv.png deleted file mode 100644 index 25edfa85b45..00000000000 Binary files a/htdocs/theme/cameleo/img/object_action_rdv.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/object_address.png b/htdocs/theme/cameleo/img/object_address.png deleted file mode 100644 index a4b878966dc..00000000000 Binary files a/htdocs/theme/cameleo/img/object_address.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/object_barcode.png b/htdocs/theme/cameleo/img/object_barcode.png deleted file mode 100644 index 9241513f0b8..00000000000 Binary files a/htdocs/theme/cameleo/img/object_barcode.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/object_bill.png b/htdocs/theme/cameleo/img/object_bill.png deleted file mode 100644 index 277b6ab3233..00000000000 Binary files a/htdocs/theme/cameleo/img/object_bill.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/object_billa.png b/htdocs/theme/cameleo/img/object_billa.png deleted file mode 100644 index 2589f34bfed..00000000000 Binary files a/htdocs/theme/cameleo/img/object_billa.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/object_billd.png b/htdocs/theme/cameleo/img/object_billd.png deleted file mode 100644 index 201dc9057ae..00000000000 Binary files a/htdocs/theme/cameleo/img/object_billd.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/object_billr.png b/htdocs/theme/cameleo/img/object_billr.png deleted file mode 100644 index 18b8701685e..00000000000 Binary files a/htdocs/theme/cameleo/img/object_billr.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/object_book.png b/htdocs/theme/cameleo/img/object_book.png deleted file mode 100644 index cbbc05e8e72..00000000000 Binary files a/htdocs/theme/cameleo/img/object_book.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/object_bookmark.png b/htdocs/theme/cameleo/img/object_bookmark.png deleted file mode 100644 index a78697bdc3b..00000000000 Binary files a/htdocs/theme/cameleo/img/object_bookmark.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/object_calendar.png b/htdocs/theme/cameleo/img/object_calendar.png deleted file mode 100644 index c647b7f998d..00000000000 Binary files a/htdocs/theme/cameleo/img/object_calendar.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/object_calendarday.png b/htdocs/theme/cameleo/img/object_calendarday.png deleted file mode 100644 index 8cda1f3f220..00000000000 Binary files a/htdocs/theme/cameleo/img/object_calendarday.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/object_calendarweek.png b/htdocs/theme/cameleo/img/object_calendarweek.png deleted file mode 100644 index 4ea2c09ccc9..00000000000 Binary files a/htdocs/theme/cameleo/img/object_calendarweek.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/object_category-expanded.png b/htdocs/theme/cameleo/img/object_category-expanded.png deleted file mode 100644 index af943c376e6..00000000000 Binary files a/htdocs/theme/cameleo/img/object_category-expanded.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/object_category.png b/htdocs/theme/cameleo/img/object_category.png deleted file mode 100644 index c7e79d4d408..00000000000 Binary files a/htdocs/theme/cameleo/img/object_category.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/object_commercial.png b/htdocs/theme/cameleo/img/object_commercial.png deleted file mode 100644 index ad1519f111c..00000000000 Binary files a/htdocs/theme/cameleo/img/object_commercial.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/object_company.png b/htdocs/theme/cameleo/img/object_company.png deleted file mode 100644 index 58021fa506a..00000000000 Binary files a/htdocs/theme/cameleo/img/object_company.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/object_contact.png b/htdocs/theme/cameleo/img/object_contact.png deleted file mode 100644 index e98a7e367e2..00000000000 Binary files a/htdocs/theme/cameleo/img/object_contact.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/object_contact_all.png b/htdocs/theme/cameleo/img/object_contact_all.png deleted file mode 100644 index 0e651e5aa5f..00000000000 Binary files a/htdocs/theme/cameleo/img/object_contact_all.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/object_contract.png b/htdocs/theme/cameleo/img/object_contract.png deleted file mode 100644 index 78af93d559f..00000000000 Binary files a/htdocs/theme/cameleo/img/object_contract.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/object_cron.png b/htdocs/theme/cameleo/img/object_cron.png deleted file mode 100644 index 6186d18da70..00000000000 Binary files a/htdocs/theme/cameleo/img/object_cron.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/object_dir.png b/htdocs/theme/cameleo/img/object_dir.png deleted file mode 100644 index 7324bca0143..00000000000 Binary files a/htdocs/theme/cameleo/img/object_dir.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/object_email.png b/htdocs/theme/cameleo/img/object_email.png deleted file mode 100644 index 5a92241f7e7..00000000000 Binary files a/htdocs/theme/cameleo/img/object_email.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/object_energie.png b/htdocs/theme/cameleo/img/object_energie.png deleted file mode 100644 index 27b3b52f2c6..00000000000 Binary files a/htdocs/theme/cameleo/img/object_energie.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/object_event.png b/htdocs/theme/cameleo/img/object_event.png deleted file mode 100644 index 0e651e5aa5f..00000000000 Binary files a/htdocs/theme/cameleo/img/object_event.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/object_generic.png b/htdocs/theme/cameleo/img/object_generic.png deleted file mode 100644 index caadc78e7d9..00000000000 Binary files a/htdocs/theme/cameleo/img/object_generic.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/object_globe.png b/htdocs/theme/cameleo/img/object_globe.png deleted file mode 100644 index 701e24b1c46..00000000000 Binary files a/htdocs/theme/cameleo/img/object_globe.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/object_gravatar.png b/htdocs/theme/cameleo/img/object_gravatar.png deleted file mode 100644 index 42bccdc4339..00000000000 Binary files a/htdocs/theme/cameleo/img/object_gravatar.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/object_group.png b/htdocs/theme/cameleo/img/object_group.png deleted file mode 100644 index 0e651e5aa5f..00000000000 Binary files a/htdocs/theme/cameleo/img/object_group.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/object_holiday.png b/htdocs/theme/cameleo/img/object_holiday.png deleted file mode 100644 index fdc1dd8e22b..00000000000 Binary files a/htdocs/theme/cameleo/img/object_holiday.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/object_intervention.png b/htdocs/theme/cameleo/img/object_intervention.png deleted file mode 100644 index 9b015af6f6d..00000000000 Binary files a/htdocs/theme/cameleo/img/object_intervention.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/object_invoice.png b/htdocs/theme/cameleo/img/object_invoice.png deleted file mode 100644 index 277b6ab3233..00000000000 Binary files a/htdocs/theme/cameleo/img/object_invoice.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/object_label.png b/htdocs/theme/cameleo/img/object_label.png deleted file mode 100644 index b112af5cf0a..00000000000 Binary files a/htdocs/theme/cameleo/img/object_label.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/object_lead.png b/htdocs/theme/cameleo/img/object_lead.png deleted file mode 100644 index 7324bca0143..00000000000 Binary files a/htdocs/theme/cameleo/img/object_lead.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/object_leadpub.png b/htdocs/theme/cameleo/img/object_leadpub.png deleted file mode 100644 index 0e651e5aa5f..00000000000 Binary files a/htdocs/theme/cameleo/img/object_leadpub.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/object_list.png b/htdocs/theme/cameleo/img/object_list.png deleted file mode 100644 index 1f49c887555..00000000000 Binary files a/htdocs/theme/cameleo/img/object_list.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/object_margin.png b/htdocs/theme/cameleo/img/object_margin.png deleted file mode 100644 index cd0eb4109f7..00000000000 Binary files a/htdocs/theme/cameleo/img/object_margin.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/object_opensurvey.png b/htdocs/theme/cameleo/img/object_opensurvey.png deleted file mode 100644 index b5de3223bd4..00000000000 Binary files a/htdocs/theme/cameleo/img/object_opensurvey.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/object_order.png b/htdocs/theme/cameleo/img/object_order.png deleted file mode 100644 index 1516cd03433..00000000000 Binary files a/htdocs/theme/cameleo/img/object_order.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/object_payment.png b/htdocs/theme/cameleo/img/object_payment.png deleted file mode 100644 index f8ecf1d144e..00000000000 Binary files a/htdocs/theme/cameleo/img/object_payment.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/object_phoning.png b/htdocs/theme/cameleo/img/object_phoning.png deleted file mode 100644 index 9f5a14edd23..00000000000 Binary files a/htdocs/theme/cameleo/img/object_phoning.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/object_phoning_fax.png b/htdocs/theme/cameleo/img/object_phoning_fax.png deleted file mode 100644 index 9f5a14edd23..00000000000 Binary files a/htdocs/theme/cameleo/img/object_phoning_fax.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/object_product.png b/htdocs/theme/cameleo/img/object_product.png deleted file mode 100644 index f6477644a1f..00000000000 Binary files a/htdocs/theme/cameleo/img/object_product.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/object_project.png b/htdocs/theme/cameleo/img/object_project.png deleted file mode 100644 index 7324bca0143..00000000000 Binary files a/htdocs/theme/cameleo/img/object_project.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/object_projectpub.png b/htdocs/theme/cameleo/img/object_projectpub.png deleted file mode 100644 index 1ba7da16dcc..00000000000 Binary files a/htdocs/theme/cameleo/img/object_projectpub.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/object_projecttask.png b/htdocs/theme/cameleo/img/object_projecttask.png deleted file mode 100644 index 7aff1a2ee20..00000000000 Binary files a/htdocs/theme/cameleo/img/object_projecttask.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/object_propal.png b/htdocs/theme/cameleo/img/object_propal.png deleted file mode 100644 index 4e66eebbedb..00000000000 Binary files a/htdocs/theme/cameleo/img/object_propal.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/object_reduc.png b/htdocs/theme/cameleo/img/object_reduc.png deleted file mode 100644 index 39dcc0fe6a0..00000000000 Binary files a/htdocs/theme/cameleo/img/object_reduc.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/object_resource.png b/htdocs/theme/cameleo/img/object_resource.png deleted file mode 100644 index 8cda1f3f220..00000000000 Binary files a/htdocs/theme/cameleo/img/object_resource.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/object_rss.png b/htdocs/theme/cameleo/img/object_rss.png deleted file mode 100644 index f3f9db58d95..00000000000 Binary files a/htdocs/theme/cameleo/img/object_rss.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/object_search.png b/htdocs/theme/cameleo/img/object_search.png deleted file mode 100644 index 6ffb1c806c7..00000000000 Binary files a/htdocs/theme/cameleo/img/object_search.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/object_sending.png b/htdocs/theme/cameleo/img/object_sending.png deleted file mode 100644 index 93404176e87..00000000000 Binary files a/htdocs/theme/cameleo/img/object_sending.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/object_service.png b/htdocs/theme/cameleo/img/object_service.png deleted file mode 100644 index 7e990268740..00000000000 Binary files a/htdocs/theme/cameleo/img/object_service.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/object_skype.png b/htdocs/theme/cameleo/img/object_skype.png deleted file mode 100644 index b209cd8d16e..00000000000 Binary files a/htdocs/theme/cameleo/img/object_skype.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/object_stat.png b/htdocs/theme/cameleo/img/object_stat.png deleted file mode 100644 index 5b7ea7e966e..00000000000 Binary files a/htdocs/theme/cameleo/img/object_stat.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/object_stock.png b/htdocs/theme/cameleo/img/object_stock.png deleted file mode 100644 index 94c594e99af..00000000000 Binary files a/htdocs/theme/cameleo/img/object_stock.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/object_task.png b/htdocs/theme/cameleo/img/object_task.png deleted file mode 100644 index 20b9d641a23..00000000000 Binary files a/htdocs/theme/cameleo/img/object_task.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/object_technic.png b/htdocs/theme/cameleo/img/object_technic.png deleted file mode 100644 index cc71bb4fde2..00000000000 Binary files a/htdocs/theme/cameleo/img/object_technic.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/object_trip.png b/htdocs/theme/cameleo/img/object_trip.png deleted file mode 100644 index c695a26415d..00000000000 Binary files a/htdocs/theme/cameleo/img/object_trip.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/object_user.png b/htdocs/theme/cameleo/img/object_user.png deleted file mode 100644 index 152fd668c08..00000000000 Binary files a/htdocs/theme/cameleo/img/object_user.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/off.png b/htdocs/theme/cameleo/img/off.png deleted file mode 100644 index 9e28e0fa91e..00000000000 Binary files a/htdocs/theme/cameleo/img/off.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/on.png b/htdocs/theme/cameleo/img/on.png deleted file mode 100644 index 72e87ecaeb4..00000000000 Binary files a/htdocs/theme/cameleo/img/on.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/pdf2.png b/htdocs/theme/cameleo/img/pdf2.png deleted file mode 100644 index 975d8098993..00000000000 Binary files a/htdocs/theme/cameleo/img/pdf2.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/pdf3.png b/htdocs/theme/cameleo/img/pdf3.png deleted file mode 100644 index f053591bf2d..00000000000 Binary files a/htdocs/theme/cameleo/img/pdf3.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/play.png b/htdocs/theme/cameleo/img/play.png deleted file mode 100644 index 4922ea1ec12..00000000000 Binary files a/htdocs/theme/cameleo/img/play.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/previous.png b/htdocs/theme/cameleo/img/previous.png deleted file mode 100644 index bff23a0f55d..00000000000 Binary files a/htdocs/theme/cameleo/img/previous.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/printer.png b/htdocs/theme/cameleo/img/printer.png deleted file mode 100644 index 774686d23be..00000000000 Binary files a/htdocs/theme/cameleo/img/printer.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/puce.png b/htdocs/theme/cameleo/img/puce.png deleted file mode 100644 index 0bd4bd51023..00000000000 Binary files a/htdocs/theme/cameleo/img/puce.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/recent.png b/htdocs/theme/cameleo/img/recent.png deleted file mode 100644 index a3405497f03..00000000000 Binary files a/htdocs/theme/cameleo/img/recent.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/red-dot.png b/htdocs/theme/cameleo/img/red-dot.png deleted file mode 100644 index b0f3f0e9284..00000000000 Binary files a/htdocs/theme/cameleo/img/red-dot.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/redstar.png b/htdocs/theme/cameleo/img/redstar.png deleted file mode 100644 index ce7b207978a..00000000000 Binary files a/htdocs/theme/cameleo/img/redstar.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/refresh.png b/htdocs/theme/cameleo/img/refresh.png deleted file mode 100644 index edc14adcd23..00000000000 Binary files a/htdocs/theme/cameleo/img/refresh.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/reload.png b/htdocs/theme/cameleo/img/reload.png deleted file mode 100644 index 1e638197612..00000000000 Binary files a/htdocs/theme/cameleo/img/reload.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/rightarrow.png b/htdocs/theme/cameleo/img/rightarrow.png deleted file mode 100644 index 2c479d9453b..00000000000 Binary files a/htdocs/theme/cameleo/img/rightarrow.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/search.png b/htdocs/theme/cameleo/img/search.png deleted file mode 100644 index 97f4801c921..00000000000 Binary files a/htdocs/theme/cameleo/img/search.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/searchclear.png b/htdocs/theme/cameleo/img/searchclear.png deleted file mode 100644 index 56fb7f1de87..00000000000 Binary files a/htdocs/theme/cameleo/img/searchclear.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/setup.png b/htdocs/theme/cameleo/img/setup.png deleted file mode 100644 index 0dec91abb30..00000000000 Binary files a/htdocs/theme/cameleo/img/setup.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/sort_asc.png b/htdocs/theme/cameleo/img/sort_asc.png deleted file mode 100644 index e327d952fa4..00000000000 Binary files a/htdocs/theme/cameleo/img/sort_asc.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/sort_asc_disabled.png b/htdocs/theme/cameleo/img/sort_asc_disabled.png deleted file mode 100644 index e327d952fa4..00000000000 Binary files a/htdocs/theme/cameleo/img/sort_asc_disabled.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/sort_desc.png b/htdocs/theme/cameleo/img/sort_desc.png deleted file mode 100644 index db99fd9ad47..00000000000 Binary files a/htdocs/theme/cameleo/img/sort_desc.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/sort_desc_disabled.png b/htdocs/theme/cameleo/img/sort_desc_disabled.png deleted file mode 100644 index 89051c2f34f..00000000000 Binary files a/htdocs/theme/cameleo/img/sort_desc_disabled.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/split.png b/htdocs/theme/cameleo/img/split.png deleted file mode 100644 index 50b6324c334..00000000000 Binary files a/htdocs/theme/cameleo/img/split.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/star.png b/htdocs/theme/cameleo/img/star.png deleted file mode 100644 index 81feace1c30..00000000000 Binary files a/htdocs/theme/cameleo/img/star.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/stats.png b/htdocs/theme/cameleo/img/stats.png deleted file mode 100644 index d883f7faea9..00000000000 Binary files a/htdocs/theme/cameleo/img/stats.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/statut0.png b/htdocs/theme/cameleo/img/statut0.png deleted file mode 100644 index 196f4f53c7d..00000000000 Binary files a/htdocs/theme/cameleo/img/statut0.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/statut1.png b/htdocs/theme/cameleo/img/statut1.png deleted file mode 100644 index 774b3e4bd54..00000000000 Binary files a/htdocs/theme/cameleo/img/statut1.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/statut3.png b/htdocs/theme/cameleo/img/statut3.png deleted file mode 100644 index 9ce49b93476..00000000000 Binary files a/htdocs/theme/cameleo/img/statut3.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/statut4.png b/htdocs/theme/cameleo/img/statut4.png deleted file mode 100644 index e4f42ac6d53..00000000000 Binary files a/htdocs/theme/cameleo/img/statut4.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/statut5.png b/htdocs/theme/cameleo/img/statut5.png deleted file mode 100644 index 774b3e4bd54..00000000000 Binary files a/htdocs/theme/cameleo/img/statut5.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/statut6.png b/htdocs/theme/cameleo/img/statut6.png deleted file mode 100644 index e4f42ac6d53..00000000000 Binary files a/htdocs/theme/cameleo/img/statut6.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/statut7.png b/htdocs/theme/cameleo/img/statut7.png deleted file mode 100644 index 9ce49b93476..00000000000 Binary files a/htdocs/theme/cameleo/img/statut7.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/statut8.png b/htdocs/theme/cameleo/img/statut8.png deleted file mode 100644 index 65ab6677ee7..00000000000 Binary files a/htdocs/theme/cameleo/img/statut8.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/statut9.png b/htdocs/theme/cameleo/img/statut9.png deleted file mode 100644 index 196f4f53c7d..00000000000 Binary files a/htdocs/theme/cameleo/img/statut9.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/stcomm-1.png b/htdocs/theme/cameleo/img/stcomm-1.png deleted file mode 100644 index 2e3f98bb6fd..00000000000 Binary files a/htdocs/theme/cameleo/img/stcomm-1.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/stcomm0.png b/htdocs/theme/cameleo/img/stcomm0.png deleted file mode 100644 index b6c11d4569a..00000000000 Binary files a/htdocs/theme/cameleo/img/stcomm0.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/stcomm1.png b/htdocs/theme/cameleo/img/stcomm1.png deleted file mode 100644 index 6bdea492985..00000000000 Binary files a/htdocs/theme/cameleo/img/stcomm1.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/stcomm10.png b/htdocs/theme/cameleo/img/stcomm10.png deleted file mode 100644 index ed95a29dc9a..00000000000 Binary files a/htdocs/theme/cameleo/img/stcomm10.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/stcomm2.png b/htdocs/theme/cameleo/img/stcomm2.png deleted file mode 100644 index 9e000b70dc9..00000000000 Binary files a/htdocs/theme/cameleo/img/stcomm2.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/stcomm3.png b/htdocs/theme/cameleo/img/stcomm3.png deleted file mode 100644 index 5a6c0aeface..00000000000 Binary files a/htdocs/theme/cameleo/img/stcomm3.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/stcomm4.png b/htdocs/theme/cameleo/img/stcomm4.png deleted file mode 100644 index 0395aba2507..00000000000 Binary files a/htdocs/theme/cameleo/img/stcomm4.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/stcomm5.png b/htdocs/theme/cameleo/img/stcomm5.png deleted file mode 100644 index 9ce49b93476..00000000000 Binary files a/htdocs/theme/cameleo/img/stcomm5.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/stcomm6.png b/htdocs/theme/cameleo/img/stcomm6.png deleted file mode 100644 index 65ab6677ee7..00000000000 Binary files a/htdocs/theme/cameleo/img/stcomm6.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/stcomm7.png b/htdocs/theme/cameleo/img/stcomm7.png deleted file mode 100644 index fbb4ed56775..00000000000 Binary files a/htdocs/theme/cameleo/img/stcomm7.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/stcomm8.png b/htdocs/theme/cameleo/img/stcomm8.png deleted file mode 100644 index 05e7dae5dc2..00000000000 Binary files a/htdocs/theme/cameleo/img/stcomm8.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/stcomm9.png b/htdocs/theme/cameleo/img/stcomm9.png deleted file mode 100644 index f2b68b4b218..00000000000 Binary files a/htdocs/theme/cameleo/img/stcomm9.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/switch_off.png b/htdocs/theme/cameleo/img/switch_off.png deleted file mode 100644 index 28a4376fb43..00000000000 Binary files a/htdocs/theme/cameleo/img/switch_off.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/switch_on.png b/htdocs/theme/cameleo/img/switch_on.png deleted file mode 100644 index d4e32d98f57..00000000000 Binary files a/htdocs/theme/cameleo/img/switch_on.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/tab_background.png b/htdocs/theme/cameleo/img/tab_background.png deleted file mode 100644 index 6edd65003e0..00000000000 Binary files a/htdocs/theme/cameleo/img/tab_background.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/test.gif b/htdocs/theme/cameleo/img/test.gif deleted file mode 100644 index 55ce8fb72b1..00000000000 Binary files a/htdocs/theme/cameleo/img/test.gif and /dev/null differ diff --git a/htdocs/theme/cameleo/img/tick.png b/htdocs/theme/cameleo/img/tick.png deleted file mode 100644 index c899abb9c34..00000000000 Binary files a/htdocs/theme/cameleo/img/tick.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/title.png b/htdocs/theme/cameleo/img/title.png deleted file mode 100644 index eb9c329a6a5..00000000000 Binary files a/htdocs/theme/cameleo/img/title.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/title_accountancy.png b/htdocs/theme/cameleo/img/title_accountancy.png deleted file mode 100644 index 6e7c2a412c6..00000000000 Binary files a/htdocs/theme/cameleo/img/title_accountancy.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/title_bank.png b/htdocs/theme/cameleo/img/title_bank.png deleted file mode 100644 index 034a8d0c5e4..00000000000 Binary files a/htdocs/theme/cameleo/img/title_bank.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/title_commercial.png b/htdocs/theme/cameleo/img/title_commercial.png deleted file mode 100644 index 46394177698..00000000000 Binary files a/htdocs/theme/cameleo/img/title_commercial.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/title_companies.png b/htdocs/theme/cameleo/img/title_companies.png deleted file mode 100644 index b2539dba849..00000000000 Binary files a/htdocs/theme/cameleo/img/title_companies.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/title_generic.png b/htdocs/theme/cameleo/img/title_generic.png deleted file mode 100644 index ae224327549..00000000000 Binary files a/htdocs/theme/cameleo/img/title_generic.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/title_home.png b/htdocs/theme/cameleo/img/title_home.png deleted file mode 100644 index e9273e727f5..00000000000 Binary files a/htdocs/theme/cameleo/img/title_home.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/title_products.png b/htdocs/theme/cameleo/img/title_products.png deleted file mode 100644 index d3c5b125bbe..00000000000 Binary files a/htdocs/theme/cameleo/img/title_products.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/title_project.png b/htdocs/theme/cameleo/img/title_project.png deleted file mode 100644 index 05d8ea630b8..00000000000 Binary files a/htdocs/theme/cameleo/img/title_project.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/title_setup.png b/htdocs/theme/cameleo/img/title_setup.png deleted file mode 100644 index d7548d28709..00000000000 Binary files a/htdocs/theme/cameleo/img/title_setup.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/unlock.png b/htdocs/theme/cameleo/img/unlock.png deleted file mode 100644 index afefaa94d47..00000000000 Binary files a/htdocs/theme/cameleo/img/unlock.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/uparrow.png b/htdocs/theme/cameleo/img/uparrow.png deleted file mode 100644 index 5706ca39da4..00000000000 Binary files a/htdocs/theme/cameleo/img/uparrow.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/vcard.png b/htdocs/theme/cameleo/img/vcard.png deleted file mode 100644 index 315abdf179d..00000000000 Binary files a/htdocs/theme/cameleo/img/vcard.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/view.png b/htdocs/theme/cameleo/img/view.png deleted file mode 100644 index 76c1e9f1e6a..00000000000 Binary files a/htdocs/theme/cameleo/img/view.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/warning.png b/htdocs/theme/cameleo/img/warning.png deleted file mode 100644 index dfa237a5302..00000000000 Binary files a/htdocs/theme/cameleo/img/warning.png and /dev/null differ diff --git a/htdocs/theme/cameleo/img/working.gif b/htdocs/theme/cameleo/img/working.gif deleted file mode 100644 index 1e421c3113f..00000000000 Binary files a/htdocs/theme/cameleo/img/working.gif and /dev/null differ diff --git a/htdocs/theme/cameleo/img/working2.gif b/htdocs/theme/cameleo/img/working2.gif deleted file mode 100644 index bf0fc8f2167..00000000000 Binary files a/htdocs/theme/cameleo/img/working2.gif and /dev/null differ diff --git a/htdocs/theme/cameleo/index.html b/htdocs/theme/cameleo/index.html deleted file mode 100644 index e69de29bb2d..00000000000 diff --git a/htdocs/theme/cameleo/style.css.php b/htdocs/theme/cameleo/style.css.php deleted file mode 100644 index 4b8955953bd..00000000000 --- a/htdocs/theme/cameleo/style.css.php +++ /dev/null @@ -1,2753 +0,0 @@ - - * Copyright (C) 2006 Rodolphe Quiedeville - * Copyright (C) 2007-2011 Regis Houssin - * Copyright (C) 2010-2011 Herve Prot - * Copyright (C) 2011 Juanjo Menent - * - * 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 - * the Free Software Foundation; either version 3 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program. If not, see . - */ - -/** - * \file htdocs/theme/cameleo/style.css.php - * \brief Fichier de style CSS du theme Cameleo - */ - -//if (! defined('NOREQUIREUSER')) define('NOREQUIREUSER','1'); // Not disabled cause need to load personalized language -//if (! defined('NOREQUIREDB')) define('NOREQUIREDB','1'); // Not disabled to increase speed. Language code is found on url. -if (! defined('NOREQUIRESOC')) define('NOREQUIRESOC','1'); -//if (! defined('NOREQUIRETRAN')) define('NOREQUIRETRAN','1'); // Not disabled cause need to do translations -if (! defined('NOCSRFCHECK')) define('NOCSRFCHECK',1); -if (! defined('NOTOKENRENEWAL')) define('NOTOKENRENEWAL',1); -if (! defined('NOLOGIN')) define('NOLOGIN',1); -if (! defined('NOREQUIREMENU')) define('NOREQUIREMENU',1); -if (! defined('NOREQUIREHTML')) define('NOREQUIREHTML',1); -if (! defined('NOREQUIREAJAX')) define('NOREQUIREAJAX','1'); - -session_cache_limiter(FALSE); - -require_once '../../main.inc.php'; - -// Load user to have $user->conf loaded (not done into main because of NOLOGIN constant defined) -if (empty($user->id) && ! empty($_SESSION['dol_login'])) $user->fetch('',$_SESSION['dol_login']); - - -// Define css type -header('Content-type: text/css'); -// Important: Following code is to avoid page request by browser and PHP CPU at each Dolibarr page access. -if (empty($dolibarr_nocache)) header('Cache-Control: max-age=3600, public, must-revalidate'); -else header('Cache-Control: no-cache'); - -// On the fly GZIP compression for all pages (if browser support it). Must set the bit 3 of constant to 1. -if (isset($conf->global->MAIN_OPTIMIZE_SPEED) && ($conf->global->MAIN_OPTIMIZE_SPEED & 0x04)) { ob_start("ob_gzhandler"); } - -if (GETPOST('lang')) $langs->setDefaultLang(GETPOST('lang')); // If language was forced on URL -if (GETPOST('theme')) $conf->theme=GETPOST('theme'); // If theme was forced on URL -$langs->load("main",0,1); -$right=($langs->trans("DIRECTION")=='rtl'?'left':'right'); -$left=($langs->trans("DIRECTION")=='rtl'?'right':'left'); - -// Define image path files and other constants -$fontlist='arial,tahoma,verdana,helvetica'; -$dol_hide_topmenu=$conf->dol_hide_topmenu; -$dol_hide_leftmenu=$conf->dol_hide_leftmenu; -$dol_optimize_smallscreen=$conf->dol_optimize_smallscreen; -$dol_no_mouse_hover=$conf->dol_no_mouse_hover; -$dol_use_jmobile=$conf->dol_use_jmobile; - -$path=''; // This value may be used in future for external module to overwrite theme -$theme='cameleo'; // Value of theme -if (! empty($conf->global->MAIN_OVERWRITE_THEME_RES)) { $path='/'.$conf->global->MAIN_OVERWRITE_THEME_RES; $theme=$conf->global->MAIN_OVERWRITE_THEME_RES; } - -$colorshadowtitle='000'; -$fontsize='12'; -$fontsizesmaller='11'; - -if (! empty($conf->dol_optimize_smallscreen)) $fontsize=11; -?> - -/* ============================================================================== */ -/* Styles par defaut */ -/* ============================================================================== */ - -body { - - background-color: #FFFFFF; - - background-color: #FCFCFC; - - color: #101010; - font-size: px; - font-family: ; - margin-top: 0; - margin-bottom: 0; - margin-right: 0; - margin-left: 0; - text-align: left; - trans("DIRECTION").";\n"; ?> -} - -a:link, a:visited, a:active { font-family: ; font-weight: bold; color: blue; text-decoration: none; } -a:hover { font-family: ; font-weight: bold; color: #A51B00; text-decoration: none; } - - - -input:focus, textarea:focus, button:focus, select:focus { - box-shadow: 0 0 4px #8091BF; -} - -input, input.flat, textarea, textarea.flat, form.flat select, select.flat { - font-size: px; - font-family: ; - background: #FDFDFD; - border: 1px solid #ACBCBB; - padding: 2px; - margin: 0px 0px 0px 0px; -} - - -select.flat, form.flat select { - font-weight: normal; -} -input:disabled { - background:#ddd; -} -textarea:disabled { - background:#ddd; -} - -input[type=checkbox] { background-color: transparent; border: none; box-shadow: none; } -input[type=radio] { background-color: transparent; border: none; box-shadow: none; } -input[type=image] { background-color: transparent; border: none; box-shadow: none; } -input[type=text] { min-width: 20px; } -input:-webkit-autofill { - background-color: !important; - background-image:none !important; - -webkit-box-shadow: 0 0 0 50px inset; -} - -input.button[type=submit] { - background: #A51B00; - -moz-border-radius:8px; - border-radius:8px; - border-right: 1px solid #555555; - border-bottom: 1px solid #555555; - border-left: 1px solid #D0D0D0; - border-top: 1px solid #D8D8D8; - /*border: 2px solid #063953;*/ - color: #FFF; - padding: 0px 10px 0px 10px; - text-decoration: none; - white-space: nowrap; - /*display: block; - height: 18px;*/ - vertical-align: top; - font-family: ; - line-height: 14px; - cursor: pointer; - font-size: 11px; - font-weight: bold; -} -::-webkit-input-placeholder { color:#ccc; } -::-moz-placeholder { color:#ccc; } /* firefox 19+ */ -:-ms-input-placeholder { color:#ccc; } /* ie */ -input:-moz-placeholder { color:#ccc; } - - -legend { margin-bottom: 8px; } - - -.button { - font-family: ; - background-image: url(); - background-position: bottom; - border: 1px solid #ACBCBB; - padding: 0px 2px 0px 2px; - margin: 0px 0px 0px 0px; -} -.button:focus { - font-family: ; - color: #222244; - background-image: url(); - background-position: bottom; - border: 1px solid #ACBCBB; - padding: 0px 2px 0px 2px; - margin: 0px 0px 0px 0px; -} -.button:disabled { - opacity: 0.4; - filter: alpha(opacity=40); /* For IE8 and earlier */ - box-shadow: none; - -webkit-box-shadow: none; - -moz-box-shadow: none; - cursor: auto; -} -.buttonRefused { - pointer-events: none; - cursor: default; - opacity: 0.4; - filter: alpha(opacity=40); /* For IE8 and earlier */ - box-shadow: none; - -webkit-box-shadow: none; - -moz-box-shadow: none; -} -form { - padding: 0em 0em 0em 0em; - margin: 0em 0em 0em 0em; -} -div.float -{ - float:; -} -div.floatright -{ - float:; -} -.inline-block -{ - display:inline-block; -} - -.valignmiddle { - vertical-align: middle; -} -.centpercent { - width: 100%; -} -.center { - text-align: center; -} -.left { - text-align: ; -} -.right { - text-align: ; -} -.nowrap { - white-space: ; -} -.nobold { - font-weight: normal !important; -} -.nounderline { - text-decoration: none; -} -.cursorpointer { - cursor: pointer; -} -.badge { - display: inline-block; - min-width: 10px; - padding: 2px 5px; - font-size: 10px; - font-weight: 700; - line-height: 0.9em; - color: #fff; - text-align: center; - white-space: nowrap; - vertical-align: baseline; - background-color: #777; - border-radius: 10px; -} - - -/* ============================================================================== */ -/* Styles to hide objects */ -/* ============================================================================== */ - -.hideobject { display: none; } - -.hideonsmartphone { display: none; } -.noenlargeonsmartphone { width : 50px !important; display: inline !important; } -.maxwidthonsmartphone { max-width: 100px; } -.maxwidth200onsmartphone { max-width: 200px; } - -.linkobject { cursor: pointer; } - -.hideonprint { display: none !important; } - - - -/* ============================================================================== */ -/* Styles for dragging lines */ -/* ============================================================================== */ - -.dragClass { - color: #002255; -} -td.showDragHandle { - cursor: move; -} -.tdlineupdown { - white-space: nowrap; - min-width: 10px; -} - - -/* ============================================================================== */ -/* Styles de positionnement des zones */ -/* ============================================================================== */ - -#id-container { - margin-bottom: 8px; - display: table; - table-layout: fixed; -} -#id-right, #id-left { - display: table-cell; - float: none; - vertical-align: top; -} -#id- { - width: 100%; -} - -div.leftContent { - margin-left: 0px !important; - background-color: #FFF; -} - -div.fiche { - margin-: dol_optimize_smallscreen)?'5':'2'; ?>px; - margin-: dol_optimize_smallscreen)?'5':''; ?>px; -} - -div.fichecenter { - width: 100%; - clear: both; /* This is to have div fichecenter that are true rectangles */ -} -div.fichethirdleft { - dol_optimize_smallscreen)) { print "float: ".$left.";\n"; } ?> - dol_optimize_smallscreen)) { print "width: 35%;\n"; } ?> -} -div.fichetwothirdright { - dol_optimize_smallscreen)) { print "float: ".$left.";\n"; } ?> - dol_optimize_smallscreen)) { print "width: 65%;\n"; } ?> -} -div.fichehalfleft { - dol_optimize_smallscreen)) { print "float: ".$left.";\n"; } ?> - dol_optimize_smallscreen)) { print "width: 50%;\n"; } ?> -} -div.fichehalfright { - dol_optimize_smallscreen)) { print "float: ".$left.";\n"; } ?> - dol_optimize_smallscreen)) { print "width: 50%;\n"; } ?> -} -div.ficheaddleft { - dol_optimize_smallscreen)) { print "padding-left: 16px;\n"; } - else print "margin-top: 10px;\n"; ?> -} - - -/* ============================================================================== */ -/* Menu top et 1ere ligne tableau */ -/* ============================================================================== */ - - - -div#tmenu_tooltip { - padding-right: 100px; -} - -div.tmenu { - - display:none; - - position: relative; - display: block; - white-space: nowrap; - /*border-top: 0px solid #D3E5EC;*/ - border-: 0px; - border-: 0px solid #555555; - padding: 0px 0px 0px 0px; /* t r b l */ - margin: 0px 0px 5px 0px; /* t r b l */ - font-weight: normal; - height: 44px; - background: #FFF; - background-image: url(); - background-position: center bottom; - border-bottom: 2px solid #A51B00; - color: #000; - text-decoration: none; - -} - -table.tmenu { - padding: 0px 0px 10px 0px; /* t r b l */ - margin: 0px 0px 0px 0px; /* t r b l */ - text-align: center; -} -td.tmenu { - - text-align: center; - vertical-align: bottom; - white-space: nowrap; - height: 20px; -} - -a.tmenudisabled:link, a.tmenudisabled:visited, a.tmenudisabled:hover, a.tmenudisabled:active { - color: #757575; - font-weight: normal; - padding: 0px 5px 0px 5px; - margin: 0px 1px 2px 1px; - cursor: not-allowed; - white-space: nowrap; -} - -a.tmenu:link, a.tmenu:visited, a.tmenu:hover, a.tmenu:active { - color: #842F00; - padding: 0px 10px 0px 10px; - /*margin: 0px 1px 0px 1px;*/ - font-weight: bold; - font-family: ; - white-space: nowrap; - height: 20px; - -moz-border-radius-topleft:8px; - -moz-border-radius-topright:8px; - border-top-left-radius:8px; - border-top-right-radius:8px; - border-top-left-radius:8px; - border-top-right-radius:8px; - border-right: 1px solid #555555; - border-bottom: 0px solid #555555; - border-left: 1px solid #D0D0D0; - border-top: 1px solid #D8D8D8; - background: #fceabb; /* Old browsers */ -background: -moz-linear-gradient(top, #fceabb 0%, #fccd4d 50%, #FFA820 87%, #fbdf93 100%); /* FF3.6+ */ -background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fceabb), color-stop(50%,#fccd4d), color-stop(87%,#FFA820), color-stop(100%,#fbdf93)); /* Chrome,Safari4+ */ -background: -webkit-linear-gradient(top, #fceabb 0%,#fccd4d 50%,#FFA820 87%,#fbdf93 100%); /* Chrome10+,Safari5.1+ */ -background: -o-linear-gradient(top, #fceabb 0%,#fccd4d 50%,#FFA820 87%,#fbdf93 100%); /* Opera11.10+ */ -background: -ms-linear-gradient(top, #fceabb 0%,#fccd4d 50%,#FFA820 87%,#fbdf93 100%); /* IE10+ */ -filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fceabb', endColorstr='#fbdf93',GradientType=0); /* IE6-9 */ -background: linear-gradient(top, #fceabb 0%,#fccd4d 50%,#FFA820 87%,#fbdf93 100%); /* W3C */ -} - -a.tmenu:hover, a.tmenu:active { - color: #FFF; - -moz-border-radius-topleft:8px; - -moz-border-radius-topright:8px; - border-top-left-radius:8px; - border-top-right-radius:8px; - border-right: 1px solid #555555; - border-bottom: 0px solid #555555; - border-left: 1px solid #D0D0D0; - border-top: 1px solid #D8D8D8; - background: #FFA820; /* old browsers */ -} - -a.tmenusel:link, a.tmenusel:visited, a.tmenusel:hover, a.tmenusel:active { - color: #FFF; - font-weight: bold; - height: 20px; - font-family: ; - padding: 0px 10px 0px 10px; - -moz-border-radius-topleft:8px; - -moz-border-radius-topright:8px; - border-top-left-radius:8px; - border-top-right-radius:8px; - border-right: 1px solid #555555; - border-bottom: 0px solid #555555; - border-left: 1px solid #D0D0D0; - border-top: 1px solid #D8D8D8; - background: #FFA820; /* old browsers */ -} - - -ul.tmenu { /* t r b l */ - padding: 0px 0px 10px 0px; - margin: 0px 0px 0px 6px; - list-style: none; -} -li.tmenu, li.tmenusel { - text-align: center; - vertical-align: top; - float: ; - height: 47px; - display: block; - padding: 1px 2px 0px 2px; - margin: 0px 0px 0px 0px; - font-weight: normal; -} - -.gecko li.tmenu { /* uniquement pour firefox */ - padding: 4px 2px 4px 2px; - margin: 0px 0px 0px 0px; -} - - -div.mainmenu { - position : relative; - color: white; - background-repeat:no-repeat; - background-position:center top; - height: px; - margin-left: 0px; -} - - -/* Do not load menu img if hidden to save bandwidth */ - - -div.mainmenu.agenda { - background-image: url(); -} - -div.mainmenu.cashdesk { - background-image: url(); -} - -div.mainmenu.accountancy { - background-image: url(); -} - -div.mainmenu.bank { - background-image: url(); -} - -div.mainmenu.companies { - background-image: url(); -} - -div.mainmenu.commercial { - background-image: url(); -} - -div.mainmenu.externalsite { - background-image: url(); -} - -div.mainmenu.ftp { - background-image: url(); -} - -div.mainmenu.ecm { - background-image: url(); -} - -div.mainmenu.gravatar { -} - -div.mainmenu.geopipmaxmind { -} - -div.mainmenu.home{ - background-image: url(); -} - -div.mainmenu.hrm { - background-image: url(); -} - -div.mainmenu.members { - background-image: url(); -} - -div.mainmenu.products { - background-image: url(); - margin-left: 10px; -} - -div.mainmenu.project { - background-image: url(); -} - -div.mainmenu.tools { - background-image: url(); -} - -div.mainmenu.google { - background-image: url(); -} - -'name of class for div') - -$moduletomainmenu=array('user'=>'','syslog'=>'','societe'=>'companies','projet'=>'project','propale'=>'commercial','commande'=>'commercial', - 'produit'=>'products','service'=>'products','stock'=>'products', - 'don'=>'accountancy','tax'=>'accountancy','banque'=>'accountancy','facture'=>'accountancy','compta'=>'accountancy','accounting'=>'accountancy','adherent'=>'members','import'=>'tools','export'=>'tools','mailing'=>'tools', - 'contrat'=>'commercial','ficheinter'=>'commercial','deplacement'=>'commercial', - 'fournisseur'=>'companies', - 'barcode'=>'','fckeditor'=>'','categorie'=>'', -); -$mainmenuused='home'; -foreach($conf->modules as $val) -{ - $mainmenuused.=','.(isset($moduletomainmenu[$val])?$moduletomainmenu[$val]:$val); -} -//var_dump($mainmenuused); -$mainmenuusedarray=array_unique(explode(',',$mainmenuused)); - -$generic=1; -$divalreadydefined=array('home','companies','products','commercial','accountancy','project','tools','members','agenda','ecm','bookmark','cashdesk','geoipmaxmind','gravatar','clicktodial','paypal','webservices'); -foreach($mainmenuusedarray as $val) -{ - if (empty($val) || in_array($val,$divalreadydefined)) continue; - //print "XXX".$val; - - // Search img file in module dir - $url=''; - foreach($conf->file->dol_document_root as $dirroot) - { - if (file_exists($dirroot."/".$val."/img/".$val.".png")) - { - $url=dol_buildpath('/'.$val.'/img/'.$val.'.png', 1); - break; - } - } - // Img file not found - if (! $url && $generic <= 4) - { - $url=dol_buildpath($path.'/theme/'.$theme.'/img/menus/generic'.$generic.'.png',1); - $generic++; - } - if ($url) - { - print "/* A mainmenu entry but img file ".$val.".png not found (check /".$val."/img/".$val.".png), so we use a generic one */\n"; - print "div.mainmenu.".$val." {\n"; - print " background-image: url(".$url.");\n"; - print " height:28px;\n"; - print "}\n"; - } -} -// End of part to add more div class css -?> - - - -.tmenuimage { - padding:0 0 0 0 !important; - margin:0 0px 0 0 !important; -} - - - -/* Login */ - -form#login { - margin-top: px; - margin-bottom: 30px; - font-size: 13px; -} -.login_table_title { - max-width: 540px; - color: #888888; - text-shadow: 1px 1px 1px #FFF; -} -.login_table label { - text-shadow: 1px 1px 1px #FFF; -} -.login_table { - margin-left: 10px; - margin-right: 10px; - padding:12px; - max-width: 540px; - border: 1px solid #C0C0C0; - background-color: #E0E0E0; - - -moz-box-shadow: 4px 4px 4px #CCC; - -webkit-box-shadow: 4px 4px 4px #CCC; - box-shadow: 4px 4px 4px #CCC; - - border-radius: 12px; - border:solid 1px rgba(168,168,168,.4); - border-top:solid 1px f8f8f8; - background-color: #f8f8f8; - background-image: -o-linear-gradient(top, rgba(240,240,240,.3) 0%, rgba(192,192,192,.3) 100%); - background-image: -moz-linear-gradient(top, rgba(240,240,240,.3) 0%, rgba(192,192,192,.3) 100%); - background-image: -webkit-linear-gradient(top, rgba(240,240,240,.3) 0%, rgba(192,192,192,.3) 100%); - background-image: -ms-linear-gradient(top, rgba(240,240,240,.3) 0%, rgba(192,192,192,.3) 100%); - background-image: linear-gradient(top, rgba(240,240,240,.3) 0%, rgba(192,192,192,.3) 100%); -} -#securitycode { - min-width: 60px; -} -#img_securitycode { - border: 1px solid #DDDDDD; -} -#img_logo { - max-width: 200px; - max-height: 100px; -} - -div.login_block { - width: 180px; - position: absolute; - : 5px; - top: 3px; - font-weight: bold; - - display: none; - -} - -div.login_block table { - display: inline; -} - -div#login_left, div#login_right { - display: inline-block; - min-width: 220px; - text-align: center; - vertical-align: middle; -} - -div.login { - white-space:nowrap; - padding: dol_optimize_smallscreen?'0':'8')?>px 0px 0px 0px; - margin: 0px 0px 0px 8px; - font-weight: bold; -} -div.login a { - color: #234046; -} -div.login a:hover { - color: black; - text-decoration:underline; -} -.login_block_user { - float: right; -} -.login_block_elem { - float: right; - vertical-align: top; - padding: 8px 0px 0px 4px !important; -} - -.alogin, .alogin:hover { - color: #888 !important; - font-weight: normal !important; - font-size: px !important; -} -.alogin:hover { - text-decoration:underline !important; -} - -img.login, img.printer, img.entity { - padding: 0px 0px 0px 0px; - margin: 0px 0px 0px 4px; - text-decoration: none; - color: white; - font-weight: bold; -} - - -/* ============================================================================== */ -/* Menu gauche */ -/* ============================================================================== */ - -div.vmenu, td.vmenu { - margin-: 2px; - padding: 0px; - padding-bottom: 0px; - padding-top: 1px; - width: 200px; -} - - -.vmenu { - display: none; -} - - -a.vmenu:link { font-size:12px; text-align:left; font-weight: normal; color: #FFFFFF; margin: 1px 1px 1px 4px; } -a.vmenu:visited { font-size:12px; text-align:left; font-weight: normal; color: #FFFFFF; margin: 1px 1px 1px 4px; } -a.vmenu:active { font-size:12px; text-align:left; font-weight: normal; color: #FFFFFF; margin: 1px 1px 1px 4px; } -a.vmenu:hover { font-size:12px; text-align:left; font-weight: normal; color: #FEF4AE; margin: 1px 1px 1px 4px; } -font.vmenudisabled { font-size:12px; text-align:left; font-weight: normal; color: #FFFFFF; margin: 1px 1px 1px 4px; } - -a.vsmenu:link { font-size:11px; text-align:left; font-weight: normal; color: #202020; margin: 1px 1px 1px 4px; } -a.vsmenu:visited { font-size:11px; text-align:left; font-weight: normal; color: #202020; margin: 1px 1px 1px 4px; } -a.vsmenu:active { font-size:11px; text-align:left; font-weight: normal; color: RGB(94,148,181); margin: 1px 1px 1px 4px; } -a.vsmenu:hover { font-size:11px; text-align:left; font-weight: normal; color: #7F0A29; margin: 1px 1px 1px 4px; } -font.vsmenudisabled { font-size:11px; text-align:left; font-weight: normal; color: #202020; } -font.vsmenudisabledmargin { margin: 1px 1px 1px 4px; } - -a.help:link { font-size: 10px; font-weight: bold; background: #FFFFFF; color: #AAACAF; padding: 0em 0.7em; margin: 0em 0.5em; text-decoration: none; white-space: nowrap; } -a.help:visited { font-size: 10px; font-weight: bold; background: #FFFFFF; color: #AAACAF; padding: 0em 0.7em; margin: 0em 0.5em; text-decoration: none; white-space: nowrap; } -a.help:active { font-size: 10px; font-weight: bold; background: #FFFFFF; color: #9998A0; padding: 0em 0.7em; margin: 0em 0.5em; text-decoration: none; white-space: nowrap; } -a.help:hover { font-size: 10px; font-weight: bold; background: #FFFFFF; color: #9998A0; padding: 0em 0.7em; margin: 0em 0.5em; text-decoration: none; white-space: nowrap; } - - -div.blockvmenupair -{ - margin-bottom: 15px; - border-spacing: 0px; - padding: 0px; - width: 100%; - background-image: url(); - background-position: top right; - background-repeat: no-repeat; - -} - -div.blockvmenuimpair -{ - margin-bottom: 15px; - border-spacing: 0px; - padding: 0px; - width: 100%; - background-image: url(); - background-position: top right; - background-repeat: no-repeat; - -} - -img.logocompany -{ - margin-top: 22px; - border-spacing: 0px; - padding: 0px; -} - -div.blockvmenuimpair form a.vmenu, div.blockvmenupair form a.vmenu -{ - width: 166px; - border-spacing: 0px; - color: #000000; - text-align:left; - text-decoration: none; - padding: 4px; - margin: 0px; - background: #FFFFFF; - margin-bottom: -12px; -} - -div.menu_titre -{ - padding: 0px; - padding-left:0px; - margin-top: 8px; - margin: 0px; - height: 16px; - text-align: left; - font-size : 12px; - color : #FFFFFF; - font-weight: bold; - height: 20px; - line-height: 20px; -} - -div.menu_titre a.vmenu { - font-weight: bold; - font-family: ; - font-size: 12px; -} - - -div.blockvmenusearch -{ - margin: 3px 0px 15px 0px; - padding: 25px 0px 2px 2px; - background-image: url(); - background-position: top right; - background-repeat: no-repeat; -} - -div.blockvmenusearch input[type="text"] { - float: left; - width: 130px; - border: 1px solid #333; - font-size: 10px; - height: 16px; -} - -div.blockvmenusearch input.button[type="submit"] { - float: left; - margin-left: 10px; -} - -div.blockvmenusearch div.menu_titre { - margin-top: 5px; -} - -#blockvmenusearch div.menu_titre, #blockvmenusearch form -{ - padding-top: 1px; - padding-bottom: 1px; - min-height: 20px; -} - -#blockvmenusearch form -{ - clear: both; - margin-bottom: 14px; -} - -div.blockvmenubookmarks -{ - margin: 0px; - border-spacing: 0px; - padding: 0px; - width: 100%; - background-image: url(); - background-position: top left; - background-repeat: no-repeat; - margin-bottom: 15px; -} - -div.blockvmenuhelp -{ -dol_optimize_smallscreen)) { ?> - text-align: center; - border-spacing: 0px; - width: 162px; - background: transparent; - font-family: ; - color: #000000; - text-decoration: none; - padding-left: 0px; - padding-right: 1px; - padding-top: 3px; - padding-bottom: 3px; - margin: 1px 0px 0px 0px; - - display: none; - -} - -div.menu_contenu { - margin: 0px; - padding: 1px; - - padding-right: 8px; - font-size : 11px; - font-weight:normal; - color : #000000; - text-align: left; -} - -div.menu_end { -/* border-top: 1px solid #436981; */ - margin: 0px; - padding: 0px; - height: 6px; - width: 165px; - background-repeat:no-repeat; - display: none; -} - - -td.barre { - border-right: 1px solid #000000; - border-bottom: 1px solid #000000; - background: #b3c5cc; - font-family: ; - color: #000000; - text-align: ; - text-decoration: none; -} - -td.barre_select { - background: #b3c5cc; - color: #000000; -} - -td.photo { - background: #F4F4F4; - color: #000000; - border: 1px solid #b3c5cc; -} - - -/* ============================================================================== */ -/* Panes for Main */ -/* ============================================================================== */ - -/* - * PANES and CONTENT-DIVs - */ - -#mainContent, #leftContent .ui-layout-pane { - padding: 0px; - overflow: auto; -} - -#mainContent, #leftContent .ui-layout-center { - padding: 0px; - position: relative; /* contain floated or positioned elements */ - overflow: auto; /* add scrolling to content-div */ -} - -/* ============================================================================== */ -/* Barre de redmiensionnement menu */ -/* ============================================================================== */ - -.ui-layout-resizer-west-open { - /*left: 200px !important;*/ -} - -.ui-layout-north { - height: 57px !important; -} - -/* ============================================================================== */ -/* Toolbar for ECM or Filemanager */ -/* ============================================================================== */ - -.toolbar { - background-repeat: repeat-x !important; - border: 1px solid #BBB !important; -} - -a.toolbarbutton { - margin-top: 1px; - margin-left: 4px; - margin-right: 4px; - height: 30px; -/* border: solid 1px #AAAAAA; - width: 32px; - background: #FFFFFF;*/ -} -img.toolbarbutton { - margin-top: 2px; - height: 28px; -} - - -/* ============================================================================== */ -/* Panes for ECM or Filemanager */ -/* ============================================================================== */ - -#containerlayout .layout-with-no-border { - border: 0 !important; - border-width: 0 !important; -} - -#containerlayout .layout-padding { - padding: 2px !important; -} - -/* - * PANES and CONTENT-DIVs - */ -#containerlayout .ui-layout-pane { /* all 'panes' */ - background: #FFF; - border: 1px solid #BBB; - /* DO NOT add scrolling (or padding) to 'panes' that have a content-div, - otherwise you may get double-scrollbars - on the pane AND on the content-div - */ - padding: 0px; - overflow: auto; -} -/* (scrolling) content-div inside pane allows for fixed header(s) and/or footer(s) */ -#containerlayout .ui-layout-content { - padding: 10px; - position: relative; /* contain floated or positioned elements */ - overflow: auto; /* add scrolling to content-div */ -} - -/* - * RESIZER-BARS - */ -.ui-layout-resizer { /* all 'resizer-bars' */ - width: 8px !important; -} -.ui-layout-resizer-hover { /* affects both open and closed states */ -} -/* NOTE: It looks best when 'hover' and 'dragging' are set to the same color, - otherwise color shifts while dragging when bar can't keep up with mouse */ -/*.ui-layout-resizer-open-hover ,*/ /* hover-color to 'resize' */ -.ui-layout-resizer-dragging { /* resizer beging 'dragging' */ - background: #DDD; - width: 8px; -} -.ui-layout-resizer-dragging { /* CLONED resizer being dragged */ - border-left: 1px solid #BBB; - border-right: 1px solid #BBB; -} -/* NOTE: Add a 'dragging-limit' color to provide visual feedback when resizer hits min/max size limits */ -.ui-layout-resizer-dragging-limit { /* CLONED resizer at min or max size-limit */ - background: #E1A4A4; /* red */ -} -.ui-layout-resizer-closed:hover { - background-color: #EEDDDD; -} -.ui-layout-resizer-sliding { /* resizer when pane is 'slid open' */ - opacity: .10; /* show only a slight shadow */ - filter: alpha(opacity=10); - } - .ui-layout-resizer-sliding-hover { /* sliding resizer - hover */ - opacity: 1.00; /* on-hover, show the resizer-bar normally */ - filter: alpha(opacity=100); - } -/* sliding resizer - add 'outside-border' to resizer on-hover - * this sample illustrates how to target specific panes and states */ -.ui-layout-resizer-north-sliding-hover { border-bottom-width: 1px; } -.ui-layout-resizer-south-sliding-hover { border-top-width: 1px; } -.ui-layout-resizer-west-sliding-hover { border-right-width: 1px; } -.ui-layout-resizer-east-sliding-hover { border-left-width: 1px; } - -/* - * TOGGLER-BUTTONS - */ -.ui-layout-toggler { - border-top: 1px solid #AAA; /* match pane-border */ - border-right: 1px solid #AAA; /* match pane-border */ - border-bottom: 1px solid #AAA; /* match pane-border */ - background-color: #DDD; - top: 5px !important; - } -.ui-layout-toggler-open { - height: 48px !important; - width: 5px !important; - -moz-border-radius:0px 10px 10px 0px; - -webkit-border-radius:0px 10px 10px 0px; - border-radius:0px 10px 10px 0px; -} -.ui-layout-toggler-closed { - height: 48px !important; - width: 5px !important; - -moz-border-radius:0px 10px 10px 0px; - -webkit-border-radius:0px 10px 10px 0px; - border-radius:0px 10px 10px 0px; -} -.ui-layout-toggler .content { /* style the text we put INSIDE the togglers */ - color: #666; - font-size: 12px; - font-weight: bold; - width: 100%; - padding-bottom: 0.35ex; /* to 'vertically center' text inside text-span */ -} - -/* hide the toggler-button when the pane is 'slid open' */ -.ui-layout-resizer-sliding ui-layout-toggler { - display: none; -} - -.ui-layout-north { - height: dol_optimize_smallscreen)?'54':'21'); ?>px !important; -} - -/* ECM */ - -#containerlayout .ecm-layout-pane { /* all 'panes' */ - background: #FFF; - border: 1px solid #BBB; - /* DO NOT add scrolling (or padding) to 'panes' that have a content-div, - otherwise you may get double-scrollbars - on the pane AND on the content-div - */ - padding: 0px; - overflow: auto; -} -/* (scrolling) content-div inside pane allows for fixed header(s) and/or footer(s) */ -#containerlayout .ecm-layout-content { - padding: 10px; - position: relative; /* contain floated or positioned elements */ - overflow: auto; /* add scrolling to content-div */ -} - -.ecm-layout-toggler { - background-color: #DDD; - } -.ecm-layout-toggler-open { - height: 48px !important; - width: 6px !important; -} -.ecm-layout-toggler-closed { - height: 48px !important; - width: 6px !important; -} -.ecm-layout-toggler .content { /* style the text we put INSIDE the togglers */ - color: #666; - font-size: 12px; - font-weight: bold; - width: 100%; - padding-bottom: 0.35ex; /* to 'vertically center' text inside text-span */ -} -#ecm-layout-west-resizer { - width: 6px !important; -} - -.ecm-layout-resizer { /* all 'resizer-bars' */ - border: 1px solid #BBB; - border-width: 0; - } - -.ecm-in-layout-center { - border-left: 1px !important; - border-right: 0px !important; - border-top: 0px !important; -} - -.ecm-in-layout-south { - border-left: 0px !important; - border-right: 0px !important; - border-bottom: 0px !important; - padding: 4px 0 4px 4px !important; -} - - - -/* ============================================================================== */ -/* Onglets */ -/* ============================================================================== */ - -div.tabs { - margin: 10px 0px 0px 0px; - text-align: left; - vertical-align: bottom; - width: 100%; - background-image: url(); - height: 24px; - border-bottom: 2px solid #A51B00; - background-repeat: repeat-x; - background-position: bottom; -} - -div.tabs a.tabTitle { - position: relative; - float: left; - height: 18px; - color: #A51B00; - font-family: ; - font-weight: bold; - padding: 4px 2px 0px 6px; - margin: 0px 10px 0px 0px; - text-decoration: none; - white-space: nowrap; -} - -div.tabs a.tab { - display: block; - width: auto; - font-size: 11px; - font-weight: bold; - font-family: ; - height: 18px; - background-position: right; - line-height: 18px; - color: #842F00; - text-decoration: none; - position: relative; - float: left; - padding: 0px 6px 0px 6px; - margin: 5px 2px 0px 2px; - margin-bottom: 2px; - -moz-border-radius-topleft:8px; - -moz-border-radius-topright:8px; - border-top-left-radius:8px; - border-top-right-radius:8px; - border-right: 1px solid #555555; - border-bottom: 0px solid #555555; - border-left: 1px solid #D0D0D0; - border-top: 1px solid #D8D8D8; - background: #fceabb; /* Old browsers */ -background: -moz-linear-gradient(top, #fceabb 0%, #fccd4d 50%, #FFA820 87%, #fbdf93 100%); /* FF3.6+ */ -background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#fceabb), color-stop(50%,#fccd4d), color-stop(87%,#FFA820), color-stop(100%,#fbdf93)); /* Chrome,Safari4+ */ -background: -webkit-linear-gradient(top, #fceabb 0%,#fccd4d 50%,#FFA820 87%,#fbdf93 100%); /* Chrome10+,Safari5.1+ */ -background: -o-linear-gradient(top, #fceabb 0%,#fccd4d 50%,#FFA820 87%,#fbdf93 100%); /* Opera11.10+ */ -background: -ms-linear-gradient(top, #fceabb 0%,#fccd4d 50%,#FFA820 87%,#fbdf93 100%); /* IE10+ */ -filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fceabb', endColorstr='#fbdf93',GradientType=0); /* IE6-9 */ -background: linear-gradient(top, #fceabb 0%,#fccd4d 50%,#FFA820 87%,#fbdf93 100%); /* W3C */ -} - - -div.tabs a.tab:active, .tabactive { - color: #FFF !important; - padding: 0px 6px 0px 6px; - -moz-border-radius-topleft:8px; - -moz-border-radius-topright:8px; - border-top-left-radius:8px; - border-top-right-radius:8px; - border-right: 1px solid #555555; - border-bottom: 0px solid #555555; - border-left: 1px solid #D0D0D0; - border-top: 1px solid #D8D8D8; - background: #FFA820; /* old browsers */ -} - -div.tabs a.tab:hover { - color: #FFF; - -moz-border-radius-topleft:8px; - -moz-border-radius-topright:8px; - border-top-left-radius:8px; - border-top-right-radius:8px; - border-right: 1px solid #555555; - border-bottom: 0px solid #555555; - border-left: 1px solid #D0D0D0; - border-top: 1px solid #D8D8D8; - background: #FFA820; /* old browsers */ -} - -div.tabBar { - color: #234046; - padding-top: 4px; - padding-left: 4px; - padding-right: 4px; - padding-bottom: 4px; - margin: 6px 0px 20px 0px; - -moz-border-radius:8px; - border-radius:8px; - border-right: 1px solid #555555; - border-bottom: 1px solid #555555; - border-left: 1px solid #D0D0D0; - border-top: 1px solid #D8D8D8; - /*background: url() repeat-x;*/ - background: #FEF4AE; /* old browsers */ -} - -div.tabsAction { - margin: 20px 0em 1px 0em; - padding: 0em 0em; - text-align: right; -} - -td.tab { - background: #dee7ec; -} - -span.tabspan { - background: #dee7ec; - color: #434956; - font-family: ; - padding: 0px 6px; - margin: 0em 0.2em; - text-decoration: none; - white-space: nowrap; - -moz-border-radius-topleft:6px; - -moz-border-radius-topright:6px; - border-top-left-radius:6px; - border-top-right-radius:6px; - - border-: 1px solid #555555; - border-: 1px solid #D8D8D8; - border-top: 1px solid #D8D8D8; -} - -/* ============================================================================== */ -/* Boutons actions */ -/* ============================================================================== */ - -div.divButAction { margin-bottom: 1.4em; } - -.butAction, .butAction:link, .butAction:visited, .butAction:hover, .butAction:active, .butActionDelete, .butActionRefused, .butActionDelete:link, .butActionDelete:visited, .butActionDelete:hover, .butActionDelete:active { - font-family: ; - font-weight: bold; - /*background: url() repeat-x;*/ - background: #A81E00; - -moz-border-radius:8px; - border-radius:8px; - border-right: 1px solid #555555; - border-bottom: 1px solid #555555; - border-left: 1px solid #D0D0D0; - border-top: 1px solid #D8D8D8; - /*border: 2px solid #063953;*/ - color: #FFF; - padding: 0px 10px 0px 10px; - margin: 0px 10px 0px 10px; - text-decoration: none; - white-space: nowrap; - font-size: 12px; - height: 18px; - line-height: 18px; - cursor: pointer; -} - -.butAction:hover { - background: #FFe7ec; - color: #961400; -} - -.butActionDelete { - border: 1px solid red; -} - -.butActionDelete:link, .butActionDelete:visited, .butActionDelete:hover, .butActionDelete:active { - border: 2px solid red; -} - -.butActionDelete:hover { - background: #FFe7ec; - color: #961400; -} - -.butActionRefused { - background: #FFe7ec; - color: #aaa !important; -} - -global->MAIN_BUTTON_HIDE_UNAUTHORIZED)) { ?> -.butActionRefused { - display: none; -} - - -span.butAction, span.butActionDelete { - cursor: pointer; -} - - -/* ============================================================================== */ -/* Tables */ -/* ============================================================================== */ - -.allwidth { - width: 100%; -} - -/* -#undertopmenu { -background-image: url(""); -background-repeat: repeat-x; -} -*/ - - -.paddingrightonly { - border-collapse: collapse; - border: 0px; - margin-left: 0px; - padding-: 0px !important; - padding-: 4px !important; -} -.nocellnopadd { -list-style-type:none; -margin: 0px; -padding: 0px; - -} - -.notopnoleft { -border-collapse: collapse; -border: 0px; -padding-top: 0px; -padding-: 0px; -padding-: 6px; -padding-bottom: 0px; -margin: 0px 0px; -} -.notopnoleftnoright { -border-collapse: collapse; -border: 0px; -padding-top: 0px; -padding-left: 0px; -padding-right: 0px; -padding-bottom: 0px; -margin: 0px 0px 0px 0px; -} - - -table.border, table.dataTable, .table-border, .table-border-col, .table-key-border-col, .table-val-border-col, div.border { - border: 1px solid #9CACBB; - border-collapse: collapse; - padding: 1px 2px; -} - -table.border td, div.border div div.tagtd { - padding: 1px 2px; - border: 1px solid #9CACBB; - border-collapse: collapse; -} - -td.border, div.tagtable div div.border { - border-top: 1px solid #000000; - border-right: 1px solid #000000; - border-bottom: 1px solid #000000; - border-left: 1px solid #000000; -} - -.table-key-border-col { - width: 25%; - vertical-align:top; -} -.table-val-border-col { - width:auto; -} - -/* Main boxes */ - -table.noborder, div.noborder { - background: #FFF url(); - background-repeat: repeat-x; - background-position: top right; - vertical-align: text-top; - /*border-right: 1px solid #555555; - border-bottom: 1px solid #555555; - border-left: 1px solid #D0D0D0; - border-top: 1px solid #D8D8D8;*/ - border : 1px solid #D0D0D0; - -moz-border-radius:10px; - /*-moz-border-radius-topright:8px;*/ - border-radius:10px; - border-spacing: 0px 0px; - padding : 0 0px 8px 0px; - /*border-collapse: collapse;*/ -} - -table.noborder tr, div.noborder form { -} - -table.noborder td, div.noborder form div { -} - -#graph { - padding: 1px 1px; -} - -table.nobordernopadding { -border: 0px; -border-spacing: 0px 0px; -} -table.nobordernopadding tr { -border: 0px; -padding: 0px 0px; -} -table.nobordernopadding td { -border: 0px; -padding: 0px 0px; -} - -/* For lists */ - -table.liste { -background-image: url(); -background-repeat: repeat-x; -background-position: top right; - vertical-align: text-top; - /*border-right: 1px solid #555555; - border-bottom: 1px solid #555555; - border-left: 1px solid #D0D0D0; - border-top: 1px solid #D8D8D8;*/ - border : 1px solid #D0D0D0; - -moz-border-radius:10px; - /*-moz-border-radius-topright:8px;*/ - border-radius:10px; - border-spacing: 0px 0px; - padding : 0 0px 8px 0px; - /*border-collapse: collapse;*/ -} - -table.liste td { - padding-right: 2px; -} - -.tagtable, .table-border { display: table; } -.tagtr, .table-border-row { display: table-row; } -.tagtd, .table-border-col, .table-key-border-col, .table-val-border-col { display: table-cell; } - -/* Pagination */ -div.pagination { - float: right; -} -div.pagination a { - font-weight: normal; -} -div.pagination ul -{ - list-style: none; - display: inline-block; - padding-left: 0px; - padding-right: 0px; - margin: 0; -} -div.pagination li { - display: inline-block; - padding-left: 0px; - padding-right: 0px; - padding-top: 6px; - padding-bottom: 6px; -} -.pagination { - display: inline-block; - padding-left: 0; - border-radius: 4px; -} - -div.pagination li a, -div.pagination li span { - /*position: relative;*/ - /*float: left;*/ - padding: 6px 12px; - margin-left: -1px; - line-height: 1.42857143; - color: #000; - text-decoration: none; - background-color: #fff; - border: 1px solid #ddd; -} -div.pagination li:first-child a, -div.pagination li:first-child span { - margin-left: 0; - border-top-left-radius: 4px; - border-bottom-left-radius: 4px; -} -div.pagination li:last-child a, -div.pagination li:last-child span { - border-top-right-radius: 4px; - border-bottom-right-radius: 4px; -} -div.pagination li a:hover, -div.pagination li span:hover, -div.pagination li a:focus, -div.pagination li span:focus { - color: #000; - background-color: #eee; - border-color: #ddd; -} -div.pagination li .active a, -div.pagination li .active span, -div.pagination li .active a:hover, -div.pagination li .active span:hover, -div.pagination li .active a:focus, -div.pagination li .active span:focus { - z-index: 2; - color: #fff; - cursor: default; - background-color: ; - border-color: #337ab7; -} -div.pagination .disabled span, -div.pagination .disabled span:hover, -div.pagination .disabled span:focus, -div.pagination .disabled a, -div.pagination .disabled a:hover, -div.pagination .disabled a:focus { - color: #777; - cursor: not-allowed; - background-color: #fff; - border-color: #ddd; -} -div.pagination li .active { - text-decoration: underline; -} -div.pagination li.paginationafterarrows { - margin-left: 10px; -} - -tr.liste_titre, tr.liste_titre_sel, form.liste_titre, form.liste_titre_sel -{ - height: 20px !important; -} -div.liste_titre, tr.liste_titre, form.liste_titre { - color: #842F00; - font-weight: bold; - font-family: ; - /*border-bottom: 1px solid #FDFFFF;*/ - border-radius: 8px; - padding-left: 10px; - padding-right: 10px; - white-space: ; - text-align: ; -} -th.liste_titre, td.liste_titre, form.liste_titre div -{ - padding-left: 6px; - padding-right: 6px; - white-space: ; - vertical-align: middle; -} -th.liste_titre_sel, td.liste_titre_sel, form.liste_titre_sel div -{ - background-position: top right; - color: #A51B00; - font-weight: bold; - white-space: ; - vertical-align: middle; -} - -input.liste_titre { -background: #FFF; -/*background-image: url(); -background-repeat: no-repeat; -background-position: top right;*/ -border: 0px; -} - -tr.liste_total td, form.liste_total div { -border-top: 1px solid #DDDDDD; -background: #F0F0F0; -background-repeat: repeat-x; -color: #332266; -font-weight: normal; -white-space: nowrap; -} - -.impair { -/* background: #d0d4d7; */ -background: #eaeaea; -font-family: ; -border: 0px; -} - -.impair:hover { -background: #c0c4c7; -border: 0px; -} - -tr.impair td.nohover, form.impair div.nohover { - background: #eaeaea; -} - -.pair { -background: #FFFFFF; -font-family: ; -border: 0px; -} - -.pair:hover { -background: #c0c4c7; -border: 0px; -} - -tr.pair td.nohover { - background: #FFFFFF; -} - -.pair td, .impair td { - padding: 2px; -} - -.noshadow { - -moz-box-shadow: 0px 0px 0px #CCC !important; - -webkit-box-shadow: 0px 0px 0px #CCC !important; - box-shadow: 0px 0px 0px #CCC !important; -} - - -/* - * Boxes - */ - -.boxstats { - - margin: 4px; - padding: 4px; - /*-moz-box-shadow: 4px 4px 4px #DDD; - -webkit-box-shadow: 4px 4px 4px #DDD; - box-shadow: 4px 4px 4px #DDD; - margin-bottom: 8px !important;*/ - background: #FFFFFF; - border: 1px solid #AAA; - text-align: center; - border-radius: 5px; -} - -.box { - padding-right: 0px; - padding-left: 0px; - padding-bottom: 4px; -} - -tr.box_titre { - background-repeat: repeat-x; - color: #842F00; - font-weight: normal; - font-family: ; - white-space: nowrap; - -moz-border-radius-topleft:6px; - -moz-border-radius-topright:6px; - border-top-left-radius:6px; - border-top-right-radius:6px; -} - -tr.box_titre td.boxclose { - width: 30px; -} - -tr.box_impair { -/* background: #e6ebed; */ -background: #eaeaea; -font-family: ; -} - -tr.box_impair:hover { -background: #c0c4c7; -border: 0px; -} - -tr.box_impair .nohover { -background: #eaeaea; -} - -tr.box_pair { -/* background: #d0d4d7; */ -background: #f4f4f4; -font-family: ; -} - -tr.box_pair:hover { -background: #c0c4c7; -border: 0px; -} - -.formboxfilter { - vertical-align: middle; - margin-bottom: 6px; -} -.formboxfilter input[type=image] -{ - top: 4px; - position: relative; -} - - - -/* - * Ok, Warning, Error - */ -.ok { color: #114466; } -.warning { color: #887711; } -.error { color: #550000 !important; font-weight: bold; } - -div.ok { - color: #114466; -} - -div.warning { - color: #997711; - padding: 0.2em 0.2em 0.2em 0.2em; - margin: 0.5em 0em 0.5em 0em; - border: 1px solid #e0e0d0; - -moz-border-radius:6px; - border-radius:6px; - background: #efefd4; -} - -div.error { - color: #550000; font-weight: bold; - padding: 0.2em 0.2em 0.2em 0.2em; - margin: 0.5em 0em 0.5em 0em; - border: 1px solid #8C9CAB; - -moz-border-radius:6px; - border-radius:6px; -} - -/* Info admin */ -div.info { - color: #707070; - padding: 0.2em 0.2em 0.2em 0.2em; - margin: 0.5em 0em 0.5em 0em; - border: 1px solid #e0e0d0; - -moz-border-radius:6px; - border-radius:6px; - background: #efefd4; -} - - -/* - * Liens Payes/Non payes - */ - -a.normal:link { font-weight: normal } -a.normal:visited { font-weight: normal } -a.normal:active { font-weight: normal } -a.normal:hover { font-weight: normal } - -a.impayee:link { font-weight: bold; color: #550000; } -a.impayee:visited { font-weight: bold; color: #550000; } -a.impayee:active { font-weight: bold; color: #550000; } -a.impayee:hover { font-weight: bold; color: #550000; } - - - -/* - * Other - */ - -.fieldrequired { font-weight: bold; color: #000055; } - -.dolgraphtitle { margin-top: 6px; margin-bottom: 4px; } -.dolgraphtitlecssboxes { margin: 0px; } - -.photo { -border: 0px; -/* filter:alpha(opacity=55); */ -/* opacity:.55; */ -} - -div.titre { - font-family: ; - font-weight: normal; - color: #842F00; - font-size: 16px; - text-decoration: none; -} - -#dolpaymenttable { width: 600px; font-size: 13px; } -#tablepublicpayment { border: 1px solid #CCCCCC !important; width: 100%; } -#tablepublicpayment .CTableRow1 { background-color: #F0F0F0 !important; } -#tablepublicpayment tr.liste_total { border-bottom: 1px solid #CCCCCC !important; } -#tablepublicpayment tr.liste_total td { border-top: none; } - - -/* ============================================================================== */ -/* Formulaire confirmation (When Ajax JQuery is used) */ -/* ============================================================================== */ - -.ui-dialog-titlebar { -} -.ui-dialog-content { - font-size: px !important; -} - -/* ============================================================================== */ -/* Formulaire confirmation (When HTML is used) */ -/* ============================================================================== */ - -table.valid { - border-top: solid 1px #E6E6E6; - border-: solid 1px #E6E6E6; - border-: solid 1px #444444; - border-bottom: solid 1px #555555; - padding-top: 0px; - padding-left: 0px; - padding-right: 0px; - padding-bottom: 0px; - margin: 0px 0px; - background: #D5BAA8; -} - -.validtitre { - background: #D5BAA8; - font-weight: bold; -} - - -/* ============================================================================== */ -/* Tooltips */ -/* ============================================================================== */ - -#tooltip { -position: absolute; -width: px; -border-top: solid 1px #BBBBBB; -border-: solid 1px #BBBBBB; -border-: solid 1px #444444; -border-bottom: solid 1px #444444; -padding: 2px; -z-index: 3000; -background-color: #FFFFF0; -opacity: 1; --moz-border-radius:6px; -border-radius:6px; -} - - -/* ============================================================================== */ -/* Calendar */ -/* ============================================================================== */ - -img.datecallink { padding-left: 2px !important; padding-right: 2px !important; } - -.ui-datepicker-trigger { - vertical-align: middle; - cursor: pointer; -} - -.bodyline { - padding: 0px; - margin-bottom: 5px; - z-index: 3000; -} -table.dp { - width: 180px; - background-color: #FFFFFF; - border-top: solid 2px #DDDDDD; - border-: solid 2px #DDDDDD; - border-: solid 1px #222222; - border-bottom: solid 1px #222222; - -moz-border-radius:8px; - border-radius:8px; - background: #FFA820; /* old browsers */ -background: -moz-linear-gradient(top, #FFA820 0%, #FFA820 0%, #FFFFFF 100%); /* firefox */ - -background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#FFA820), color-stop(0%,#FFA820), color-stop(100%,#FFFFFF)); /* webkit */ - -filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFA820', endColorstr='#FFFFFF',GradientType=0); /* ie */ - -background: -o-linear-gradient(top, #FFA820 0%,#FFA820 0%,#FFFFFF 100%); /* opera */ - -} -.dp td, .tpHour td, .tpMinute td{padding:2px; font-size:10px;} -/* Barre titre */ -.dpHead,.tpHead,.tpHour td:Hover .tpHead{ - font-weight:bold; - color:white; - font-size:11px; - cursor:auto; - -} -/* Barre navigation */ -.dpButtons,.tpButtons { - text-align:center; - background-color:#A51B00; - color:#FFFFFF; - font-weight:bold; - border: 1px outset black; - cursor:pointer; -} -.dpButtons:Active,.tpButtons:Active{border: 1px outset black;} -.dpDayNames td,.dpExplanation {background-color:#FEF4AE; font-weight:bold; text-align:center; font-size:11px;} -.dpExplanation{ - font-weight:normal; - font-size:11px; - -moz-border-radius-bottomleft:8px; - -moz-border-radius-bottomright:8px; - border-bottom-left-radius:8px; - border-bottom-right-radius:8px; - //border-right: 1px solid #555555; - //border-bottom: 0px solid #555555; - //border-left: 1px solid #D0D0D0; - //border-top: 1px solid #D8D8D8; -} -.dpWeek td{ - text-align:center; - border-bottom: 1px solid #555555; - } - -.dpToday,.dpReg,.dpSelected{ - cursor:pointer; -} -.dpToday{font-weight:bold; color:black; background-color:#DDDDDD;} -.dpReg:Hover,.dpToday:Hover{background-color:#A51B00;color:#FEF4AE; font-weight: bold;} - -/* Jour courant */ -.dpSelected { - color:white; - font-weight:bold; - background-color: #A51B00; /* old browsers */ -} - -.tpHour{border-top:1px solid #DDDDDD; border-right:1px solid #DDDDDD;} -.tpHour td {border-left:1px solid #DDDDDD; border-bottom:1px solid #DDDDDD; cursor:pointer;} -.tpHour td:Hover {background-color:black;color:white;} - -.tpMinute {margin-top:5px;} -.tpMinute td:Hover {background-color:black; color:white; } -.tpMinute td {background-color:#D9DBE1; text-align:center; cursor:pointer;} - -/* Bouton X fermer */ -.dpInvisibleButtons -{ -border-style:none; -background-color:transparent; -padding:0px; -font-size:9px; -border-width:0px; -color:#A51B00; -vertical-align:middle; -cursor: pointer; -text-align: right; -font-weight: bold; -} - - -/* ============================================================================== */ -/* Afficher/cacher */ -/* ============================================================================== */ - -div.visible { - display: block; -} - -div.hidden { - display: none; -} - -tr.visible { - display: block; -} - -td.hidden { - display: none; -} - - -/* ============================================================================== */ -/* Module agenda */ -/* ============================================================================== */ - -table.cal_month { border-spacing: 0px; } -.cal_current_month { border-top: 0; border-left: solid 1px #E0E0E0; border-right: 0; border-bottom: solid 1px #E0E0E0; } -.cal_current_month_peruserleft { border-top: 0; border-left: solid 3px #6C7C7B; border-right: 0; border-bottom: solid 1px #E0E0E0; } -.cal_other_month { border-top: 0; border-left: solid 1px #C0C0C0; border-right: 0; border-bottom: solid 1px #C0C0C0; } -.cal_other_month_peruserleft { border-top: 0; border-left: solid 3px #6C7C7B !important; border-right: 0; } -.cal_current_month_right { border-right: solid 1px #E0E0E0; } -.cal_other_month_right { border-right: solid 1px #C0C0C0; } -.cal_other_month { background: #DDDDDD; padding-: 2px; padding-: 1px; padding-top: 0px; padding-bottom: 0px; } -.cal_past_month { background: #EEEEEE; padding-: 2px; padding-: 1px; padding-top: 0px; padding-bottom: 0px; } -.cal_current_month { background: #FFFFFF; padding-: 2px; padding-: 1px; padding-top: 0px; padding-bottom: 0px; } -.cal_current_month_peruserleft { background: #FFFFFF; border-left: solid 3px #6C7C7B; padding-: 2px; padding-: 1px; padding-top: 0px; padding-bottom: 0px; } -.cal_today { background: #FFFFFF; border: solid 2px #C0C0C0; padding-: 2px; padding-: 1px; padding-top: 0px; padding-bottom: 0px; } -.cal_today_peruser { background: #FFFFFF; border-right: solid 1px #6C7C7B; border-top: solid 1px #A0A0A0; border-bottom: solid 1px #A0A0A0; padding-: 2px; padding-: 1px; padding-top: 0px; padding-bottom: 0px; } -.cal_today_peruser_peruserleft { background: #FFFFFF; border-left: solid 3px #6C7C7B; border-top: solid 1px #A0A0A0; border-right: solid 1px #6C7C7B; border-bottom: solid 1px #A0A0A0; padding-: 2px; padding-: 1px; padding-top: 0px; padding-bottom: 0px; } -table.cal_event { border-collapse: collapse; margin-bottom: 1px; } -table.cal_event td { border: 0px; padding-: 0px; padding-: 2px; padding-top: 0px; padding-bottom: 0px; } -ul.cal_event { padding-right: 2px; padding-top: 1px; border: none; list-style-type: none; margin: 0 auto; padding-left: 0px; padding-start: 0px; -khtml-padding-start: 0px; -o-padding-start: 0px; -webkit-padding-start: 0px; -webkit-padding-start: 0px; } -li.cal_event { border: none; list-style-type: none; } -.cal_event a:link {font-size: 11px; font-weight: bold !important; } -.cal_event a:visited {font-size: 11px; font-weight: bold !important; } -.cal_event a:active {font-size: 11px; font-weight: bold !important; } -.cal_event a:hover {font-size: 11px; font-weight: bold !important; } -.peruser_busy { background: #CC8888; } -.peruser_notbusy { background: #EEDDDD; } - - -/* ============================================================================== */ -/* Ajax - Liste deroulante de l'autocompletion */ -/* ============================================================================== */ - -.ui-autocomplete-loading { background: white url() right center no-repeat; } -.ui-autocomplete { - position:absolute; - width:auto; - font-size: 1.0em; - background-color:white; - border:1px solid #888; - margin:0px; - padding:0px; - } -.ui-autocomplete ul { - list-style-type:none; - margin:0px; - padding:0px; - } -.ui-autocomplete ul li.selected { background-color: #D3E5EC;} -.ui-autocomplete ul li { - list-style-type:none; - display:block; - margin:0; - padding:2px; - height:16px; - cursor:pointer; - } - -/* ============================================================================== */ -/* jQuery - jeditable */ -/* ============================================================================== */ - -.editkey_textarea, .editkey_ckeditor, .editkey_string, .editkey_email, .editkey_numeric, .editkey_select, .editkey_autocomplete { - background: url() right top no-repeat; - cursor: pointer; -} - -.editkey_datepicker { - background: url() right center no-repeat; - cursor: pointer; -} - -.editval_textarea.active:hover, .editval_ckeditor.active:hover, .editval_string.active:hover, .editval_email.active:hover, .editval_numeric.active:hover, .editval_select.active:hover, .editval_autocomplete.active:hover, .editval_datepicker.active:hover { - background: white; - cursor: pointer; -} - -.viewval_textarea.active:hover, .viewval_ckeditor.active:hover, .viewval_string.active:hover, .viewval_email.active:hover, .viewval_numeric.active:hover, .viewval_select.active:hover, .viewval_autocomplete.active:hover, .viewval_datepicker.active:hover { - background: white; - cursor: pointer; -} - -.viewval_hover { - background: white; -} - - -/* ============================================================================== */ -/* Admin Menu */ -/* ============================================================================== */ - -/* CSS for treeview */ -.treeview ul { background-color: transparent !important; margin-top: 0; } -.treeview li { background-color: transparent !important; padding: 0 0 0 16px !important; min-height: 20px; } -.treeview .hover { color: black !important; } - - -/* ============================================================================== */ -/* Show Excel tabs */ -/* ============================================================================== */ - -.table_data -{ - border-style:ridge; - border:1px solid; -} -.tab_base -{ - background:#C5D0DD; - font-weight:bold; - border-style:ridge; - border: 1px solid; - cursor:pointer; -} -.table_sub_heading -{ - background:#CCCCCC; - font-weight:bold; - border-style:ridge; - border: 1px solid; -} -.table_body -{ - background:#F0F0F0; - font-weight:normal; - font-family: ; - border-style:ridge; - border: 1px solid; - border-spacing: 0px; - border-collapse: collapse; -} -.tab_loaded -{ - background:#222222; - color:white; - font-weight:bold; - border-style:groove; - border: 1px solid; - cursor:pointer; -} - - -/* ============================================================================== */ -/* CSS for color picker */ -/* ============================================================================== */ - -A.color, A.color:active, A.color:visited { - position : relative; - display : block; - text-decoration : none; - width : 10px; - height : 10px; - line-height : 10px; - margin : 0px; - padding : 0px; - border : 1px inset white; -} -A.color:hover { - border : 1px outset white; -} -A.none, A.none:active, A.none:visited, A.none:hover { - position : relative; - display : block; - text-decoration : none; - width : 10px; - height : 10px; - line-height : 10px; - margin : 0px; - padding : 0px; - cursor : default; - border : 1px solid #b3c5cc; -} -.tblColor { - display : none; -} -.tdColor { - padding : 1px; -} -.tblContainer { - background-color : #b3c5cc; -} -.tblGlobal { - position : absolute; - top : 0px; - left : 0px; - display : none; - background-color : #b3c5cc; - border : 2px outset; -} -.tdContainer { - padding : 5px; -} -.tdDisplay { - width : 50%; - height : 20px; - line-height : 20px; - border : 1px outset white; -} -.tdDisplayTxt { - width : 50%; - height : 24px; - line-height : 12px; - font-family : ; - font-size : 8pt; - color : black; - text-align : center; -} -.btnColor { - width : 100%; - font-family : ; - font-size : 10pt; - padding : 0px; - margin : 0px; -} -.btnPalette { - width : 100%; - font-family : ; - font-size : 8pt; - padding : 0px; - margin : 0px; -} - - -/* Style to overwrites JQuery styles */ -.ui-menu .ui-menu-item a { - text-decoration:none; - display:block; - padding:.2em .4em; - line-height:1.5; - zoom:1; - font-weight: normal; - font-family:; - font-size:1em; -} -.ui-widget { - font-family:; - font-size:px; -} -.ui-button { margin-left: -1px; padding-top: 1px; } -.ui-button-icon-only .ui-button-text { height: 8px; } -.ui-button-icon-only .ui-button-text, .ui-button-icons-only .ui-button-text { padding: 2px 0px 6px 0px; } -.ui-button-text -{ - line-height: 1em !important; -} -.ui-autocomplete-input { margin: 0; padding: 1px; } - - -/* ============================================================================== */ -/* CKEditor */ -/* ============================================================================== */ - -.cke_editor table, .cke_editor tr, .cke_editor td -{ - border: 0px solid #FF0000 !important; -} -span.cke_skin_kama { padding: 0 !important; } -.cke_wrapper { padding: 4px !important; } - -a.cke_dialog_ui_button -{ - font-family: !important; - background-image: url() !important; - background-position: bottom !important; - border: 1px solid #ACBCBB !important; - -moz-border-radius:0px 5px 0px 5px !important; - -webkit-border-radius:0px 5px 0px 5px !important; - border-radius:0px 5px 0px 5px !important; - -moz-box-shadow: 4px 4px 4px #CCC !important; - -webkit-box-shadow: 4px 4px 4px #CCC !important; - box-shadow: 4px 4px 4px #CCC !important; -} - -/* ============================================================================== */ -/* File upload */ -/* ============================================================================== */ - -.template-upload { - height: 72px !important; -} - - -/* ============================================================================== */ -/* JSGantt */ -/* ============================================================================== */ - -div.scroll2 { - width: px !important; -} - - -/* ============================================================================== */ -/* jFileTree */ -/* ============================================================================== */ - -.ecmfiletree { - width: 99%; - height: 99%; - background: #FFF; - padding-left: 2px; - font-weight: normal; -} - -.fileview { - width: 99%; - height: 99%; - background: #FFF; - padding-left: 2px; - padding-top: 4px; - font-weight: normal; -} - -div.filedirelem { - position: relative; - display: block; - text-decoration: none; -} - -ul.filedirelem { - padding: 2px; - margin: 0 5px 5px 5px; -} -ul.filedirelem li { - list-style: none; - padding: 2px; - margin: 0 10px 20px 10px; - width: 160px; - height: 120px; - text-align: center; - display: block; - float: ; - border: solid 1px #DDDDDD; -} - -ui-layout-north { - -} - -ul.ecmjqft { - font-size: 11px; - line-height: 16px; - padding: 0px; - margin: 0px; - font-weight: normal; -} - -ul.ecmjqft li { - list-style: none; - padding: 0px; - padding-left: 20px; - margin: 0px; - white-space: nowrap; - display: block; -} - -ul.ecmjqft a { - line-height: 16px; - vertical-align: middle; - color: #333; - padding: 0px 0px; - font-weight:normal; - display: inline-block !important; -/* float: left;*/ -} -ul.ecmjqft a:active { - font-weight: bold !important; -} -ul.ecmjqft a:hover { - text-decoration: underline; -} -div.ecmjqft { - vertical-align: middle; - display: inline-block !important; - text-align: right; - position:absolute; - right:8px; -} - -/* Core Styles */ -.ecmjqft LI.directory { font-weight:normal; background: url() left top no-repeat; } -.ecmjqft LI.expanded { font-weight:normal; background: url() left top no-repeat; } -.ecmjqft LI.wait { font-weight:normal; background: url() left top no-repeat; } - - - -/* ============================================================================== */ -/* jNotify */ -/* ============================================================================== */ - -.jnotify-container { - position: fixed !important; -global->MAIN_JQUERY_JNOTIFY_BOTTOM)) { ?> - top: auto !important; - bottom: 4px !important; - - text-align: center; - min-width: px; - width: auto; - padding-left: 10px !important; - padding-right: 10px !important; -} - - -/* ============================================================================== */ -/* Maps */ -/* ============================================================================== */ - -.divmap, #google-visualization-geomap-embed-0, #google-visualization-geomap-embed-1, google-visualization-geomap-embed-2 { - -moz-box-shadow: 0px 0px 10px #AAA; - -webkit-box-shadow: 0px 0px 10px #AAA; - box-shadow: 0px 0px 10px #AAA; -} - - -/* ============================================================================== */ -/* Datatable */ -/* ============================================================================== */ - -.sorting_asc { background: url('') no-repeat center right; } -.sorting_desc { background: url('') no-repeat center right; } -.sorting_asc_disabled { background: url('') no-repeat center right; } -.sorting_desc_disabled { background: url('') no-repeat center right; } -.paginate_disabled_previous:hover, .paginate_enabled_previous:hover, .paginate_disabled_next:hover, .paginate_enabled_next:hover -{ - font-weight: normal; -} -.paginate_enabled_previous:hover, .paginate_enabled_next:hover -{ - text-decoration: underline !important; -} -.ui-state-disabled, .ui-widget-content .ui-state-disabled, .ui-widget-header .ui-state-disabled, .paginate_button_disabled { - opacity: .35; - filter: Alpha(Opacity=35); - background-image: none; -} - - -/* ============================================================================== */ -/* Select2 */ -/* ============================================================================== */ - -.selectoptiondisabledwhite { - background: #FFFFFF !important; -} - -.select2-choice, -.select2-drop.select2-drop-above.select2-drop-active, -.select2-container-active .select2-choice, -.select2-container-active .select2-choices, -.select2-dropdown-open.select2-drop-above .select2-choice, -.select2-dropdown-open.select2-drop-above .select2-choices, -.select2-container-multi.select2-container-active .select2-choices -{ - border: 1px solid #aaa; -} -.select2-disabled -{ - color: #888; -} -.select2-drop-active -{ - border: 1px solid #aaa; - border-top: none; -} -a span.select2-chosen -{ - font-weight: normal !important; -} -.select2-container .select2-choice { - background-image: none; - height: 24px; - line-height: 24px; -} -.select2-choices .select2-search-choice { - border: 1px solid #aaa !important; -} -.select2-results .select2-no-results, .select2-results .select2-searching, .select2-results .select2-ajax-error, .select2-results .select2-selection-limit -{ - background: #FFFFFF; -} -.select2-container-multi.select2-container-disabled .select2-choices { - background-color: #FFFFFF; - background-image: none; - border: none; - cursor: default; -} -.select2-container-multi .select2-choices .select2-search-choice { - margin-bottom: 3px; -} -/* To emulate select 2 style */ -.select2-container-multi-dolibarr .select2-choices-dolibarr .select2-search-choice-dolibarr { - padding: 2px 5px 1px 5px; - margin: 0 0 2px 3px; - position: relative; - line-height: 13px; - color: #333; - cursor: default; - border: 1px solid #aaaaaa; - border-radius: 3px; - -webkit-box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, 0.05); - box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, 0.05); - background-clip: padding-box; - -webkit-touch-callout: none; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - background-color: #e4e4e4; - filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#f4f4f4', GradientType=0); - background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), color-stop(100%, #eee)); - background-image: -webkit-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%); - background-image: -moz-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%); - background-image: linear-gradient(to bottom, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%); -} -.select2-container-multi-dolibarr .select2-choices-dolibarr .select2-search-choice-dolibarr a { - font-weight: normal; -} -.select2-container-multi-dolibarr .select2-choices-dolibarr li { - float: left; - list-style: none; -} -.select2-container-multi-dolibarr .select2-choices-dolibarr { - height: auto !important; - height: 1%; - margin: 0; - padding: 0 5px 0 0; - position: relative; - cursor: text; - overflow: hidden; -} - - -/* ============================================================================== */ -/* JMobile */ -/* ============================================================================== */ - -li.ui-li-divider .ui-link { - color: #FFF !important; -} -.ui-btn { - margin: 0.1em 2px -} -a.ui-link, a.ui-link:hover, .ui-btn:hover, span.ui-btn-text:hover, span.ui-btn-inner:hover { - text-decoration: none !important; -} - -.ui-btn-inner { - min-width: .4em; - padding-left: 10px; - padding-right: 10px; - font-size: px; - /* white-space: normal; */ /* Warning, enable this break the truncate feature */ -} -.ui-select .ui-btn-icon-right .ui-btn-inner { - padding-right: 36px; -} -.ui-select .ui-btn-icon-left .ui-btn-inner { - padding-left: 36px; -} - -.fiche .ui-controlgroup { - margin: 0px; - padding-bottom: 0px; -} -div.ui-controlgroup-controls div.tabsElem -{ - margin-top: 2px; -} -div.ui-controlgroup-controls div.tabsElem a -{ - -moz-box-shadow: 0 -3px 6px rgba(0,0,0,.2); - -webkit-box-shadow: 0 -3px 6px rgba(0,0,0,.2); - box-shadow: 0 -3px 6px rgba(0,0,0,.2); - border: none; -} -a.tab span.ui-btn-inner -{ - border: none; - padding: 0; -} - -.ui-body-c { - border: 1px solid #CCC; - text-shadow: none; -} -.ui-link { - color: rgb() !important; -} - -a.ui-link { - word-wrap: break-word; -} - -/* force wrap possible onto field overflow does not works */ -.formdoc .ui-btn-inner -{ - white-space: normal; - overflow: hidden; - text-overflow: hidden; -} - -/* Warning: setting this may make screen not beeing refreshed after a combo selection */ -.ui-body-c { - background: #fff; -} - -div.ui-radio -{ - display: inline-block; -} -.ui-checkbox input, .ui-radio input { - height: auto; - width: auto; - margin: 4px; - position: static; -} -div.ui-checkbox label+input, div.ui-radio label+input { - position: absolute; -} - -.ui-mobile fieldset -{ - padding-bottom: 10px; margin-bottom: 4px; border-bottom: 1px solid #AAAAAA !important; -} - -ul.ulmenu { - border-radius: 0; - -webkit-border-radius: 0; -} - -.ui-field-contain label.ui-input-text { - vertical-align: middle !important; -} -.ui-mobile fieldset { - border-bottom: none !important; -} - -/* Style for first level menu with jmobile */ -.ui-bar-b, .lilevel0 { - background: rgb(); - background-repeat: repeat-x; - - background-image: -o-linear-gradient(bottom, rgba(0,0,0,0.3) 0%, rgba(250,250,250,0.3) 100%); - background-image: -moz-linear-gradient(bottom, rgba(0,0,0,0.3) 0%, rgba(250,250,250,0.3) 100%); - background-image: -webkit-linear-gradient(bottom, rgba(0,0,0,0.3) 0%, rgba(250,250,250,0.3) 100%); - background-image: -ms-linear-gradient(bottom, rgba(0,0,0,0.3) 0%, rgba(250,250,250,0.3) 100%); - background-image: linear-gradient(bottom, rgba(0,0,0,0.3) 0%, rgba(250,250,250,0.3) 100%); - font-weight: bold; - - color: # !important; -} -.ui-body-c, .ui-btn-up-c, .ui-btn-hover-c { - border: none !important; -} -.alilevel0 { - color: # !important; - text-shadow: 1px 0px 1px #; -} -.alilevel1 { - color: # !important; - text-shadow: 1px 0px 1px #; -} -.lilevel1 { - background-image: -webkit-gradient(linear,left top,left bottom,from( #eee ),to( #e1e1e1 )) !important; - background-image: -webkit-linear-gradient( #eee,#e1e1e1 ) !important; - background-image: -moz-linear-gradient( #eee,#e1e1e1 ) !important; - background-image: -ms-linear-gradient( #eee,#e1e1e1 ) !important; - background-image: -o-linear-gradient( #eee,#e1e1e1 ) !important; - background-image: linear-gradient( #eee,#e1e1e1 ) !important; -} -.lilevel2 -{ - padding-left: 22px; -} -.lilevel3 -{ - padding-left: 54px; -} - - -close(); diff --git a/htdocs/theme/cameleo/thumb.png b/htdocs/theme/cameleo/thumb.png deleted file mode 100644 index 01aa847e347..00000000000 Binary files a/htdocs/theme/cameleo/thumb.png and /dev/null differ diff --git a/htdocs/theme/cameleo/tpl/README b/htdocs/theme/cameleo/tpl/README deleted file mode 100644 index d3bc4b4679f..00000000000 --- a/htdocs/theme/cameleo/tpl/README +++ /dev/null @@ -1,3 +0,0 @@ -README (english) - -This directory is used to store custom templates. (system core and modules) \ No newline at end of file diff --git a/htdocs/theme/cameleo/tpl/index.html b/htdocs/theme/cameleo/tpl/index.html deleted file mode 100644 index e69de29bb2d..00000000000 diff --git a/htdocs/theme/eldy/img/1downarrow.png b/htdocs/theme/eldy/img/1downarrow.png index 1d134ab3e4e..1d8a1164ae0 100644 Binary files a/htdocs/theme/eldy/img/1downarrow.png and b/htdocs/theme/eldy/img/1downarrow.png differ diff --git a/htdocs/theme/eldy/img/1downarrow_selected.png b/htdocs/theme/eldy/img/1downarrow_selected.png index 5caf8ead52d..17934d7c62e 100644 Binary files a/htdocs/theme/eldy/img/1downarrow_selected.png and b/htdocs/theme/eldy/img/1downarrow_selected.png differ diff --git a/htdocs/theme/eldy/img/1uparrow.png b/htdocs/theme/eldy/img/1uparrow.png index 70ea061dc5e..331731b750c 100644 Binary files a/htdocs/theme/eldy/img/1uparrow.png and b/htdocs/theme/eldy/img/1uparrow.png differ diff --git a/htdocs/theme/eldy/img/1uparrow_selected.png b/htdocs/theme/eldy/img/1uparrow_selected.png index 36d25a408c5..d9d8462fe43 100644 Binary files a/htdocs/theme/eldy/img/1uparrow_selected.png and b/htdocs/theme/eldy/img/1uparrow_selected.png differ diff --git a/htdocs/theme/eldy/img/filter.png b/htdocs/theme/eldy/img/filter.png index 917715107bd..ee34a22c78e 100644 Binary files a/htdocs/theme/eldy/img/filter.png and b/htdocs/theme/eldy/img/filter.png differ diff --git a/htdocs/theme/eldy/style.css.php b/htdocs/theme/eldy/style.css.php index 81b01f02aa9..c9294837f14 100644 --- a/htdocs/theme/eldy/style.css.php +++ b/htdocs/theme/eldy/style.css.php @@ -74,108 +74,91 @@ $dol_no_mouse_hover=$conf->dol_no_mouse_hover; $dol_use_jmobile=$conf->dol_use_jmobile; -// Define reference colors -// Example: Light grey: $colred=235;$colgreen=235;$colblue=235; -// Example: Pink: $colred=230;$colgreen=210;$colblue=230; -// Example: Green: $colred=210;$colgreen=230;$colblue=210; -// Example: Ocean: $colred=220;$colgreen=220;$colblue=240; //$conf->global->THEME_ELDY_ENABLE_PERSONALIZED=0; //$user->conf->THEME_ELDY_ENABLE_PERSONALIZED=0; //var_dump($user->conf->THEME_ELDY_RGB); -$colred =empty($user->conf->THEME_ELDY_ENABLE_PERSONALIZED)?(empty($conf->global->THEME_ELDY_RGB)?235:hexdec(substr($conf->global->THEME_ELDY_RGB,0,2))):(empty($user->conf->THEME_ELDY_RGB)?235:hexdec(substr($user->conf->THEME_ELDY_RGB,0,2))); -$colgreen=empty($user->conf->THEME_ELDY_ENABLE_PERSONALIZED)?(empty($conf->global->THEME_ELDY_RGB)?235:hexdec(substr($conf->global->THEME_ELDY_RGB,2,2))):(empty($user->conf->THEME_ELDY_RGB)?235:hexdec(substr($user->conf->THEME_ELDY_RGB,2,2))); -$colblue =empty($user->conf->THEME_ELDY_ENABLE_PERSONALIZED)?(empty($conf->global->THEME_ELDY_RGB)?235:hexdec(substr($conf->global->THEME_ELDY_RGB,4,2))):(empty($user->conf->THEME_ELDY_RGB)?235:hexdec(substr($user->conf->THEME_ELDY_RGB,4,2))); // Colors -$isred=max(0,(2*$colred-$colgreen-$colblue)/2); // 0 - 255 -$isgreen=max(0,(2*$colgreen-$colred-$colblue)/2); // 0 - 255 -$isblue=max(0,(2*$colblue-$colred-$colgreen)/2); // 0 - 255 -$colorbackhmenu1=($colred-3).','.($colgreen-3).','.($colblue-3); // topmenu -$colorbackhmenu2=($colred+5).','.($colgreen+5).','.($colblue+5); -$colorbackvmenu1=($colred+15).','.($colgreen+16).','.($colblue+17); // vmenu -$colorbackvmenu2=($colred-15).','.($colgreen-15).','.($colblue-15); -$colorbacktitle1=($colred-5).','.($colgreen-5).','.($colblue-5); // title of array -$colorbacktitle2=($colred-15).','.($colgreen-15).','.($colblue-15); +$colorbackhmenu1='140,150,180'; // topmenu +$colorbackvmenu1='255,255,255'; // vmenu +$colorbacktitle1='230,230,230'; // title of array $colorbacktabcard1='255,255,255'; // card -$colorbacktabcard2=($colred-15).','.($colgreen-15).','.($colblue-15); -$colorbacktabactive=($colred-15).','.($colgreen-15).','.($colblue-15); +$colorbacktabactive='234,234,234'; $colorbacklineimpair1='255,255,255'; // line impair $colorbacklineimpair2='255,255,255'; // line impair -$colorbacklineimpairhover=(230+round(($isred+$isgreen+$isblue)/9)).','.(230+round(($isred+$isgreen+$isblue)/9)).','.(230+round(($isred+$isgreen+$isblue)/9)); // line impair -$colorbacklinepair1=(244+round($isred/3)).','.(244+round($isgreen/3)).','.(244+round($isblue/3)); // line pair -$colorbacklinepair2=(250+round($isred/3)).','.(250+round($isgreen/3)).','.(250+round($isblue/3)); // line pair -$colorbacklinepairhover=(230+round(($isred+$isgreen+$isblue)/9)).','.(230+round(($isred+$isgreen+$isblue)/9)).','.(230+round(($isred+$isgreen+$isblue)/9)); // line pair +$colorbacklinepair1='250,250,250'; // line pair +$colorbacklinepair2='248,248,248'; // line pair +$colorbacklinepairhover='238,246,252'; // line pair $colorbackbody='255,255,255'; $colortext='40,40,40'; -$fontsize='13'; +$fontsize='12'; $fontsizesmaller='11'; $usegradient=1; -// Eldy colors + +// Case of option always editable +if (! isset($conf->global->THEME_ELDY_TOPMENU_BACK1)) $conf->global->THEME_ELDY_TOPMENU_BACK1='140,150,180'; // topmenu (140,160,185) +//if (! isset($conf->global->THEME_ELDY_BACKTITLE1)) $conf->global->THEME_ELDY_BACKTITLE1='140,150,180'; // title of arrays TO MATCH ELDY (140,160,185) +if (! isset($conf->global->THEME_ELDY_BACKTITLE1)) $conf->global->THEME_ELDY_BACKTITLE1='230,230,230'; // title of arrays TO MATCH BOOTSTRAP +//if (! isset($conf->global->THEME_ELDY_USE_HOVER)) $conf->global->THEME_ELDY_USE_HOVER=''; // color for links + +// Fields not yet editable by default if (empty($conf->global->THEME_ELDY_ENABLE_PERSONALIZED)) { - // Case of option always editable - if (! isset($conf->global->THEME_ELDY_TOPMENU_BACK1)) $conf->global->THEME_ELDY_TOPMENU_BACK1='140,150,180'; // topmenu (140,160,185) - if (! isset($conf->global->THEME_ELDY_BACKTITLE1)) $conf->global->THEME_ELDY_BACKTITLE1='140,150,180'; // title of arrays TO MATCH ELDY (140,160,185) - //if (! isset($conf->global->THEME_ELDY_BACKTITLE1)) $conf->global->THEME_ELDY_BACKTITLE1='230,230,230'; // title of arrays TO MATCH BOOTSTRAP - // Cas of option editable if option THEME_ELDY_ENABLE_PERSONALIZED is on - $conf->global->THEME_ELDY_TOPMENU_BACK2='236,236,236'; $conf->global->THEME_ELDY_VERMENU_BACK1='255,255,255'; // vmenu - $conf->global->THEME_ELDY_VERMENU_BACK2='255,255,255'; - $conf->global->THEME_ELDY_BACKTITLE2='230,230,230'; - $conf->global->THEME_ELDY_BACKTABCARD1='255,255,255'; - $conf->global->THEME_ELDY_BACKTABCARD2='210,210,210'; // card + $conf->global->THEME_ELDY_BACKTABCARD1='255,255,255'; // card $conf->global->THEME_ELDY_BACKTABACTIVE='234,234,234'; - $conf->global->THEME_ELDY_BACKBODY='255,255,255'; $conf->global->THEME_ELDY_LINEIMPAIR1='255,255,255'; $conf->global->THEME_ELDY_LINEIMPAIR2='255,255,255'; - $conf->global->THEME_ELDY_LINEIMPAIRHOVER='238,246,252'; - $conf->global->THEME_ELDY_LINEPAIR1='242,242,242'; + $conf->global->THEME_ELDY_LINEPAIR1='250,250,250'; $conf->global->THEME_ELDY_LINEPAIR2='248,248,248'; $conf->global->THEME_ELDY_LINEPAIRHOVER='238,246,252'; - $conf->global->THEME_ELDY_TEXT='50,50,130'; // color for links + $conf->global->THEME_ELDY_USE_HOVER=='238,246,252'; + $conf->global->THEME_ELDY_BACKBODY='255,255,255'; + $conf->global->THEME_ELDY_FONT_SIZE1='12'; $conf->global->THEME_ELDY_FONT_SIZE2='11'; } +//var_dump($conf->global->THEME_ELDY_BACKBODY); +//var_dump($user->conf->THEME_ELDY_BACKTITLE1); -// Cas of option availables only if THEME_ELDY_ENABLE_PERSONALIZED is on -$colorbackhmenu1=empty($user->conf->THEME_ELDY_ENABLE_PERSONALIZED)?(empty($conf->global->THEME_ELDY_TOPMENU_BACK1)?$colorbackhmenu1:$conf->global->THEME_ELDY_TOPMENU_BACK1) :(empty($user->conf->THEME_ELDY_TOPMENU_BACK1)?$colorbackhmenu1:$user->conf->THEME_ELDY_TOPMENU_BACK1); -$colorbackhmenu2 =empty($user->conf->THEME_ELDY_ENABLE_PERSONALIZED)?(empty($conf->global->THEME_ELDY_TOPMENU_BACK2)?$colorbackhmenu2:$conf->global->THEME_ELDY_TOPMENU_BACK2) :(empty($user->conf->THEME_ELDY_TOPMENU_BACK2)?$colorbackhmenu2:$user->conf->THEME_ELDY_TOPMENU_BACK2); +// Case of option availables only if THEME_ELDY_ENABLE_PERSONALIZED is on +$colorbackhmenu1 =empty($user->conf->THEME_ELDY_ENABLE_PERSONALIZED)?(empty($conf->global->THEME_ELDY_TOPMENU_BACK1)?$colorbackhmenu1:$conf->global->THEME_ELDY_TOPMENU_BACK1) :(empty($user->conf->THEME_ELDY_TOPMENU_BACK1)?$colorbackhmenu1:$user->conf->THEME_ELDY_TOPMENU_BACK1); $colorbackvmenu1 =empty($user->conf->THEME_ELDY_ENABLE_PERSONALIZED)?(empty($conf->global->THEME_ELDY_VERMENU_BACK1)?$colorbackvmenu1:$conf->global->THEME_ELDY_VERMENU_BACK1) :(empty($user->conf->THEME_ELDY_VERMENU_BACK1)?$colorbackvmenu1:$user->conf->THEME_ELDY_VERMENU_BACK1); -$colorbackvmenu2 =empty($user->conf->THEME_ELDY_ENABLE_PERSONALIZED)?(empty($conf->global->THEME_ELDY_VERMENU_BACK2)?$colorbackvmenu2:$conf->global->THEME_ELDY_VERMENU_BACK2) :(empty($user->conf->THEME_ELDY_VERMENU_BACK2)?$colorbackvmenu2:$user->conf->THEME_ELDY_VERMENU_BACK2); $colorbacktitle1 =empty($user->conf->THEME_ELDY_ENABLE_PERSONALIZED)?(empty($conf->global->THEME_ELDY_BACKTITLE1) ?$colorbacktitle1:$conf->global->THEME_ELDY_BACKTITLE1) :(empty($user->conf->THEME_ELDY_BACKTITLE1)?$colorbacktitle1:$user->conf->THEME_ELDY_BACKTITLE1); -$colorbacktitle2 =empty($user->conf->THEME_ELDY_ENABLE_PERSONALIZED)?(empty($conf->global->THEME_ELDY_BACKTITLE2) ?$colorbacktitle2:$conf->global->THEME_ELDY_BACKTITLE2) :(empty($user->conf->THEME_ELDY_BACKTITLE2)?$colorbacktitle2:$user->conf->THEME_ELDY_BACKTITLE2); $colorbacktabcard1 =empty($user->conf->THEME_ELDY_ENABLE_PERSONALIZED)?(empty($conf->global->THEME_ELDY_BACKTABCARD1) ?$colorbacktabcard1:$conf->global->THEME_ELDY_BACKTABCARD1) :(empty($user->conf->THEME_ELDY_BACKTABCARD1)?$colorbacktabcard1:$user->conf->THEME_ELDY_BACKTABCARD1); -$colorbacktabcard2 =empty($user->conf->THEME_ELDY_ENABLE_PERSONALIZED)?(empty($conf->global->THEME_ELDY_BACKTABCARD2) ?$colorbacktabcard2:$conf->global->THEME_ELDY_BACKTABCARD2) :(empty($user->conf->THEME_ELDY_BACKTABCARD2)?$colorbacktabcard2:$user->conf->THEME_ELDY_BACKTABCARD2); $colorbacktabactive =empty($user->conf->THEME_ELDY_ENABLE_PERSONALIZED)?(empty($conf->global->THEME_ELDY_BACKTABACTIVE)?$colorbacktabactive:$conf->global->THEME_ELDY_BACKTABACTIVE):(empty($user->conf->THEME_ELDY_BACKTABACTIVE)?$colorbacktabactive:$user->conf->THEME_ELDY_BACKTABACTIVE); $colorbacklineimpair1=empty($user->conf->THEME_ELDY_ENABLE_PERSONALIZED)?(empty($conf->global->THEME_ELDY_LINEIMPAIR1) ?$colorbacklineimpair1:$conf->global->THEME_ELDY_LINEIMPAIR1):(empty($user->conf->THEME_ELDY_LINEIMPAIR1)?$colorbacklineimpair1:$user->conf->THEME_ELDY_LINEIMPAIR1); $colorbacklineimpair2=empty($user->conf->THEME_ELDY_ENABLE_PERSONALIZED)?(empty($conf->global->THEME_ELDY_LINEIMPAIR2) ?$colorbacklineimpair2:$conf->global->THEME_ELDY_LINEIMPAIR2):(empty($user->conf->THEME_ELDY_LINEIMPAIR2)?$colorbacklineimpair2:$user->conf->THEME_ELDY_LINEIMPAIR2); -$colorbacklineimpairhover=empty($user->conf->THEME_ELDY_ENABLE_PERSONALIZED)?(empty($conf->global->THEME_ELDY_LINEIMPAIRHOVER) ?$colorbacklineimpairhover:$conf->global->THEME_ELDY_LINEIMPAIRHOVER):(empty($user->conf->THEME_ELDY_LINEIMPAIRHOVER)?$colorbacklineimpairhover:$user->conf->THEME_ELDY_LINEIMPAIRHOVER); $colorbacklinepair1 =empty($user->conf->THEME_ELDY_ENABLE_PERSONALIZED)?(empty($conf->global->THEME_ELDY_LINEPAIR1) ?$colorbacklinepair1:$conf->global->THEME_ELDY_LINEPAIR1) :(empty($user->conf->THEME_ELDY_LINEPAIR1)?$colorbacklinepair1:$user->conf->THEME_ELDY_LINEPAIR1); $colorbacklinepair2 =empty($user->conf->THEME_ELDY_ENABLE_PERSONALIZED)?(empty($conf->global->THEME_ELDY_LINEPAIR2) ?$colorbacklinepair2:$conf->global->THEME_ELDY_LINEPAIR2) :(empty($user->conf->THEME_ELDY_LINEPAIR2)?$colorbacklinepair2:$user->conf->THEME_ELDY_LINEPAIR2); -$colorbacklinepairhover =empty($user->conf->THEME_ELDY_ENABLE_PERSONALIZED)?(empty($conf->global->THEME_ELDY_LINEPAIRHOVER) ?$colorbacklinepairhover:$conf->global->THEME_ELDY_LINEPAIRHOVER) :(empty($user->conf->THEME_ELDY_LINEPAIRHOVER)?$colorbacklinepairhover:$user->conf->THEME_ELDY_LINEPAIRHOVER); +$colorbacklinepairhover=empty($user->conf->THEME_ELDY_ENABLE_PERSONALIZED)?(empty($conf->global->THEME_ELDY_LINEPAIRHOVER) ?$colorbacklinepairhover:$conf->global->THEME_ELDY_LINEPAIRHOVER) :(empty($user->conf->THEME_ELDY_LINEPAIRHOVER)?$colorbacklinepairhover:$user->conf->THEME_ELDY_LINEPAIRHOVER); $colorbackbody =empty($user->conf->THEME_ELDY_ENABLE_PERSONALIZED)?(empty($conf->global->THEME_ELDY_BACKBODY) ?$colorbackbody:$conf->global->THEME_ELDY_BACKBODY) :(empty($user->conf->THEME_ELDY_BACKBODY)?$colorbackbody:$user->conf->THEME_ELDY_BACKBODY); $colortext =empty($user->conf->THEME_ELDY_ENABLE_PERSONALIZED)?(empty($conf->global->THEME_ELDY_TEXT) ?$colortext:$conf->global->THEME_ELDY_TEXT) :(empty($user->conf->THEME_ELDY_TEXT)?$colortext:$user->conf->THEME_ELDY_TEXT); $fontsize =empty($user->conf->THEME_ELDY_ENABLE_PERSONALIZED)?(empty($conf->global->THEME_ELDY_FONT_SIZE1) ?$fontsize:$conf->global->THEME_ELDY_FONT_SIZE1) :(empty($user->conf->THEME_ELDY_FONT_SIZE1)?$fontsize:$user->conf->THEME_ELDY_FONT_SIZE1); $fontsizesmaller =empty($user->conf->THEME_ELDY_ENABLE_PERSONALIZED)?(empty($conf->global->THEME_ELDY_FONT_SIZE2) ?$fontsize:$conf->global->THEME_ELDY_FONT_SIZE2) :(empty($user->conf->THEME_ELDY_FONT_SIZE2)?$fontsize:$user->conf->THEME_ELDY_FONT_SIZE2); -// Hover can be disabled with THEME_ELDY_USE_HOVER=0 -if ((! empty($user->conf->THEME_ELDY_ENABLE_PERSONALIZED) && (isset($user->conf->THEME_ELDY_USE_HOVER) && $user->conf->THEME_ELDY_USE_HOVER == '0')) - || (empty($user->conf->THEME_ELDY_ENABLE_PERSONALIZED) && (isset($conf->global->THEME_ELDY_USE_HOVER) && $conf->global->THEME_ELDY_USE_HOVER == '0'))) +// Hover color +$colorbacklinepairhover=((! isset($conf->global->THEME_ELDY_USE_HOVER) || (string) $conf->global->THEME_ELDY_USE_HOVER === '0')?'':($conf->global->THEME_ELDY_USE_HOVER === '1'?'edf4fb':$conf->global->THEME_ELDY_USE_HOVER)); +if (! empty($user->conf->THEME_ELDY_ENABLE_PERSONALIZED)) { - $colorbacklineimpairhover=''; - $colorbacklinepairhover=''; + $colorbacklinepairhover=((! isset($user->conf->THEME_ELDY_USE_HOVER) || $user->conf->THEME_ELDY_USE_HOVER === '0')?'':($user->conf->THEME_ELDY_USE_HOVER === '1'?'edf4fb':$user->conf->THEME_ELDY_USE_HOVER)); } // Format color value to match expected format (may be 'FFFFFF' or '255,255,255') -$colorbackbody=join(',',colorStringToArray($colorbackbody)); $colorbackhmenu1=join(',',colorStringToArray($colorbackhmenu1)); -$colorbackhmenu2=join(',',colorStringToArray($colorbackhmenu2)); $colorbackvmenu1=join(',',colorStringToArray($colorbackvmenu1)); -$colorbackvmenu2=join(',',colorStringToArray($colorbackvmenu2)); +$colorbacktitle1=join(',',colorStringToArray($colorbacktitle1)); $colorbacktabcard1=join(',',colorStringToArray($colorbacktabcard1)); -$colorbacktabcard2=join(',',colorStringToArray($colorbacktabcard2)); +$colorbacktabactive=join(',',colorStringToArray($colorbacktabactive)); +$colorbacklineimpair1=join(',',colorStringToArray($colorbacklineimpair1)); +$colorbacklineimpair2=join(',',colorStringToArray($colorbacklineimpair2)); +$colorbacklinepair1=join(',',colorStringToArray($colorbacklinepair1)); +$colorbacklinepair2=join(',',colorStringToArray($colorbacklinepair2)); +if ($colorbacklinepairhover != '') $colorbacklinepairhover=join(',',colorStringToArray($colorbacklinepairhover)); +$colorbackbody=join(',',colorStringToArray($colorbackbody)); +$colortext=join(',',colorStringToArray($colorbackvmenu1)); // Set text color to black or white $tmppart=explode(',',$colorbackhmenu1); @@ -196,15 +179,12 @@ if ($tmpval <= 340) { $colortextbacktab='FFF'; } else { $colortextbacktab='111'; } print '/*'."\n"; -print 'colred='.$colred.' colgreen='.$colgreen.' colblue='.$colblue."\n"; -print 'isred='.$isred.' isgreen='.$isgreen.' isblue='.$isblue."\n"; print 'colorbackbody='.$colorbackbody."\n"; print 'colorbackvmenu1='.$colorbackvmenu1."\n"; print 'colorbackhmenu1='.$colorbackhmenu1."\n"; print 'colorbacktitle1='.$colorbacktitle1."\n"; print 'colorbacklineimpair1='.$colorbacklineimpair1."\n"; print 'colorbacklineimpair2='.$colorbacklineimpair2."\n"; -print 'colorbacklineimpairhover='.$colorbacklineimpairhover."\n"; print 'colorbacklinepair1='.$colorbacklinepair1."\n"; print 'colorbacklinepair2='.$colorbacklinepair2."\n"; print 'colorbacklinepairhover='.$colorbacklinepairhover."\n"; @@ -1180,7 +1160,7 @@ div.blockvmenusearch padding-top: 3px; padding-bottom: 3px; margin: 1px 0px 8px 2px; - background: rgb(); + background: rgb(); border-left: 1px solid #AAA; border-right: 1px solid #BBB; @@ -1959,17 +1939,21 @@ table.noborder, table.formdoc, div.noborder { border-spacing: 0px; border-top-width: 1px; - border-top-color: #CCC; + border-top-color: #BBB; border-top-style: solid; border-right-width: 1px; - border-right-color: #CCC; + border-right-color: #BBB; border-right-style: solid; border-left-width: 1px; - border-left-color: #CCC; + border-left-color: #BBB; border-left-style: solid; + border-bottom-width: 1px; + border-bottom-color: #BBB; + border-bottom-style: solid; + margin: 0px 0px 2px 0px; -moz-box-shadow: 2px 2px 4px #CCC; @@ -2203,6 +2187,9 @@ div.pagination li.pagination .active { div.pagination li.paginationafterarrows { margin-left: 10px; } +.paginationatbottom { + margin-top: 9px; +} /* Prepare to remove class pair - impair .noborder > tbody > tr:nth-child(even) td { @@ -2237,7 +2224,7 @@ div.pagination li.paginationafterarrows { background: rgb() !important; - background: rgba(0, 0, 0, 0.05) !important; + /* background: rgba(0, 0, 0, 0.05) !important; */ } @@ -2325,11 +2312,11 @@ div.liste_titre, tr.liste_titre, tr.liste_titre_sel, form.liste_titre, form.list /* TO MATCH ELDY */ background: rgb(); - background-image: -o-linear-gradient(bottom, rgba(0,0,0,0.3) 0%, rgba(250,250,250,0.3) 100%); - background-image: -moz-linear-gradient(bottom, rgba(0,0,0,0.3) 0%, rgba(250,250,250,0.3) 100%); - background-image: -webkit-linear-gradient(bottom, rgba(0,0,0,0.3) 0%, rgba(250,250,250,0.3) 100%); - background-image: -ms-linear-gradient(bottom, rgba(0,0,0,0.3) 0%, rgba(250,250,250,0.3) 100%); - background-image: linear-gradient(bottom, rgba(0,0,0,0.3) 0%, rgba(250,250,250,0.3) 100%); + background-image: -o-linear-gradient(bottom, rgba(0,0,0,0.1) 0%, rgba(250,250,250,0.3) 100%); + background-image: -moz-linear-gradient(bottom, rgba(0,0,0,0.1) 0%, rgba(250,250,250,0.3) 100%); + background-image: -webkit-linear-gradient(bottom, rgba(0,0,0,0.1) 0%, rgba(250,250,250,0.3) 100%); + background-image: -ms-linear-gradient(bottom, rgba(0,0,0,0.1) 0%, rgba(250,250,250,0.3) 100%); + background-image: linear-gradient(bottom, rgba(0,0,0,0.1) 0%, rgba(250,250,250,0.3) 100%); font-weight: bold; @@ -2448,11 +2435,11 @@ tr.box_titre { /* TO MATCH ELDY */ background: rgb(); - background-image: -o-linear-gradient(bottom, rgba(0,0,0,0.3) 0%, rgba(250,250,250,0.3) 100%); - background-image: -moz-linear-gradient(bottom, rgba(0,0,0,0.3) 0%, rgba(250,250,250,0.3) 100%); - background-image: -webkit-linear-gradient(bottom, rgba(0,0,0,0.3) 0%, rgba(250,250,250,0.3) 100%); - background-image: -ms-linear-gradient(bottom, rgba(0,0,0,0.3) 0%, rgba(250,250,250,0.3) 100%); - background-image: linear-gradient(bottom, rgba(0,0,0,0.3) 0%, rgba(250,250,250,0.3) 100%); + background-image: -o-linear-gradient(bottom, rgba(0,0,0,0.1) 0%, rgba(250,250,250,0.3) 100%); + background-image: -moz-linear-gradient(bottom, rgba(0,0,0,0.1) 0%, rgba(250,250,250,0.3) 100%); + background-image: -webkit-linear-gradient(bottom, rgba(0,0,0,0.1) 0%, rgba(250,250,250,0.3) 100%); + background-image: -ms-linear-gradient(bottom, rgba(0,0,0,0.1) 0%, rgba(250,250,250,0.3) 100%); + background-image: linear-gradient(bottom, rgba(0,0,0,0.1) 0%, rgba(250,250,250,0.3) 100%); color: #; diff --git a/htdocs/theme/md_exp/.gitignore b/htdocs/theme/md/.gitignore similarity index 100% rename from htdocs/theme/md_exp/.gitignore rename to htdocs/theme/md/.gitignore diff --git a/htdocs/theme/auguria/AUTHOR b/htdocs/theme/md/AUTHOR similarity index 100% rename from htdocs/theme/auguria/AUTHOR rename to htdocs/theme/md/AUTHOR diff --git a/htdocs/theme/md_exp/ckeditor/config.js b/htdocs/theme/md/ckeditor/config.js similarity index 100% rename from htdocs/theme/md_exp/ckeditor/config.js rename to htdocs/theme/md/ckeditor/config.js diff --git a/htdocs/theme/amarok/ckeditor/index.html b/htdocs/theme/md/ckeditor/index.html similarity index 100% rename from htdocs/theme/amarok/ckeditor/index.html rename to htdocs/theme/md/ckeditor/index.html diff --git a/htdocs/theme/md_exp/graph-color.php b/htdocs/theme/md/graph-color.php similarity index 100% rename from htdocs/theme/md_exp/graph-color.php rename to htdocs/theme/md/graph-color.php diff --git a/htdocs/theme/md/img/1downarrow.png b/htdocs/theme/md/img/1downarrow.png new file mode 100644 index 00000000000..1d8a1164ae0 Binary files /dev/null and b/htdocs/theme/md/img/1downarrow.png differ diff --git a/htdocs/theme/md/img/1downarrow_selected.png b/htdocs/theme/md/img/1downarrow_selected.png new file mode 100644 index 00000000000..17934d7c62e Binary files /dev/null and b/htdocs/theme/md/img/1downarrow_selected.png differ diff --git a/htdocs/theme/cameleo/img/1leftarrow.png b/htdocs/theme/md/img/1leftarrow.png similarity index 100% rename from htdocs/theme/cameleo/img/1leftarrow.png rename to htdocs/theme/md/img/1leftarrow.png diff --git a/htdocs/theme/cameleo/img/1leftarrow_selected.png b/htdocs/theme/md/img/1leftarrow_selected.png similarity index 100% rename from htdocs/theme/cameleo/img/1leftarrow_selected.png rename to htdocs/theme/md/img/1leftarrow_selected.png diff --git a/htdocs/theme/cameleo/img/1rightarrow.png b/htdocs/theme/md/img/1rightarrow.png similarity index 100% rename from htdocs/theme/cameleo/img/1rightarrow.png rename to htdocs/theme/md/img/1rightarrow.png diff --git a/htdocs/theme/cameleo/img/1rightarrow_selected.png b/htdocs/theme/md/img/1rightarrow_selected.png similarity index 100% rename from htdocs/theme/cameleo/img/1rightarrow_selected.png rename to htdocs/theme/md/img/1rightarrow_selected.png diff --git a/htdocs/theme/md/img/1uparrow.png b/htdocs/theme/md/img/1uparrow.png new file mode 100644 index 00000000000..331731b750c Binary files /dev/null and b/htdocs/theme/md/img/1uparrow.png differ diff --git a/htdocs/theme/md/img/1uparrow_selected.png b/htdocs/theme/md/img/1uparrow_selected.png new file mode 100644 index 00000000000..d9d8462fe43 Binary files /dev/null and b/htdocs/theme/md/img/1uparrow_selected.png differ diff --git a/htdocs/theme/auguria/img/1updownarrow.png b/htdocs/theme/md/img/1updownarrow.png similarity index 100% rename from htdocs/theme/auguria/img/1updownarrow.png rename to htdocs/theme/md/img/1updownarrow.png diff --git a/htdocs/theme/auguria/img/addfile.png b/htdocs/theme/md/img/addfile.png similarity index 100% rename from htdocs/theme/auguria/img/addfile.png rename to htdocs/theme/md/img/addfile.png diff --git a/htdocs/theme/md_exp/img/background.png b/htdocs/theme/md/img/background.png similarity index 100% rename from htdocs/theme/md_exp/img/background.png rename to htdocs/theme/md/img/background.png diff --git a/htdocs/theme/md_exp/img/bg-bas-rubrique.png b/htdocs/theme/md/img/bg-bas-rubrique.png similarity index 100% rename from htdocs/theme/md_exp/img/bg-bas-rubrique.png rename to htdocs/theme/md/img/bg-bas-rubrique.png diff --git a/htdocs/theme/md_exp/img/bg-rubrique.png b/htdocs/theme/md/img/bg-rubrique.png similarity index 100% rename from htdocs/theme/md_exp/img/bg-rubrique.png rename to htdocs/theme/md/img/bg-rubrique.png diff --git a/htdocs/theme/md_exp/img/bg-titre-rubrique.png b/htdocs/theme/md/img/bg-titre-rubrique.png similarity index 100% rename from htdocs/theme/md_exp/img/bg-titre-rubrique.png rename to htdocs/theme/md/img/bg-titre-rubrique.png diff --git a/htdocs/theme/auguria/img/button_bg.png b/htdocs/theme/md/img/button_bg.png similarity index 100% rename from htdocs/theme/auguria/img/button_bg.png rename to htdocs/theme/md/img/button_bg.png diff --git a/htdocs/theme/auguria/img/button_edit.png b/htdocs/theme/md/img/button_edit.png similarity index 100% rename from htdocs/theme/auguria/img/button_edit.png rename to htdocs/theme/md/img/button_edit.png diff --git a/htdocs/theme/auguria/img/calc.png b/htdocs/theme/md/img/calc.png similarity index 100% rename from htdocs/theme/auguria/img/calc.png rename to htdocs/theme/md/img/calc.png diff --git a/htdocs/theme/auguria/img/calendar.png b/htdocs/theme/md/img/calendar.png similarity index 100% rename from htdocs/theme/auguria/img/calendar.png rename to htdocs/theme/md/img/calendar.png diff --git a/htdocs/theme/auguria/img/call.png b/htdocs/theme/md/img/call.png similarity index 100% rename from htdocs/theme/auguria/img/call.png rename to htdocs/theme/md/img/call.png diff --git a/htdocs/theme/auguria/img/call_out.png b/htdocs/theme/md/img/call_out.png similarity index 100% rename from htdocs/theme/auguria/img/call_out.png rename to htdocs/theme/md/img/call_out.png diff --git a/htdocs/theme/auguria/img/close.png b/htdocs/theme/md/img/close.png similarity index 100% rename from htdocs/theme/auguria/img/close.png rename to htdocs/theme/md/img/close.png diff --git a/htdocs/theme/auguria/img/close_title.png b/htdocs/theme/md/img/close_title.png similarity index 100% rename from htdocs/theme/auguria/img/close_title.png rename to htdocs/theme/md/img/close_title.png diff --git a/htdocs/theme/auguria/img/delete.png b/htdocs/theme/md/img/delete.png similarity index 100% rename from htdocs/theme/auguria/img/delete.png rename to htdocs/theme/md/img/delete.png diff --git a/htdocs/theme/auguria/img/detail.png b/htdocs/theme/md/img/detail.png similarity index 100% rename from htdocs/theme/auguria/img/detail.png rename to htdocs/theme/md/img/detail.png diff --git a/htdocs/theme/auguria/img/disable.png b/htdocs/theme/md/img/disable.png similarity index 100% rename from htdocs/theme/auguria/img/disable.png rename to htdocs/theme/md/img/disable.png diff --git a/htdocs/theme/auguria/img/edit.png b/htdocs/theme/md/img/edit.png similarity index 100% rename from htdocs/theme/auguria/img/edit.png rename to htdocs/theme/md/img/edit.png diff --git a/htdocs/theme/auguria/img/edit_add.png b/htdocs/theme/md/img/edit_add.png similarity index 100% rename from htdocs/theme/auguria/img/edit_add.png rename to htdocs/theme/md/img/edit_add.png diff --git a/htdocs/theme/auguria/img/edit_remove.png b/htdocs/theme/md/img/edit_remove.png similarity index 100% rename from htdocs/theme/auguria/img/edit_remove.png rename to htdocs/theme/md/img/edit_remove.png diff --git a/htdocs/theme/auguria/img/editdelete.png b/htdocs/theme/md/img/editdelete.png similarity index 100% rename from htdocs/theme/auguria/img/editdelete.png rename to htdocs/theme/md/img/editdelete.png diff --git a/htdocs/theme/auguria/img/error.png b/htdocs/theme/md/img/error.png similarity index 100% rename from htdocs/theme/auguria/img/error.png rename to htdocs/theme/md/img/error.png diff --git a/htdocs/theme/amarok/img/favicon.ico b/htdocs/theme/md/img/favicon.ico similarity index 100% rename from htdocs/theme/amarok/img/favicon.ico rename to htdocs/theme/md/img/favicon.ico diff --git a/htdocs/theme/auguria/img/file.png b/htdocs/theme/md/img/file.png similarity index 100% rename from htdocs/theme/auguria/img/file.png rename to htdocs/theme/md/img/file.png diff --git a/htdocs/theme/auguria/img/filenew.png b/htdocs/theme/md/img/filenew.png similarity index 100% rename from htdocs/theme/auguria/img/filenew.png rename to htdocs/theme/md/img/filenew.png diff --git a/htdocs/theme/auguria/img/filter.png b/htdocs/theme/md/img/filter.png similarity index 100% rename from htdocs/theme/auguria/img/filter.png rename to htdocs/theme/md/img/filter.png diff --git a/htdocs/theme/auguria/img/folder-open.png b/htdocs/theme/md/img/folder-open.png similarity index 100% rename from htdocs/theme/auguria/img/folder-open.png rename to htdocs/theme/md/img/folder-open.png diff --git a/htdocs/theme/auguria/img/folder.png b/htdocs/theme/md/img/folder.png similarity index 100% rename from htdocs/theme/auguria/img/folder.png rename to htdocs/theme/md/img/folder.png diff --git a/htdocs/theme/auguria/img/gradient.gif b/htdocs/theme/md/img/gradient.gif similarity index 100% rename from htdocs/theme/auguria/img/gradient.gif rename to htdocs/theme/md/img/gradient.gif diff --git a/htdocs/theme/amarok/img/grip.png b/htdocs/theme/md/img/grip.png similarity index 100% rename from htdocs/theme/amarok/img/grip.png rename to htdocs/theme/md/img/grip.png diff --git a/htdocs/theme/auguria/img/grip_title.png b/htdocs/theme/md/img/grip_title.png similarity index 100% rename from htdocs/theme/auguria/img/grip_title.png rename to htdocs/theme/md/img/grip_title.png diff --git a/htdocs/theme/auguria/img/headbg.jpg b/htdocs/theme/md/img/headbg.jpg similarity index 100% rename from htdocs/theme/auguria/img/headbg.jpg rename to htdocs/theme/md/img/headbg.jpg diff --git a/htdocs/theme/auguria/img/headbg2.jpg b/htdocs/theme/md/img/headbg2.jpg similarity index 100% rename from htdocs/theme/auguria/img/headbg2.jpg rename to htdocs/theme/md/img/headbg2.jpg diff --git a/htdocs/theme/auguria/img/help.png b/htdocs/theme/md/img/help.png similarity index 100% rename from htdocs/theme/auguria/img/help.png rename to htdocs/theme/md/img/help.png diff --git a/htdocs/theme/auguria/img/helpdoc.png b/htdocs/theme/md/img/helpdoc.png similarity index 100% rename from htdocs/theme/auguria/img/helpdoc.png rename to htdocs/theme/md/img/helpdoc.png diff --git a/htdocs/theme/auguria/img/high.png b/htdocs/theme/md/img/high.png similarity index 100% rename from htdocs/theme/auguria/img/high.png rename to htdocs/theme/md/img/high.png diff --git a/htdocs/theme/auguria/img/history.png b/htdocs/theme/md/img/history.png similarity index 100% rename from htdocs/theme/auguria/img/history.png rename to htdocs/theme/md/img/history.png diff --git a/htdocs/theme/amarok/img/index.html b/htdocs/theme/md/img/index.html similarity index 100% rename from htdocs/theme/amarok/img/index.html rename to htdocs/theme/md/img/index.html diff --git a/htdocs/theme/auguria/img/info.png b/htdocs/theme/md/img/info.png similarity index 100% rename from htdocs/theme/auguria/img/info.png rename to htdocs/theme/md/img/info.png diff --git a/htdocs/theme/md_exp/img/info_black.png b/htdocs/theme/md/img/info_black.png similarity index 100% rename from htdocs/theme/md_exp/img/info_black.png rename to htdocs/theme/md/img/info_black.png diff --git a/htdocs/theme/md_exp/img/liste_titre.png b/htdocs/theme/md/img/liste_titre.png similarity index 100% rename from htdocs/theme/md_exp/img/liste_titre.png rename to htdocs/theme/md/img/liste_titre.png diff --git a/htdocs/theme/md_exp/img/liste_titre2.png b/htdocs/theme/md/img/liste_titre2.png similarity index 100% rename from htdocs/theme/md_exp/img/liste_titre2.png rename to htdocs/theme/md/img/liste_titre2.png diff --git a/htdocs/theme/auguria/img/lock.png b/htdocs/theme/md/img/lock.png similarity index 100% rename from htdocs/theme/auguria/img/lock.png rename to htdocs/theme/md/img/lock.png diff --git a/htdocs/theme/auguria/img/login_background.png b/htdocs/theme/md/img/login_background.png similarity index 100% rename from htdocs/theme/auguria/img/login_background.png rename to htdocs/theme/md/img/login_background.png diff --git a/htdocs/theme/md_exp/img/logo_setup.svg b/htdocs/theme/md/img/logo_setup.svg similarity index 100% rename from htdocs/theme/md_exp/img/logo_setup.svg rename to htdocs/theme/md/img/logo_setup.svg diff --git a/htdocs/theme/auguria/img/logout.png b/htdocs/theme/md/img/logout.png similarity index 100% rename from htdocs/theme/auguria/img/logout.png rename to htdocs/theme/md/img/logout.png diff --git a/htdocs/theme/md_exp/img/menus/README.md b/htdocs/theme/md/img/menus/README.md similarity index 100% rename from htdocs/theme/md_exp/img/menus/README.md rename to htdocs/theme/md/img/menus/README.md diff --git a/htdocs/theme/md_exp/img/menus/agenda.png b/htdocs/theme/md/img/menus/agenda.png similarity index 100% rename from htdocs/theme/md_exp/img/menus/agenda.png rename to htdocs/theme/md/img/menus/agenda.png diff --git a/htdocs/theme/md_exp/img/menus/agenda_over.png b/htdocs/theme/md/img/menus/agenda_over.png similarity index 100% rename from htdocs/theme/md_exp/img/menus/agenda_over.png rename to htdocs/theme/md/img/menus/agenda_over.png diff --git a/htdocs/theme/md_exp/img/menus/bank.png b/htdocs/theme/md/img/menus/bank.png similarity index 100% rename from htdocs/theme/md_exp/img/menus/bank.png rename to htdocs/theme/md/img/menus/bank.png diff --git a/htdocs/theme/md_exp/img/menus/bank_over.png b/htdocs/theme/md/img/menus/bank_over.png similarity index 100% rename from htdocs/theme/md_exp/img/menus/bank_over.png rename to htdocs/theme/md/img/menus/bank_over.png diff --git a/htdocs/theme/md_exp/img/menus/chart.png b/htdocs/theme/md/img/menus/chart.png similarity index 100% rename from htdocs/theme/md_exp/img/menus/chart.png rename to htdocs/theme/md/img/menus/chart.png diff --git a/htdocs/theme/md_exp/img/menus/commercial.png b/htdocs/theme/md/img/menus/commercial.png similarity index 100% rename from htdocs/theme/md_exp/img/menus/commercial.png rename to htdocs/theme/md/img/menus/commercial.png diff --git a/htdocs/theme/md_exp/img/menus/commercial_over.png b/htdocs/theme/md/img/menus/commercial_over.png similarity index 100% rename from htdocs/theme/md_exp/img/menus/commercial_over.png rename to htdocs/theme/md/img/menus/commercial_over.png diff --git a/htdocs/theme/md_exp/img/menus/company.png b/htdocs/theme/md/img/menus/company.png similarity index 100% rename from htdocs/theme/md_exp/img/menus/company.png rename to htdocs/theme/md/img/menus/company.png diff --git a/htdocs/theme/md_exp/img/menus/company_over.png b/htdocs/theme/md/img/menus/company_over.png similarity index 100% rename from htdocs/theme/md_exp/img/menus/company_over.png rename to htdocs/theme/md/img/menus/company_over.png diff --git a/htdocs/theme/md_exp/img/menus/ecm.png b/htdocs/theme/md/img/menus/ecm.png similarity index 100% rename from htdocs/theme/md_exp/img/menus/ecm.png rename to htdocs/theme/md/img/menus/ecm.png diff --git a/htdocs/theme/md_exp/img/menus/ecm_over.png b/htdocs/theme/md/img/menus/ecm_over.png similarity index 100% rename from htdocs/theme/md_exp/img/menus/ecm_over.png rename to htdocs/theme/md/img/menus/ecm_over.png diff --git a/htdocs/theme/md_exp/img/menus/externalsite.png b/htdocs/theme/md/img/menus/externalsite.png similarity index 100% rename from htdocs/theme/md_exp/img/menus/externalsite.png rename to htdocs/theme/md/img/menus/externalsite.png diff --git a/htdocs/theme/md_exp/img/menus/externalsite_over.png b/htdocs/theme/md/img/menus/externalsite_over.png similarity index 100% rename from htdocs/theme/md_exp/img/menus/externalsite_over.png rename to htdocs/theme/md/img/menus/externalsite_over.png diff --git a/htdocs/theme/md_exp/img/menus/ftp.png b/htdocs/theme/md/img/menus/ftp.png similarity index 100% rename from htdocs/theme/md_exp/img/menus/ftp.png rename to htdocs/theme/md/img/menus/ftp.png diff --git a/htdocs/theme/md_exp/img/menus/ftp_over.png b/htdocs/theme/md/img/menus/ftp_over.png similarity index 100% rename from htdocs/theme/md_exp/img/menus/ftp_over.png rename to htdocs/theme/md/img/menus/ftp_over.png diff --git a/htdocs/theme/md_exp/img/menus/generic1.png b/htdocs/theme/md/img/menus/generic1.png similarity index 100% rename from htdocs/theme/md_exp/img/menus/generic1.png rename to htdocs/theme/md/img/menus/generic1.png diff --git a/htdocs/theme/md_exp/img/menus/generic1_over.png b/htdocs/theme/md/img/menus/generic1_over.png similarity index 100% rename from htdocs/theme/md_exp/img/menus/generic1_over.png rename to htdocs/theme/md/img/menus/generic1_over.png diff --git a/htdocs/theme/md_exp/img/menus/generic2.png b/htdocs/theme/md/img/menus/generic2.png similarity index 100% rename from htdocs/theme/md_exp/img/menus/generic2.png rename to htdocs/theme/md/img/menus/generic2.png diff --git a/htdocs/theme/md_exp/img/menus/generic2_over.png b/htdocs/theme/md/img/menus/generic2_over.png similarity index 100% rename from htdocs/theme/md_exp/img/menus/generic2_over.png rename to htdocs/theme/md/img/menus/generic2_over.png diff --git a/htdocs/theme/md_exp/img/menus/generic3.png b/htdocs/theme/md/img/menus/generic3.png similarity index 100% rename from htdocs/theme/md_exp/img/menus/generic3.png rename to htdocs/theme/md/img/menus/generic3.png diff --git a/htdocs/theme/md_exp/img/menus/generic3_over.png b/htdocs/theme/md/img/menus/generic3_over.png similarity index 100% rename from htdocs/theme/md_exp/img/menus/generic3_over.png rename to htdocs/theme/md/img/menus/generic3_over.png diff --git a/htdocs/theme/md_exp/img/menus/generic4.png b/htdocs/theme/md/img/menus/generic4.png similarity index 100% rename from htdocs/theme/md_exp/img/menus/generic4.png rename to htdocs/theme/md/img/menus/generic4.png diff --git a/htdocs/theme/md_exp/img/menus/generic4_over.png b/htdocs/theme/md/img/menus/generic4_over.png similarity index 100% rename from htdocs/theme/md_exp/img/menus/generic4_over.png rename to htdocs/theme/md/img/menus/generic4_over.png diff --git a/htdocs/theme/md_exp/img/menus/globe.png b/htdocs/theme/md/img/menus/globe.png similarity index 100% rename from htdocs/theme/md_exp/img/menus/globe.png rename to htdocs/theme/md/img/menus/globe.png diff --git a/htdocs/theme/md_exp/img/menus/globe_over.png b/htdocs/theme/md/img/menus/globe_over.png similarity index 100% rename from htdocs/theme/md_exp/img/menus/globe_over.png rename to htdocs/theme/md/img/menus/globe_over.png diff --git a/htdocs/theme/md_exp/img/menus/holiday.png b/htdocs/theme/md/img/menus/holiday.png similarity index 100% rename from htdocs/theme/md_exp/img/menus/holiday.png rename to htdocs/theme/md/img/menus/holiday.png diff --git a/htdocs/theme/md_exp/img/menus/home.png b/htdocs/theme/md/img/menus/home.png similarity index 100% rename from htdocs/theme/md_exp/img/menus/home.png rename to htdocs/theme/md/img/menus/home.png diff --git a/htdocs/theme/md_exp/img/menus/home_over.png b/htdocs/theme/md/img/menus/home_over.png similarity index 100% rename from htdocs/theme/md_exp/img/menus/home_over.png rename to htdocs/theme/md/img/menus/home_over.png diff --git a/htdocs/theme/amarok/index.html b/htdocs/theme/md/img/menus/index.html similarity index 100% rename from htdocs/theme/amarok/index.html rename to htdocs/theme/md/img/menus/index.html diff --git a/htdocs/theme/md_exp/img/menus/mail.png b/htdocs/theme/md/img/menus/mail.png similarity index 100% rename from htdocs/theme/md_exp/img/menus/mail.png rename to htdocs/theme/md/img/menus/mail.png diff --git a/htdocs/theme/md_exp/img/menus/mail_over.png b/htdocs/theme/md/img/menus/mail_over.png similarity index 100% rename from htdocs/theme/md_exp/img/menus/mail_over.png rename to htdocs/theme/md/img/menus/mail_over.png diff --git a/htdocs/theme/md_exp/img/menus/members.png b/htdocs/theme/md/img/menus/members.png similarity index 100% rename from htdocs/theme/md_exp/img/menus/members.png rename to htdocs/theme/md/img/menus/members.png diff --git a/htdocs/theme/md_exp/img/menus/members_over.png b/htdocs/theme/md/img/menus/members_over.png similarity index 100% rename from htdocs/theme/md_exp/img/menus/members_over.png rename to htdocs/theme/md/img/menus/members_over.png diff --git a/htdocs/theme/md_exp/img/menus/money.png b/htdocs/theme/md/img/menus/money.png similarity index 100% rename from htdocs/theme/md_exp/img/menus/money.png rename to htdocs/theme/md/img/menus/money.png diff --git a/htdocs/theme/md_exp/img/menus/money_over.png b/htdocs/theme/md/img/menus/money_over.png similarity index 100% rename from htdocs/theme/md_exp/img/menus/money_over.png rename to htdocs/theme/md/img/menus/money_over.png diff --git a/htdocs/theme/md_exp/img/menus/pointofsale.png b/htdocs/theme/md/img/menus/pointofsale.png similarity index 100% rename from htdocs/theme/md_exp/img/menus/pointofsale.png rename to htdocs/theme/md/img/menus/pointofsale.png diff --git a/htdocs/theme/md_exp/img/menus/pointofsale_over.png b/htdocs/theme/md/img/menus/pointofsale_over.png similarity index 100% rename from htdocs/theme/md_exp/img/menus/pointofsale_over.png rename to htdocs/theme/md/img/menus/pointofsale_over.png diff --git a/htdocs/theme/md_exp/img/menus/products.png b/htdocs/theme/md/img/menus/products.png similarity index 100% rename from htdocs/theme/md_exp/img/menus/products.png rename to htdocs/theme/md/img/menus/products.png diff --git a/htdocs/theme/md_exp/img/menus/products_over.png b/htdocs/theme/md/img/menus/products_over.png similarity index 100% rename from htdocs/theme/md_exp/img/menus/products_over.png rename to htdocs/theme/md/img/menus/products_over.png diff --git a/htdocs/theme/md_exp/img/menus/project.png b/htdocs/theme/md/img/menus/project.png similarity index 100% rename from htdocs/theme/md_exp/img/menus/project.png rename to htdocs/theme/md/img/menus/project.png diff --git a/htdocs/theme/md_exp/img/menus/project_over.png b/htdocs/theme/md/img/menus/project_over.png similarity index 100% rename from htdocs/theme/md_exp/img/menus/project_over.png rename to htdocs/theme/md/img/menus/project_over.png diff --git a/htdocs/theme/md_exp/img/menus/shop.png b/htdocs/theme/md/img/menus/shop.png similarity index 100% rename from htdocs/theme/md_exp/img/menus/shop.png rename to htdocs/theme/md/img/menus/shop.png diff --git a/htdocs/theme/md_exp/img/menus/shop_over.png b/htdocs/theme/md/img/menus/shop_over.png similarity index 100% rename from htdocs/theme/md_exp/img/menus/shop_over.png rename to htdocs/theme/md/img/menus/shop_over.png diff --git a/htdocs/theme/md_exp/img/menus/tools.png b/htdocs/theme/md/img/menus/tools.png similarity index 100% rename from htdocs/theme/md_exp/img/menus/tools.png rename to htdocs/theme/md/img/menus/tools.png diff --git a/htdocs/theme/md_exp/img/menus/tools_over.png b/htdocs/theme/md/img/menus/tools_over.png similarity index 100% rename from htdocs/theme/md_exp/img/menus/tools_over.png rename to htdocs/theme/md/img/menus/tools_over.png diff --git a/htdocs/theme/md_exp/img/menutab-r.png b/htdocs/theme/md/img/menutab-r.png similarity index 100% rename from htdocs/theme/md_exp/img/menutab-r.png rename to htdocs/theme/md/img/menutab-r.png diff --git a/htdocs/theme/md_exp/img/nav-overlay.png b/htdocs/theme/md/img/nav-overlay.png similarity index 100% rename from htdocs/theme/md_exp/img/nav-overlay.png rename to htdocs/theme/md/img/nav-overlay.png diff --git a/htdocs/theme/md_exp/img/nav-overlay3.png b/htdocs/theme/md/img/nav-overlay3.png similarity index 100% rename from htdocs/theme/md_exp/img/nav-overlay3.png rename to htdocs/theme/md/img/nav-overlay3.png diff --git a/htdocs/theme/auguria/img/next.png b/htdocs/theme/md/img/next.png similarity index 100% rename from htdocs/theme/auguria/img/next.png rename to htdocs/theme/md/img/next.png diff --git a/htdocs/theme/auguria/img/object_account.png b/htdocs/theme/md/img/object_account.png similarity index 100% rename from htdocs/theme/auguria/img/object_account.png rename to htdocs/theme/md/img/object_account.png diff --git a/htdocs/theme/amarok/img/object_accounting.png b/htdocs/theme/md/img/object_accounting.png similarity index 100% rename from htdocs/theme/amarok/img/object_accounting.png rename to htdocs/theme/md/img/object_accounting.png diff --git a/htdocs/theme/md_exp/img/object_action.png b/htdocs/theme/md/img/object_action.png similarity index 100% rename from htdocs/theme/md_exp/img/object_action.png rename to htdocs/theme/md/img/object_action.png diff --git a/htdocs/theme/amarok/img/object_action_rdv.png b/htdocs/theme/md/img/object_action_rdv.png similarity index 100% rename from htdocs/theme/amarok/img/object_action_rdv.png rename to htdocs/theme/md/img/object_action_rdv.png diff --git a/htdocs/theme/md_exp/img/object_address.png b/htdocs/theme/md/img/object_address.png similarity index 100% rename from htdocs/theme/md_exp/img/object_address.png rename to htdocs/theme/md/img/object_address.png diff --git a/htdocs/theme/md_exp/img/object_askpricesupplier.png b/htdocs/theme/md/img/object_askpricesupplier.png similarity index 100% rename from htdocs/theme/md_exp/img/object_askpricesupplier.png rename to htdocs/theme/md/img/object_askpricesupplier.png diff --git a/htdocs/theme/auguria/img/object_barcode.png b/htdocs/theme/md/img/object_barcode.png similarity index 100% rename from htdocs/theme/auguria/img/object_barcode.png rename to htdocs/theme/md/img/object_barcode.png diff --git a/htdocs/theme/auguria/img/object_bill.png b/htdocs/theme/md/img/object_bill.png similarity index 100% rename from htdocs/theme/auguria/img/object_bill.png rename to htdocs/theme/md/img/object_bill.png diff --git a/htdocs/theme/auguria/img/object_billa.png b/htdocs/theme/md/img/object_billa.png similarity index 100% rename from htdocs/theme/auguria/img/object_billa.png rename to htdocs/theme/md/img/object_billa.png diff --git a/htdocs/theme/auguria/img/object_billd.png b/htdocs/theme/md/img/object_billd.png similarity index 100% rename from htdocs/theme/auguria/img/object_billd.png rename to htdocs/theme/md/img/object_billd.png diff --git a/htdocs/theme/auguria/img/object_billr.png b/htdocs/theme/md/img/object_billr.png similarity index 100% rename from htdocs/theme/auguria/img/object_billr.png rename to htdocs/theme/md/img/object_billr.png diff --git a/htdocs/theme/auguria/img/object_book.png b/htdocs/theme/md/img/object_book.png similarity index 100% rename from htdocs/theme/auguria/img/object_book.png rename to htdocs/theme/md/img/object_book.png diff --git a/htdocs/theme/md_exp/img/object_bookmark.png b/htdocs/theme/md/img/object_bookmark.png similarity index 100% rename from htdocs/theme/md_exp/img/object_bookmark.png rename to htdocs/theme/md/img/object_bookmark.png diff --git a/htdocs/theme/auguria/img/object_calendar.png b/htdocs/theme/md/img/object_calendar.png similarity index 100% rename from htdocs/theme/auguria/img/object_calendar.png rename to htdocs/theme/md/img/object_calendar.png diff --git a/htdocs/theme/auguria/img/object_calendarday.png b/htdocs/theme/md/img/object_calendarday.png similarity index 100% rename from htdocs/theme/auguria/img/object_calendarday.png rename to htdocs/theme/md/img/object_calendarday.png diff --git a/htdocs/theme/md_exp/img/object_calendarperuser.png b/htdocs/theme/md/img/object_calendarperuser.png similarity index 100% rename from htdocs/theme/md_exp/img/object_calendarperuser.png rename to htdocs/theme/md/img/object_calendarperuser.png diff --git a/htdocs/theme/auguria/img/object_calendarweek.png b/htdocs/theme/md/img/object_calendarweek.png similarity index 100% rename from htdocs/theme/auguria/img/object_calendarweek.png rename to htdocs/theme/md/img/object_calendarweek.png diff --git a/htdocs/theme/auguria/img/object_category-expanded.png b/htdocs/theme/md/img/object_category-expanded.png similarity index 100% rename from htdocs/theme/auguria/img/object_category-expanded.png rename to htdocs/theme/md/img/object_category-expanded.png diff --git a/htdocs/theme/auguria/img/object_category.png b/htdocs/theme/md/img/object_category.png similarity index 100% rename from htdocs/theme/auguria/img/object_category.png rename to htdocs/theme/md/img/object_category.png diff --git a/htdocs/theme/auguria/img/object_commercial.png b/htdocs/theme/md/img/object_commercial.png similarity index 100% rename from htdocs/theme/auguria/img/object_commercial.png rename to htdocs/theme/md/img/object_commercial.png diff --git a/htdocs/theme/auguria/img/object_company.png b/htdocs/theme/md/img/object_company.png similarity index 100% rename from htdocs/theme/auguria/img/object_company.png rename to htdocs/theme/md/img/object_company.png diff --git a/htdocs/theme/auguria/img/object_contact.png b/htdocs/theme/md/img/object_contact.png similarity index 100% rename from htdocs/theme/auguria/img/object_contact.png rename to htdocs/theme/md/img/object_contact.png diff --git a/htdocs/theme/auguria/img/object_contact_all.png b/htdocs/theme/md/img/object_contact_all.png similarity index 100% rename from htdocs/theme/auguria/img/object_contact_all.png rename to htdocs/theme/md/img/object_contact_all.png diff --git a/htdocs/theme/auguria/img/object_contract.png b/htdocs/theme/md/img/object_contract.png similarity index 100% rename from htdocs/theme/auguria/img/object_contract.png rename to htdocs/theme/md/img/object_contract.png diff --git a/htdocs/theme/amarok/img/object_cron.png b/htdocs/theme/md/img/object_cron.png similarity index 100% rename from htdocs/theme/amarok/img/object_cron.png rename to htdocs/theme/md/img/object_cron.png diff --git a/htdocs/theme/auguria/img/object_dir.png b/htdocs/theme/md/img/object_dir.png similarity index 100% rename from htdocs/theme/auguria/img/object_dir.png rename to htdocs/theme/md/img/object_dir.png diff --git a/htdocs/theme/auguria/img/object_email.png b/htdocs/theme/md/img/object_email.png similarity index 100% rename from htdocs/theme/auguria/img/object_email.png rename to htdocs/theme/md/img/object_email.png diff --git a/htdocs/theme/auguria/img/object_energie.png b/htdocs/theme/md/img/object_energie.png similarity index 100% rename from htdocs/theme/auguria/img/object_energie.png rename to htdocs/theme/md/img/object_energie.png diff --git a/htdocs/theme/auguria/img/object_generic.png b/htdocs/theme/md/img/object_generic.png similarity index 100% rename from htdocs/theme/auguria/img/object_generic.png rename to htdocs/theme/md/img/object_generic.png diff --git a/htdocs/theme/auguria/img/object_globe.png b/htdocs/theme/md/img/object_globe.png similarity index 100% rename from htdocs/theme/auguria/img/object_globe.png rename to htdocs/theme/md/img/object_globe.png diff --git a/htdocs/theme/amarok/img/object_gravatar.png b/htdocs/theme/md/img/object_gravatar.png similarity index 100% rename from htdocs/theme/amarok/img/object_gravatar.png rename to htdocs/theme/md/img/object_gravatar.png diff --git a/htdocs/theme/auguria/img/object_group.png b/htdocs/theme/md/img/object_group.png similarity index 100% rename from htdocs/theme/auguria/img/object_group.png rename to htdocs/theme/md/img/object_group.png diff --git a/htdocs/theme/amarok/img/object_holiday.png b/htdocs/theme/md/img/object_holiday.png similarity index 100% rename from htdocs/theme/amarok/img/object_holiday.png rename to htdocs/theme/md/img/object_holiday.png diff --git a/htdocs/theme/auguria/img/object_intervention.png b/htdocs/theme/md/img/object_intervention.png similarity index 100% rename from htdocs/theme/auguria/img/object_intervention.png rename to htdocs/theme/md/img/object_intervention.png diff --git a/htdocs/theme/auguria/img/object_invoice.png b/htdocs/theme/md/img/object_invoice.png similarity index 100% rename from htdocs/theme/auguria/img/object_invoice.png rename to htdocs/theme/md/img/object_invoice.png diff --git a/htdocs/theme/auguria/img/object_label.png b/htdocs/theme/md/img/object_label.png similarity index 100% rename from htdocs/theme/auguria/img/object_label.png rename to htdocs/theme/md/img/object_label.png diff --git a/htdocs/theme/auguria/img/object_list.png b/htdocs/theme/md/img/object_list.png similarity index 100% rename from htdocs/theme/auguria/img/object_list.png rename to htdocs/theme/md/img/object_list.png diff --git a/htdocs/theme/auguria/img/object_margin.png b/htdocs/theme/md/img/object_margin.png similarity index 100% rename from htdocs/theme/auguria/img/object_margin.png rename to htdocs/theme/md/img/object_margin.png diff --git a/htdocs/theme/amarok/img/object_opensurvey.png b/htdocs/theme/md/img/object_opensurvey.png similarity index 100% rename from htdocs/theme/amarok/img/object_opensurvey.png rename to htdocs/theme/md/img/object_opensurvey.png diff --git a/htdocs/theme/auguria/img/object_order.png b/htdocs/theme/md/img/object_order.png similarity index 100% rename from htdocs/theme/auguria/img/object_order.png rename to htdocs/theme/md/img/object_order.png diff --git a/htdocs/theme/auguria/img/object_payment.png b/htdocs/theme/md/img/object_payment.png similarity index 100% rename from htdocs/theme/auguria/img/object_payment.png rename to htdocs/theme/md/img/object_payment.png diff --git a/htdocs/theme/md_exp/img/object_phoning.png b/htdocs/theme/md/img/object_phoning.png similarity index 100% rename from htdocs/theme/md_exp/img/object_phoning.png rename to htdocs/theme/md/img/object_phoning.png diff --git a/htdocs/theme/md_exp/img/object_phoning_fax.png b/htdocs/theme/md/img/object_phoning_fax.png similarity index 100% rename from htdocs/theme/md_exp/img/object_phoning_fax.png rename to htdocs/theme/md/img/object_phoning_fax.png diff --git a/htdocs/theme/auguria/img/object_product.png b/htdocs/theme/md/img/object_product.png similarity index 100% rename from htdocs/theme/auguria/img/object_product.png rename to htdocs/theme/md/img/object_product.png diff --git a/htdocs/theme/auguria/img/object_project.png b/htdocs/theme/md/img/object_project.png similarity index 100% rename from htdocs/theme/auguria/img/object_project.png rename to htdocs/theme/md/img/object_project.png diff --git a/htdocs/theme/auguria/img/object_projectpub.png b/htdocs/theme/md/img/object_projectpub.png similarity index 100% rename from htdocs/theme/auguria/img/object_projectpub.png rename to htdocs/theme/md/img/object_projectpub.png diff --git a/htdocs/theme/auguria/img/object_projecttask.png b/htdocs/theme/md/img/object_projecttask.png similarity index 100% rename from htdocs/theme/auguria/img/object_projecttask.png rename to htdocs/theme/md/img/object_projecttask.png diff --git a/htdocs/theme/auguria/img/object_propal.png b/htdocs/theme/md/img/object_propal.png similarity index 100% rename from htdocs/theme/auguria/img/object_propal.png rename to htdocs/theme/md/img/object_propal.png diff --git a/htdocs/theme/auguria/img/object_reduc.png b/htdocs/theme/md/img/object_reduc.png similarity index 100% rename from htdocs/theme/auguria/img/object_reduc.png rename to htdocs/theme/md/img/object_reduc.png diff --git a/htdocs/theme/amarok/img/object_resource.png b/htdocs/theme/md/img/object_resource.png similarity index 100% rename from htdocs/theme/amarok/img/object_resource.png rename to htdocs/theme/md/img/object_resource.png diff --git a/htdocs/theme/auguria/img/object_rss.png b/htdocs/theme/md/img/object_rss.png similarity index 100% rename from htdocs/theme/auguria/img/object_rss.png rename to htdocs/theme/md/img/object_rss.png diff --git a/htdocs/theme/auguria/img/object_sending.png b/htdocs/theme/md/img/object_sending.png similarity index 100% rename from htdocs/theme/auguria/img/object_sending.png rename to htdocs/theme/md/img/object_sending.png diff --git a/htdocs/theme/auguria/img/object_service.png b/htdocs/theme/md/img/object_service.png similarity index 100% rename from htdocs/theme/auguria/img/object_service.png rename to htdocs/theme/md/img/object_service.png diff --git a/htdocs/theme/amarok/img/object_skype.png b/htdocs/theme/md/img/object_skype.png similarity index 100% rename from htdocs/theme/amarok/img/object_skype.png rename to htdocs/theme/md/img/object_skype.png diff --git a/htdocs/theme/auguria/img/object_stock.png b/htdocs/theme/md/img/object_stock.png similarity index 100% rename from htdocs/theme/auguria/img/object_stock.png rename to htdocs/theme/md/img/object_stock.png diff --git a/htdocs/theme/auguria/img/object_task.png b/htdocs/theme/md/img/object_task.png similarity index 100% rename from htdocs/theme/auguria/img/object_task.png rename to htdocs/theme/md/img/object_task.png diff --git a/htdocs/theme/md_exp/img/object_task_time.png b/htdocs/theme/md/img/object_task_time.png similarity index 100% rename from htdocs/theme/md_exp/img/object_task_time.png rename to htdocs/theme/md/img/object_task_time.png diff --git a/htdocs/theme/auguria/img/object_technic.png b/htdocs/theme/md/img/object_technic.png similarity index 100% rename from htdocs/theme/auguria/img/object_technic.png rename to htdocs/theme/md/img/object_technic.png diff --git a/htdocs/theme/auguria/img/object_trip.png b/htdocs/theme/md/img/object_trip.png similarity index 100% rename from htdocs/theme/auguria/img/object_trip.png rename to htdocs/theme/md/img/object_trip.png diff --git a/htdocs/theme/auguria/img/object_user.png b/htdocs/theme/md/img/object_user.png similarity index 100% rename from htdocs/theme/auguria/img/object_user.png rename to htdocs/theme/md/img/object_user.png diff --git a/htdocs/theme/auguria/img/off.png b/htdocs/theme/md/img/off.png similarity index 100% rename from htdocs/theme/auguria/img/off.png rename to htdocs/theme/md/img/off.png diff --git a/htdocs/theme/auguria/img/on.png b/htdocs/theme/md/img/on.png similarity index 100% rename from htdocs/theme/auguria/img/on.png rename to htdocs/theme/md/img/on.png diff --git a/htdocs/theme/auguria/img/pdf2.png b/htdocs/theme/md/img/pdf2.png similarity index 100% rename from htdocs/theme/auguria/img/pdf2.png rename to htdocs/theme/md/img/pdf2.png diff --git a/htdocs/theme/auguria/img/pdf3.png b/htdocs/theme/md/img/pdf3.png similarity index 100% rename from htdocs/theme/auguria/img/pdf3.png rename to htdocs/theme/md/img/pdf3.png diff --git a/htdocs/theme/amarok/img/play.png b/htdocs/theme/md/img/play.png similarity index 100% rename from htdocs/theme/amarok/img/play.png rename to htdocs/theme/md/img/play.png diff --git a/htdocs/theme/auguria/img/previous.png b/htdocs/theme/md/img/previous.png similarity index 100% rename from htdocs/theme/auguria/img/previous.png rename to htdocs/theme/md/img/previous.png diff --git a/htdocs/theme/auguria/img/printer.png b/htdocs/theme/md/img/printer.png similarity index 100% rename from htdocs/theme/auguria/img/printer.png rename to htdocs/theme/md/img/printer.png diff --git a/htdocs/theme/auguria/img/puce.png b/htdocs/theme/md/img/puce.png similarity index 100% rename from htdocs/theme/auguria/img/puce.png rename to htdocs/theme/md/img/puce.png diff --git a/htdocs/theme/auguria/img/recent.png b/htdocs/theme/md/img/recent.png similarity index 100% rename from htdocs/theme/auguria/img/recent.png rename to htdocs/theme/md/img/recent.png diff --git a/htdocs/theme/auguria/img/redstar.png b/htdocs/theme/md/img/redstar.png similarity index 100% rename from htdocs/theme/auguria/img/redstar.png rename to htdocs/theme/md/img/redstar.png diff --git a/htdocs/theme/auguria/img/refresh.png b/htdocs/theme/md/img/refresh.png similarity index 100% rename from htdocs/theme/auguria/img/refresh.png rename to htdocs/theme/md/img/refresh.png diff --git a/htdocs/theme/auguria/img/reload.png b/htdocs/theme/md/img/reload.png similarity index 100% rename from htdocs/theme/auguria/img/reload.png rename to htdocs/theme/md/img/reload.png diff --git a/htdocs/theme/auguria/img/rightarrow.png b/htdocs/theme/md/img/rightarrow.png similarity index 100% rename from htdocs/theme/auguria/img/rightarrow.png rename to htdocs/theme/md/img/rightarrow.png diff --git a/htdocs/theme/auguria/img/search.png b/htdocs/theme/md/img/search.png similarity index 100% rename from htdocs/theme/auguria/img/search.png rename to htdocs/theme/md/img/search.png diff --git a/htdocs/theme/auguria/img/searchclear.png b/htdocs/theme/md/img/searchclear.png similarity index 100% rename from htdocs/theme/auguria/img/searchclear.png rename to htdocs/theme/md/img/searchclear.png diff --git a/htdocs/theme/md_exp/img/setup.png b/htdocs/theme/md/img/setup.png similarity index 100% rename from htdocs/theme/md_exp/img/setup.png rename to htdocs/theme/md/img/setup.png diff --git a/htdocs/theme/md_exp/img/sort_asc.png b/htdocs/theme/md/img/sort_asc.png similarity index 100% rename from htdocs/theme/md_exp/img/sort_asc.png rename to htdocs/theme/md/img/sort_asc.png diff --git a/htdocs/theme/md_exp/img/sort_asc_disabled.png b/htdocs/theme/md/img/sort_asc_disabled.png similarity index 100% rename from htdocs/theme/md_exp/img/sort_asc_disabled.png rename to htdocs/theme/md/img/sort_asc_disabled.png diff --git a/htdocs/theme/md_exp/img/sort_desc.png b/htdocs/theme/md/img/sort_desc.png similarity index 100% rename from htdocs/theme/md_exp/img/sort_desc.png rename to htdocs/theme/md/img/sort_desc.png diff --git a/htdocs/theme/amarok/img/sort_desc_disabled.png b/htdocs/theme/md/img/sort_desc_disabled.png similarity index 100% rename from htdocs/theme/amarok/img/sort_desc_disabled.png rename to htdocs/theme/md/img/sort_desc_disabled.png diff --git a/htdocs/theme/auguria/img/split.png b/htdocs/theme/md/img/split.png similarity index 100% rename from htdocs/theme/auguria/img/split.png rename to htdocs/theme/md/img/split.png diff --git a/htdocs/theme/auguria/img/star.png b/htdocs/theme/md/img/star.png similarity index 100% rename from htdocs/theme/auguria/img/star.png rename to htdocs/theme/md/img/star.png diff --git a/htdocs/theme/auguria/img/stats.png b/htdocs/theme/md/img/stats.png similarity index 100% rename from htdocs/theme/auguria/img/stats.png rename to htdocs/theme/md/img/stats.png diff --git a/htdocs/theme/auguria/img/statut0.png b/htdocs/theme/md/img/statut0.png similarity index 100% rename from htdocs/theme/auguria/img/statut0.png rename to htdocs/theme/md/img/statut0.png diff --git a/htdocs/theme/auguria/img/statut1.png b/htdocs/theme/md/img/statut1.png similarity index 100% rename from htdocs/theme/auguria/img/statut1.png rename to htdocs/theme/md/img/statut1.png diff --git a/htdocs/theme/auguria/img/statut3.png b/htdocs/theme/md/img/statut3.png similarity index 100% rename from htdocs/theme/auguria/img/statut3.png rename to htdocs/theme/md/img/statut3.png diff --git a/htdocs/theme/auguria/img/statut4.png b/htdocs/theme/md/img/statut4.png similarity index 100% rename from htdocs/theme/auguria/img/statut4.png rename to htdocs/theme/md/img/statut4.png diff --git a/htdocs/theme/auguria/img/statut5.png b/htdocs/theme/md/img/statut5.png similarity index 100% rename from htdocs/theme/auguria/img/statut5.png rename to htdocs/theme/md/img/statut5.png diff --git a/htdocs/theme/auguria/img/statut6.png b/htdocs/theme/md/img/statut6.png similarity index 100% rename from htdocs/theme/auguria/img/statut6.png rename to htdocs/theme/md/img/statut6.png diff --git a/htdocs/theme/auguria/img/statut7.png b/htdocs/theme/md/img/statut7.png similarity index 100% rename from htdocs/theme/auguria/img/statut7.png rename to htdocs/theme/md/img/statut7.png diff --git a/htdocs/theme/auguria/img/statut8.png b/htdocs/theme/md/img/statut8.png similarity index 100% rename from htdocs/theme/auguria/img/statut8.png rename to htdocs/theme/md/img/statut8.png diff --git a/htdocs/theme/auguria/img/statut9.png b/htdocs/theme/md/img/statut9.png similarity index 100% rename from htdocs/theme/auguria/img/statut9.png rename to htdocs/theme/md/img/statut9.png diff --git a/htdocs/theme/md_exp/img/stcomm-1.png b/htdocs/theme/md/img/stcomm-1.png similarity index 100% rename from htdocs/theme/md_exp/img/stcomm-1.png rename to htdocs/theme/md/img/stcomm-1.png diff --git a/htdocs/theme/amarok/img/stcomm0.png b/htdocs/theme/md/img/stcomm0.png similarity index 100% rename from htdocs/theme/amarok/img/stcomm0.png rename to htdocs/theme/md/img/stcomm0.png diff --git a/htdocs/theme/auguria/img/stcomm1.png b/htdocs/theme/md/img/stcomm1.png similarity index 100% rename from htdocs/theme/auguria/img/stcomm1.png rename to htdocs/theme/md/img/stcomm1.png diff --git a/htdocs/theme/auguria/img/stcomm2.png b/htdocs/theme/md/img/stcomm2.png similarity index 100% rename from htdocs/theme/auguria/img/stcomm2.png rename to htdocs/theme/md/img/stcomm2.png diff --git a/htdocs/theme/auguria/img/stcomm3.png b/htdocs/theme/md/img/stcomm3.png similarity index 100% rename from htdocs/theme/auguria/img/stcomm3.png rename to htdocs/theme/md/img/stcomm3.png diff --git a/htdocs/theme/auguria/img/stcomm4.png b/htdocs/theme/md/img/stcomm4.png similarity index 100% rename from htdocs/theme/auguria/img/stcomm4.png rename to htdocs/theme/md/img/stcomm4.png diff --git a/htdocs/theme/amarok/img/switch_off.png b/htdocs/theme/md/img/switch_off.png similarity index 100% rename from htdocs/theme/amarok/img/switch_off.png rename to htdocs/theme/md/img/switch_off.png diff --git a/htdocs/theme/amarok/img/switch_on.png b/htdocs/theme/md/img/switch_on.png similarity index 100% rename from htdocs/theme/amarok/img/switch_on.png rename to htdocs/theme/md/img/switch_on.png diff --git a/htdocs/theme/auguria/img/menus/tab_background.png b/htdocs/theme/md/img/tab_background.png similarity index 100% rename from htdocs/theme/auguria/img/menus/tab_background.png rename to htdocs/theme/md/img/tab_background.png diff --git a/htdocs/theme/auguria/img/tick.png b/htdocs/theme/md/img/tick.png similarity index 100% rename from htdocs/theme/auguria/img/tick.png rename to htdocs/theme/md/img/tick.png diff --git a/htdocs/theme/auguria/img/title.gif b/htdocs/theme/md/img/title.gif similarity index 100% rename from htdocs/theme/auguria/img/title.gif rename to htdocs/theme/md/img/title.gif diff --git a/htdocs/theme/auguria/img/title.png b/htdocs/theme/md/img/title.png similarity index 100% rename from htdocs/theme/auguria/img/title.png rename to htdocs/theme/md/img/title.png diff --git a/htdocs/theme/amarok/img/title_accountancy.png b/htdocs/theme/md/img/title_accountancy.png similarity index 100% rename from htdocs/theme/amarok/img/title_accountancy.png rename to htdocs/theme/md/img/title_accountancy.png diff --git a/htdocs/theme/amarok/img/title_bank.png b/htdocs/theme/md/img/title_bank.png similarity index 100% rename from htdocs/theme/amarok/img/title_bank.png rename to htdocs/theme/md/img/title_bank.png diff --git a/htdocs/theme/amarok/img/title_commercial.png b/htdocs/theme/md/img/title_commercial.png similarity index 100% rename from htdocs/theme/amarok/img/title_commercial.png rename to htdocs/theme/md/img/title_commercial.png diff --git a/htdocs/theme/amarok/img/title_companies.png b/htdocs/theme/md/img/title_companies.png similarity index 100% rename from htdocs/theme/amarok/img/title_companies.png rename to htdocs/theme/md/img/title_companies.png diff --git a/htdocs/theme/amarok/img/title_generic.png b/htdocs/theme/md/img/title_generic.png similarity index 100% rename from htdocs/theme/amarok/img/title_generic.png rename to htdocs/theme/md/img/title_generic.png diff --git a/htdocs/theme/amarok/img/title_home.png b/htdocs/theme/md/img/title_home.png similarity index 100% rename from htdocs/theme/amarok/img/title_home.png rename to htdocs/theme/md/img/title_home.png diff --git a/htdocs/theme/md_exp/img/title_hrm.png b/htdocs/theme/md/img/title_hrm.png similarity index 100% rename from htdocs/theme/md_exp/img/title_hrm.png rename to htdocs/theme/md/img/title_hrm.png diff --git a/htdocs/theme/amarok/img/title_products.png b/htdocs/theme/md/img/title_products.png similarity index 100% rename from htdocs/theme/amarok/img/title_products.png rename to htdocs/theme/md/img/title_products.png diff --git a/htdocs/theme/amarok/img/title_project.png b/htdocs/theme/md/img/title_project.png similarity index 100% rename from htdocs/theme/amarok/img/title_project.png rename to htdocs/theme/md/img/title_project.png diff --git a/htdocs/theme/amarok/img/title_setup.png b/htdocs/theme/md/img/title_setup.png similarity index 100% rename from htdocs/theme/amarok/img/title_setup.png rename to htdocs/theme/md/img/title_setup.png diff --git a/htdocs/theme/md_exp/img/tmenu.jpg b/htdocs/theme/md/img/tmenu.jpg similarity index 100% rename from htdocs/theme/md_exp/img/tmenu.jpg rename to htdocs/theme/md/img/tmenu.jpg diff --git a/htdocs/theme/md_exp/img/tmenu2.jpg b/htdocs/theme/md/img/tmenu2.jpg similarity index 100% rename from htdocs/theme/md_exp/img/tmenu2.jpg rename to htdocs/theme/md/img/tmenu2.jpg diff --git a/htdocs/theme/auguria/img/tmenu3.jpg b/htdocs/theme/md/img/tmenu3.jpg similarity index 100% rename from htdocs/theme/auguria/img/tmenu3.jpg rename to htdocs/theme/md/img/tmenu3.jpg diff --git a/htdocs/theme/auguria/img/tmenu_inverse.jpg b/htdocs/theme/md/img/tmenu_inverse.jpg similarity index 100% rename from htdocs/theme/auguria/img/tmenu_inverse.jpg rename to htdocs/theme/md/img/tmenu_inverse.jpg diff --git a/htdocs/theme/auguria/img/unlock.png b/htdocs/theme/md/img/unlock.png similarity index 100% rename from htdocs/theme/auguria/img/unlock.png rename to htdocs/theme/md/img/unlock.png diff --git a/htdocs/theme/auguria/img/uparrow.png b/htdocs/theme/md/img/uparrow.png similarity index 100% rename from htdocs/theme/auguria/img/uparrow.png rename to htdocs/theme/md/img/uparrow.png diff --git a/htdocs/theme/auguria/img/vcard.png b/htdocs/theme/md/img/vcard.png similarity index 100% rename from htdocs/theme/auguria/img/vcard.png rename to htdocs/theme/md/img/vcard.png diff --git a/htdocs/theme/auguria/img/view.png b/htdocs/theme/md/img/view.png similarity index 100% rename from htdocs/theme/auguria/img/view.png rename to htdocs/theme/md/img/view.png diff --git a/htdocs/theme/amarok/img/warning.png b/htdocs/theme/md/img/warning.png similarity index 100% rename from htdocs/theme/amarok/img/warning.png rename to htdocs/theme/md/img/warning.png diff --git a/htdocs/theme/amarok/img/working.gif b/htdocs/theme/md/img/working.gif old mode 100755 new mode 100644 similarity index 100% rename from htdocs/theme/amarok/img/working.gif rename to htdocs/theme/md/img/working.gif diff --git a/htdocs/theme/auguria/img/working2.gif b/htdocs/theme/md/img/working2.gif similarity index 100% rename from htdocs/theme/auguria/img/working2.gif rename to htdocs/theme/md/img/working2.gif diff --git a/htdocs/theme/amarok/tpl/index.html b/htdocs/theme/md/index.html similarity index 100% rename from htdocs/theme/amarok/tpl/index.html rename to htdocs/theme/md/index.html diff --git a/htdocs/theme/md_exp/style.css.php b/htdocs/theme/md/style.css.php similarity index 94% rename from htdocs/theme/md_exp/style.css.php rename to htdocs/theme/md/style.css.php index 412f6dea8d0..83b1e0b03bb 100644 --- a/htdocs/theme/md_exp/style.css.php +++ b/htdocs/theme/md/style.css.php @@ -21,7 +21,7 @@ */ /** - * \file htdocs/theme/md_exp/style.css.php + * \file htdocs/theme/md/style.css.php * \brief File for CSS style sheet Md (Material Design) */ @@ -75,85 +75,64 @@ $dol_no_mouse_hover=$conf->dol_no_mouse_hover; $dol_use_jmobile=$conf->dol_use_jmobile; -// Define reference colors -// Example: Light grey: $colred=235;$colgreen=235;$colblue=235; -// Example: Pink: $colred=230;$colgreen=210;$colblue=230; -// Example: Green: $colred=210;$colgreen=230;$colblue=210; -// Example: Ocean: $colred=220;$colgreen=220;$colblue=240; //$conf->global->THEME_ELDY_ENABLE_PERSONALIZED=0; //$user->conf->THEME_ELDY_ENABLE_PERSONALIZED=0; //var_dump($user->conf->THEME_ELDY_RGB); -$colred =empty($user->conf->THEME_ELDY_ENABLE_PERSONALIZED)?(empty($conf->global->THEME_ELDY_RGB)?235:hexdec(substr($conf->global->THEME_ELDY_RGB,0,2))):(empty($user->conf->THEME_ELDY_RGB)?235:hexdec(substr($user->conf->THEME_ELDY_RGB,0,2))); -$colgreen=empty($user->conf->THEME_ELDY_ENABLE_PERSONALIZED)?(empty($conf->global->THEME_ELDY_RGB)?235:hexdec(substr($conf->global->THEME_ELDY_RGB,2,2))):(empty($user->conf->THEME_ELDY_RGB)?235:hexdec(substr($user->conf->THEME_ELDY_RGB,2,2))); -$colblue =empty($user->conf->THEME_ELDY_ENABLE_PERSONALIZED)?(empty($conf->global->THEME_ELDY_RGB)?235:hexdec(substr($conf->global->THEME_ELDY_RGB,4,2))):(empty($user->conf->THEME_ELDY_RGB)?235:hexdec(substr($user->conf->THEME_ELDY_RGB,4,2))); // Colors -$isred=max(0,(2*$colred-$colgreen-$colblue)/2); // 0 - 255 -$isgreen=max(0,(2*$colgreen-$colred-$colblue)/2); // 0 - 255 -$isblue=max(0,(2*$colblue-$colred-$colgreen)/2); // 0 - 255 -$colorbackhmenu1=($colred-3).','.($colgreen-3).','.($colblue-3); // topmenu -$colorbackhmenu2=($colred+5).','.($colgreen+5).','.($colblue+5); -$colorbackvmenu1=($colred+15).','.($colgreen+16).','.($colblue+17); // vmenu -$colorbackvmenu2=($colred-15).','.($colgreen-15).','.($colblue-15); -$colorbacktitle1=($colred-5).','.($colgreen-5).','.($colblue-5); // title of array -$colorbacktitle2=($colred-15).','.($colgreen-15).','.($colblue-15); +$colorbackhmenu1='140,150,180'; // topmenu +$colorbackvmenu1='255,255,255'; // vmenu +$colorbacktitle1='230,230,230'; // title of array $colorbacktabcard1='255,255,255'; // card -$colorbacktabcard2=($colred-15).','.($colgreen-15).','.($colblue-15); -$colorbacktabactive=($colred-15).','.($colgreen-15).','.($colblue-15); +$colorbacktabactive='234,234,234'; $colorbacklineimpair1='255,255,255'; // line impair $colorbacklineimpair2='255,255,255'; // line impair -$colorbacklineimpairhover=(230+round(($isred+$isgreen+$isblue)/9)).','.(230+round(($isred+$isgreen+$isblue)/9)).','.(230+round(($isred+$isgreen+$isblue)/9)); // line impair -$colorbacklinepair1=(244+round($isred/3)).','.(244+round($isgreen/3)).','.(244+round($isblue/3)); // line pair -$colorbacklinepair2=(250+round($isred/3)).','.(250+round($isgreen/3)).','.(250+round($isblue/3)); // line pair -$colorbacklinepairhover=(230+round(($isred+$isgreen+$isblue)/9)).','.(230+round(($isred+$isgreen+$isblue)/9)).','.(230+round(($isred+$isgreen+$isblue)/9)); // line pair +$colorbacklinepair1='242,242,242'; // line pair +$colorbacklinepair2='248,248,248'; // line pair +$colorbacklinepairhover='238,246,252'; // line pair $colorbackbody='255,255,255'; -$colortext='40,40,40'; +$colortext='50,50,130'; $fontsize='13'; $fontsizesmaller='11'; $usegradient=1; -// Eldy colors +// Case of option always editable +if (! isset($conf->global->THEME_ELDY_TOPMENU_BACK1)) $conf->global->THEME_ELDY_TOPMENU_BACK1=join(',',colorStringToArray('#37474F')); // topmenu (140,160,185) +if (! isset($conf->global->THEME_ELDY_BACKTITLE1)) $conf->global->THEME_ELDY_BACKTITLE1='140,150,180'; // title of arrays TO MATCH ELDY (140,160,185) +//if (! isset($conf->global->THEME_ELDY_BACKTITLE1)) $conf->global->THEME_ELDY_BACKTITLE1='230,230,230'; // title of arrays TO MATCH BOOTSTRAP +//if (! isset($conf->global->THEME_ELDY_USE_HOVER)) $conf->global->THEME_ELDY_USE_HOVER=''; // color for links + +// Fields not yet editable by default if (empty($conf->global->THEME_ELDY_ENABLE_PERSONALIZED)) { - // Case of option always editable - if (! isset($conf->global->THEME_ELDY_TOPMENU_BACK1)) $conf->global->THEME_ELDY_TOPMENU_BACK1='140,150,180'; // topmenu (140,160,185) - if (! isset($conf->global->THEME_ELDY_BACKTITLE1)) $conf->global->THEME_ELDY_BACKTITLE1='140,150,180'; // title of arrays TO MATCH ELDY (140,160,185) - //if (! isset($conf->global->THEME_ELDY_BACKTITLE1)) $conf->global->THEME_ELDY_BACKTITLE1='230,230,230'; // title of arrays TO MATCH BOOTSTRAP - + // Cas of option editable if option THEME_ELDY_ENABLE_PERSONALIZED is on // 90A4AE, 607D8B, 455A64, 37474F - $conf->global->THEME_ELDY_TOPMENU_BACK1=join(',',colorStringToArray('#37474F')); // topmenu #607D8B - $conf->global->THEME_ELDY_TOPMENU_BACK2='236,236,236'; $conf->global->THEME_ELDY_VERMENU_BACK1='255,255,255'; // vmenu - $conf->global->THEME_ELDY_VERMENU_BACK2='240,240,240'; - $conf->global->THEME_ELDY_BACKTITLE2='230,230,230'; $conf->global->THEME_ELDY_BACKTABCARD1='255,255,255'; // card - $conf->global->THEME_ELDY_BACKTABCARD2='234,234,234'; $conf->global->THEME_ELDY_BACKTABACTIVE='234,234,234'; - $conf->global->THEME_ELDY_BACKBODY='255,255,255'; + $conf->global->THEME_ELDY_LINEIMPAIR1='255,255,255'; + $conf->global->THEME_ELDY_LINEIMPAIR2='255,255,255'; $conf->global->THEME_ELDY_LINEPAIR1='242,242,242'; $conf->global->THEME_ELDY_LINEPAIR2='248,248,248'; $conf->global->THEME_ELDY_LINEPAIRHOVER='238,246,252'; - $conf->global->THEME_ELDY_LINEIMPAIR1='255,255,255'; - $conf->global->THEME_ELDY_LINEIMPAIR2='255,255,255'; - $conf->global->THEME_ELDY_LINEIMPAIRHOVER='238,246,252'; + $conf->global->THEME_ELDY_USE_HOVER=='238,246,252'; + $conf->global->THEME_ELDY_BACKBODY='255,255,255'; + $conf->global->THEME_ELDY_TEXT='50,50,130'; $conf->global->THEME_ELDY_FONT_SIZE1='13'; $conf->global->THEME_ELDY_FONT_SIZE2='11'; } +//var_dump($conf->global->THEME_ELDY_BACKBODY); +//var_dump($user->conf->THEME_ELDY_BACKTITLE1); -// Cas of option availables only if THEME_ELDY_ENABLE_PERSONALIZED is on +// Case of option availables only if THEME_ELDY_ENABLE_PERSONALIZED is on $colorbackhmenu1 =empty($user->conf->THEME_ELDY_ENABLE_PERSONALIZED)?(empty($conf->global->THEME_ELDY_TOPMENU_BACK1)?$colorbackhmenu1:$conf->global->THEME_ELDY_TOPMENU_BACK1) :(empty($user->conf->THEME_ELDY_TOPMENU_BACK1)?$colorbackhmenu1:$user->conf->THEME_ELDY_TOPMENU_BACK1); -$colorbackhmenu2 =empty($user->conf->THEME_ELDY_ENABLE_PERSONALIZED)?(empty($conf->global->THEME_ELDY_TOPMENU_BACK2)?$colorbackhmenu2:$conf->global->THEME_ELDY_TOPMENU_BACK2) :(empty($user->conf->THEME_ELDY_TOPMENU_BACK2)?$colorbackhmenu2:$user->conf->THEME_ELDY_TOPMENU_BACK2); $colorbackvmenu1 =empty($user->conf->THEME_ELDY_ENABLE_PERSONALIZED)?(empty($conf->global->THEME_ELDY_VERMENU_BACK1)?$colorbackvmenu1:$conf->global->THEME_ELDY_VERMENU_BACK1) :(empty($user->conf->THEME_ELDY_VERMENU_BACK1)?$colorbackvmenu1:$user->conf->THEME_ELDY_VERMENU_BACK1); -$colorbackvmenu2 =empty($user->conf->THEME_ELDY_ENABLE_PERSONALIZED)?(empty($conf->global->THEME_ELDY_VERMENU_BACK2)?$colorbackvmenu2:$conf->global->THEME_ELDY_VERMENU_BACK2) :(empty($user->conf->THEME_ELDY_VERMENU_BACK2)?$colorbackvmenu2:$user->conf->THEME_ELDY_VERMENU_BACK2); $colorbacktitle1 =empty($user->conf->THEME_ELDY_ENABLE_PERSONALIZED)?(empty($conf->global->THEME_ELDY_BACKTITLE1) ?$colorbacktitle1:$conf->global->THEME_ELDY_BACKTITLE1) :(empty($user->conf->THEME_ELDY_BACKTITLE1)?$colorbacktitle1:$user->conf->THEME_ELDY_BACKTITLE1); -$colorbacktitle2 =empty($user->conf->THEME_ELDY_ENABLE_PERSONALIZED)?(empty($conf->global->THEME_ELDY_BACKTITLE2) ?$colorbacktitle2:$conf->global->THEME_ELDY_BACKTITLE2) :(empty($user->conf->THEME_ELDY_BACKTITLE2)?$colorbacktitle2:$user->conf->THEME_ELDY_BACKTITLE2); $colorbacktabcard1 =empty($user->conf->THEME_ELDY_ENABLE_PERSONALIZED)?(empty($conf->global->THEME_ELDY_BACKTABCARD1) ?$colorbacktabcard1:$conf->global->THEME_ELDY_BACKTABCARD1) :(empty($user->conf->THEME_ELDY_BACKTABCARD1)?$colorbacktabcard1:$user->conf->THEME_ELDY_BACKTABCARD1); -$colorbacktabcard2 =empty($user->conf->THEME_ELDY_ENABLE_PERSONALIZED)?(empty($conf->global->THEME_ELDY_BACKTABCARD2) ?$colorbacktabcard2:$conf->global->THEME_ELDY_BACKTABCARD2) :(empty($user->conf->THEME_ELDY_BACKTABCARD2)?$colorbacktabcard2:$user->conf->THEME_ELDY_BACKTABCARD2); $colorbacktabactive =empty($user->conf->THEME_ELDY_ENABLE_PERSONALIZED)?(empty($conf->global->THEME_ELDY_BACKTABACTIVE)?$colorbacktabactive:$conf->global->THEME_ELDY_BACKTABACTIVE):(empty($user->conf->THEME_ELDY_BACKTABACTIVE)?$colorbacktabactive:$user->conf->THEME_ELDY_BACKTABACTIVE); $colorbacklineimpair1=empty($user->conf->THEME_ELDY_ENABLE_PERSONALIZED)?(empty($conf->global->THEME_ELDY_LINEIMPAIR1) ?$colorbacklineimpair1:$conf->global->THEME_ELDY_LINEIMPAIR1):(empty($user->conf->THEME_ELDY_LINEIMPAIR1)?$colorbacklineimpair1:$user->conf->THEME_ELDY_LINEIMPAIR1); $colorbacklineimpair2=empty($user->conf->THEME_ELDY_ENABLE_PERSONALIZED)?(empty($conf->global->THEME_ELDY_LINEIMPAIR2) ?$colorbacklineimpair2:$conf->global->THEME_ELDY_LINEIMPAIR2):(empty($user->conf->THEME_ELDY_LINEIMPAIR2)?$colorbacklineimpair2:$user->conf->THEME_ELDY_LINEIMPAIR2); -$colorbacklineimpairhover=empty($user->conf->THEME_ELDY_ENABLE_PERSONALIZED)?(empty($conf->global->THEME_ELDY_LINEIMPAIRHOVER) ?$colorbacklineimpairhover:$conf->global->THEME_ELDY_LINEIMPAIRHOVER):(empty($user->conf->THEME_ELDY_LINEIMPAIRHOVER)?$colorbacklineimpairhover:$user->conf->THEME_ELDY_LINEIMPAIRHOVER); $colorbacklinepair1 =empty($user->conf->THEME_ELDY_ENABLE_PERSONALIZED)?(empty($conf->global->THEME_ELDY_LINEPAIR1) ?$colorbacklinepair1:$conf->global->THEME_ELDY_LINEPAIR1) :(empty($user->conf->THEME_ELDY_LINEPAIR1)?$colorbacklinepair1:$user->conf->THEME_ELDY_LINEPAIR1); $colorbacklinepair2 =empty($user->conf->THEME_ELDY_ENABLE_PERSONALIZED)?(empty($conf->global->THEME_ELDY_LINEPAIR2) ?$colorbacklinepair2:$conf->global->THEME_ELDY_LINEPAIR2) :(empty($user->conf->THEME_ELDY_LINEPAIR2)?$colorbacklinepair2:$user->conf->THEME_ELDY_LINEPAIR2); $colorbacklinepairhover =empty($user->conf->THEME_ELDY_ENABLE_PERSONALIZED)?(empty($conf->global->THEME_ELDY_LINEPAIRHOVER) ?$colorbacklinepairhover:$conf->global->THEME_ELDY_LINEPAIRHOVER) :(empty($user->conf->THEME_ELDY_LINEPAIRHOVER)?$colorbacklinepairhover:$user->conf->THEME_ELDY_LINEPAIRHOVER); @@ -162,22 +141,26 @@ $colortext =empty($user->conf->THEME_ELDY_ENABLE_PERSONALIZED)?(empty( $fontsize =empty($user->conf->THEME_ELDY_ENABLE_PERSONALIZED)?(empty($conf->global->THEME_ELDY_FONT_SIZE1) ?$fontsize:$conf->global->THEME_ELDY_FONT_SIZE1) :(empty($user->conf->THEME_ELDY_FONT_SIZE1)?$fontsize:$user->conf->THEME_ELDY_FONT_SIZE1); $fontsizesmaller =empty($user->conf->THEME_ELDY_ENABLE_PERSONALIZED)?(empty($conf->global->THEME_ELDY_FONT_SIZE2) ?$fontsize:$conf->global->THEME_ELDY_FONT_SIZE2) :(empty($user->conf->THEME_ELDY_FONT_SIZE2)?$fontsize:$user->conf->THEME_ELDY_FONT_SIZE2); -// Hover can be disabled with THEME_ELDY_USE_HOVER=0 -if ((! empty($user->conf->THEME_ELDY_ENABLE_PERSONALIZED) && (isset($user->conf->THEME_ELDY_USE_HOVER) && $user->conf->THEME_ELDY_USE_HOVER == '0')) - || (empty($user->conf->THEME_ELDY_ENABLE_PERSONALIZED) && (isset($conf->global->THEME_ELDY_USE_HOVER) && $conf->global->THEME_ELDY_USE_HOVER == '0'))) +// Hover color +$colorbacklinepairhover=((! isset($conf->global->THEME_ELDY_USE_HOVER) || (string) $conf->global->THEME_ELDY_USE_HOVER === '0')?'':($conf->global->THEME_ELDY_USE_HOVER === '1'?'edf4fb':$conf->global->THEME_ELDY_USE_HOVER)); +if (! empty($user->conf->THEME_ELDY_ENABLE_PERSONALIZED)) { - $colorbacklineimpairhover=''; - $colorbacklinepairhover=''; + $colorbacklinepairhover=((! isset($user->conf->THEME_ELDY_USE_HOVER) || $user->conf->THEME_ELDY_USE_HOVER === '0')?'':($user->conf->THEME_ELDY_USE_HOVER === '1'?'edf4fb':$user->conf->THEME_ELDY_USE_HOVER)); } // Format color value to match expected format (may be 'FFFFFF' or '255,255,255') -$colorbackbody=join(',',colorStringToArray($colorbackbody)); $colorbackhmenu1=join(',',colorStringToArray($colorbackhmenu1)); -$colorbackhmenu2=join(',',colorStringToArray($colorbackhmenu2)); $colorbackvmenu1=join(',',colorStringToArray($colorbackvmenu1)); -$colorbackvmenu2=join(',',colorStringToArray($colorbackvmenu2)); +$colorbacktitle1=join(',',colorStringToArray($colorbacktitle1)); $colorbacktabcard1=join(',',colorStringToArray($colorbacktabcard1)); -$colorbacktabcard2=join(',',colorStringToArray($colorbacktabcard2)); +$colorbacktabactive=join(',',colorStringToArray($colorbacktabactive)); +$colorbacklineimpair1=join(',',colorStringToArray($colorbacklineimpair1)); +$colorbacklineimpair2=join(',',colorStringToArray($colorbacklineimpair2)); +$colorbacklinepair1=join(',',colorStringToArray($colorbacklinepair1)); +$colorbacklinepair2=join(',',colorStringToArray($colorbacklinepair2)); +if ($colorbacklinepairhover != '') $colorbacklinepairhover=join(',',colorStringToArray($colorbacklinepairhover)); +$colorbackbody=join(',',colorStringToArray($colorbackbody)); +$colortext=join(',',colorStringToArray($colorbackvmenu1)); // Set text color to black or white $tmppart=explode(',',$colorbackhmenu1); @@ -199,15 +182,12 @@ else { $colortextbacktab='111'; } print '/*'."\n"; -print 'colred='.$colred.' colgreen='.$colgreen.' colblue='.$colblue."\n"; -print 'isred='.$isred.' isgreen='.$isgreen.' isblue='.$isblue."\n"; print 'colorbackbody='.$colorbackbody."\n"; print 'colorbackvmenu1='.$colorbackvmenu1."\n"; print 'colorbackhmenu1='.$colorbackhmenu1."\n"; print 'colorbacktitle1='.$colorbacktitle1."\n"; print 'colorbacklineimpair1='.$colorbacklineimpair1."\n"; print 'colorbacklineimpair2='.$colorbacklineimpair2."\n"; -print 'colorbacklineimpairhover='.$colorbacklineimpairhover."\n"; print 'colorbacklinepair1='.$colorbacklinepair1."\n"; print 'colorbacklinepair2='.$colorbacklinepair2."\n"; print 'colorbacklinepairhover='.$colorbacklinepairhover."\n"; @@ -646,8 +626,8 @@ div.ficheaddleft { else print "margin-top: 10px;\n"; ?> } .containercenter { -display : table; -margin : 0px auto; + display : table; + margin : 0px auto; } #pictotitle { @@ -1011,14 +991,9 @@ form#login { border:solid 1px rgba(80,80,80,.4); border-top:solid 1px f8f8f8; - /* - background-color: #f8f8f8; - background-image: -o-linear-gradient(top, rgba(250,250,250,.6) 0%, rgba(192,192,192,.3) 100%); - background-image: -moz-linear-gradient(top, rgba(250,250,250,.6) 0%, rgba(192,192,192,.3) 100%); - background-image: -webkit-linear-gradient(top, rgba(250,250,250,.6) 0%, rgba(192,192,192,.3) 100%); - background-image: -ms-linear-gradient(top, rgba(250,250,250,.6) 0%, rgba(192,192,192,.3) 100%); - background-image: linear-gradient(top, rgba(250,250,250,.6) 0%, rgba(192,192,192,.3) 100%); - */ +} +.login_main_message { + text-align: center; } div#login_left, div#login_right { display: inline-block; @@ -1854,7 +1829,7 @@ table.noborder, table.formdoc, div.noborder { border-spacing: 0px; border-width: 1px; - border-color: #CCC; + border-color: #BBB; border-style: solid; margin: 0px 0px 2px 0px; @@ -1944,6 +1919,16 @@ table.liste td { .tagtd, .table-border-col, .table-key-border-col, .table-val-border-col { display: table-cell; } /* Pagination */ +div.refidpadding { + padding-top: dol_use_jmobile)?'8':'12'; ?>px; +} +div.refid { + padding-top: dol_use_jmobile)?'5':'12'; ?>px; + font-weight: bold; + color: #766; + font-size: 120%; +} + div.pagination { float: right; } @@ -1962,8 +1947,10 @@ div.pagination li { display: inline-block; padding-left: 0px; padding-right: 0px; +dol_use_jmobile)) { ?> padding-top: 6px; - padding-bottom: 6px; + padding-bottom: 5px; + } .pagination { display: inline-block; @@ -1971,15 +1958,46 @@ div.pagination li { border-radius: 4px; } -div.pagination li a, -div.pagination li span { - /*position: relative;*/ - /*float: left;*/ +div.pagination li.pagination a, +div.pagination li.pagination span { +dol_use_jmobile)) { ?> padding: 6px 12px; margin-left: -1px; line-height: 1.42857143; color: #000; text-decoration: none; + + background-color: #f5f5f5; + background-image: -moz-linear-gradient(top, #ffffff, #e6e6e6); + background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6)); + background-image: -webkit-linear-gradient(top, #ffffff, #e6e6e6); + background-image: -o-linear-gradient(top, #ffffff, #e6e6e6); + background-image: linear-gradient(to bottom, #ffffff, #e6e6e6); + background-repeat: repeat-x; + +} +div.pagination li.pagination span.inactive { + cursor: default; +} +div.pagination li.litext a { +border: none; + padding-right: 10px; + padding-left: 4px; + font-weight: bold; +} +dol_use_jmobile)) { ?> +div.pagination li.litext { + padding-top: 13px; + vertical-align: top; +} + +dol_use_jmobile)) { ?> +div.pagination li.noborder a:hover { + border: none; + background-color: transparent; +} +div.pagination li a, +div.pagination li span { background-color: #fff; border: 1px solid #ddd; } @@ -2025,6 +2043,7 @@ div.pagination .disabled a:focus { background-color: #fff; border-color: #ddd; } + div.pagination li.pagination .active { text-decoration: underline; } @@ -2062,10 +2081,10 @@ div.pagination li.paginationafterarrows { /* Set the color for hover lines */ .odd:hover, .impair:hover, .even:hover, .pair:hover, .even:hover, .pair:hover, table.dataTable tr.even:hover, table.dataTable tr.odd:hover, .box_pair:hover, .box_impair:hover { - - background: rgb() !important; + + background: rgb() !important; - background: rgba(0, 0, 0, 0.05) !important; + /* background: rgba(0, 0, 0, 0.05) !important; */ } diff --git a/htdocs/theme/md/thumb.png b/htdocs/theme/md/thumb.png new file mode 100644 index 00000000000..97102ab78ca Binary files /dev/null and b/htdocs/theme/md/thumb.png differ diff --git a/htdocs/theme/amarok/tpl/README b/htdocs/theme/md/tpl/README old mode 100755 new mode 100644 similarity index 100% rename from htdocs/theme/amarok/tpl/README rename to htdocs/theme/md/tpl/README diff --git a/htdocs/theme/auguria/ckeditor/index.html b/htdocs/theme/md/tpl/index.html similarity index 100% rename from htdocs/theme/auguria/ckeditor/index.html rename to htdocs/theme/md/tpl/index.html diff --git a/htdocs/theme/md_exp/AUTHOR b/htdocs/theme/md_exp/AUTHOR deleted file mode 100644 index f04e8a95239..00000000000 --- a/htdocs/theme/md_exp/AUTHOR +++ /dev/null @@ -1 +0,0 @@ -2003-2004 Laurent Destailleur diff --git a/htdocs/theme/md_exp/ckeditor/index.html b/htdocs/theme/md_exp/ckeditor/index.html deleted file mode 100644 index e69de29bb2d..00000000000 diff --git a/htdocs/theme/md_exp/img/1downarrow.png b/htdocs/theme/md_exp/img/1downarrow.png deleted file mode 100644 index 1d134ab3e4e..00000000000 Binary files a/htdocs/theme/md_exp/img/1downarrow.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/1downarrow_selected.png b/htdocs/theme/md_exp/img/1downarrow_selected.png deleted file mode 100644 index 5caf8ead52d..00000000000 Binary files a/htdocs/theme/md_exp/img/1downarrow_selected.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/1leftarrow.png b/htdocs/theme/md_exp/img/1leftarrow.png deleted file mode 100644 index 554cdc3d76c..00000000000 Binary files a/htdocs/theme/md_exp/img/1leftarrow.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/1leftarrow_selected.png b/htdocs/theme/md_exp/img/1leftarrow_selected.png deleted file mode 100644 index 554cdc3d76c..00000000000 Binary files a/htdocs/theme/md_exp/img/1leftarrow_selected.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/1rightarrow.png b/htdocs/theme/md_exp/img/1rightarrow.png deleted file mode 100644 index 95fdc377ee9..00000000000 Binary files a/htdocs/theme/md_exp/img/1rightarrow.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/1rightarrow_selected.png b/htdocs/theme/md_exp/img/1rightarrow_selected.png deleted file mode 100644 index 95fdc377ee9..00000000000 Binary files a/htdocs/theme/md_exp/img/1rightarrow_selected.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/1uparrow.png b/htdocs/theme/md_exp/img/1uparrow.png deleted file mode 100644 index 70ea061dc5e..00000000000 Binary files a/htdocs/theme/md_exp/img/1uparrow.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/1uparrow_selected.png b/htdocs/theme/md_exp/img/1uparrow_selected.png deleted file mode 100644 index 36d25a408c5..00000000000 Binary files a/htdocs/theme/md_exp/img/1uparrow_selected.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/1updownarrow.png b/htdocs/theme/md_exp/img/1updownarrow.png deleted file mode 100644 index 871ac1c1f29..00000000000 Binary files a/htdocs/theme/md_exp/img/1updownarrow.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/addfile.png b/htdocs/theme/md_exp/img/addfile.png deleted file mode 100644 index 1cb7af0ad8a..00000000000 Binary files a/htdocs/theme/md_exp/img/addfile.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/button_bg.png b/htdocs/theme/md_exp/img/button_bg.png deleted file mode 100644 index 7e8a806b28f..00000000000 Binary files a/htdocs/theme/md_exp/img/button_bg.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/button_edit.png b/htdocs/theme/md_exp/img/button_edit.png deleted file mode 100644 index 894b4cfd78e..00000000000 Binary files a/htdocs/theme/md_exp/img/button_edit.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/calc.png b/htdocs/theme/md_exp/img/calc.png deleted file mode 100644 index 5e6471408d8..00000000000 Binary files a/htdocs/theme/md_exp/img/calc.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/calendar.png b/htdocs/theme/md_exp/img/calendar.png deleted file mode 100644 index bbe6c27f041..00000000000 Binary files a/htdocs/theme/md_exp/img/calendar.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/call.png b/htdocs/theme/md_exp/img/call.png deleted file mode 100644 index ddfc1b7bd90..00000000000 Binary files a/htdocs/theme/md_exp/img/call.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/call_out.png b/htdocs/theme/md_exp/img/call_out.png deleted file mode 100644 index b5a22eb827b..00000000000 Binary files a/htdocs/theme/md_exp/img/call_out.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/close.png b/htdocs/theme/md_exp/img/close.png deleted file mode 100644 index ec4338e8bca..00000000000 Binary files a/htdocs/theme/md_exp/img/close.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/close_title.png b/htdocs/theme/md_exp/img/close_title.png deleted file mode 100644 index bebb74d9861..00000000000 Binary files a/htdocs/theme/md_exp/img/close_title.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/delete.png b/htdocs/theme/md_exp/img/delete.png deleted file mode 100644 index 8ad73597be7..00000000000 Binary files a/htdocs/theme/md_exp/img/delete.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/detail.png b/htdocs/theme/md_exp/img/detail.png deleted file mode 100644 index 05562bef842..00000000000 Binary files a/htdocs/theme/md_exp/img/detail.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/disable.png b/htdocs/theme/md_exp/img/disable.png deleted file mode 100644 index f8c84994d47..00000000000 Binary files a/htdocs/theme/md_exp/img/disable.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/edit.png b/htdocs/theme/md_exp/img/edit.png deleted file mode 100644 index 4e916fe1fb0..00000000000 Binary files a/htdocs/theme/md_exp/img/edit.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/edit_add.png b/htdocs/theme/md_exp/img/edit_add.png deleted file mode 100644 index ae205e9d770..00000000000 Binary files a/htdocs/theme/md_exp/img/edit_add.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/edit_remove.png b/htdocs/theme/md_exp/img/edit_remove.png deleted file mode 100644 index bc4bdb360fa..00000000000 Binary files a/htdocs/theme/md_exp/img/edit_remove.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/editdelete.png b/htdocs/theme/md_exp/img/editdelete.png deleted file mode 100644 index f8c84994d47..00000000000 Binary files a/htdocs/theme/md_exp/img/editdelete.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/error.png b/htdocs/theme/md_exp/img/error.png deleted file mode 100644 index f41dd8a3bc0..00000000000 Binary files a/htdocs/theme/md_exp/img/error.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/favicon.ico b/htdocs/theme/md_exp/img/favicon.ico deleted file mode 100644 index b93a86747d6..00000000000 Binary files a/htdocs/theme/md_exp/img/favicon.ico and /dev/null differ diff --git a/htdocs/theme/md_exp/img/file.png b/htdocs/theme/md_exp/img/file.png deleted file mode 100644 index 73c66e9b2b3..00000000000 Binary files a/htdocs/theme/md_exp/img/file.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/filenew.png b/htdocs/theme/md_exp/img/filenew.png deleted file mode 100644 index 8680cce82bf..00000000000 Binary files a/htdocs/theme/md_exp/img/filenew.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/filter.png b/htdocs/theme/md_exp/img/filter.png deleted file mode 100644 index 917715107bd..00000000000 Binary files a/htdocs/theme/md_exp/img/filter.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/folder-open.png b/htdocs/theme/md_exp/img/folder-open.png deleted file mode 100644 index 1db8369b3d5..00000000000 Binary files a/htdocs/theme/md_exp/img/folder-open.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/folder.png b/htdocs/theme/md_exp/img/folder.png deleted file mode 100644 index 04a24af2e22..00000000000 Binary files a/htdocs/theme/md_exp/img/folder.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/gradient.gif b/htdocs/theme/md_exp/img/gradient.gif deleted file mode 100644 index d9d7c1086cd..00000000000 Binary files a/htdocs/theme/md_exp/img/gradient.gif and /dev/null differ diff --git a/htdocs/theme/md_exp/img/grip.png b/htdocs/theme/md_exp/img/grip.png deleted file mode 100644 index 8053007e9dd..00000000000 Binary files a/htdocs/theme/md_exp/img/grip.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/grip_title.png b/htdocs/theme/md_exp/img/grip_title.png deleted file mode 100644 index d6ecce335cb..00000000000 Binary files a/htdocs/theme/md_exp/img/grip_title.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/headbg.jpg b/htdocs/theme/md_exp/img/headbg.jpg deleted file mode 100644 index 160821354cc..00000000000 Binary files a/htdocs/theme/md_exp/img/headbg.jpg and /dev/null differ diff --git a/htdocs/theme/md_exp/img/headbg2.jpg b/htdocs/theme/md_exp/img/headbg2.jpg deleted file mode 100644 index 0bc44f0ea99..00000000000 Binary files a/htdocs/theme/md_exp/img/headbg2.jpg and /dev/null differ diff --git a/htdocs/theme/md_exp/img/help.png b/htdocs/theme/md_exp/img/help.png deleted file mode 100644 index 12e6cd655d6..00000000000 Binary files a/htdocs/theme/md_exp/img/help.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/helpdoc.png b/htdocs/theme/md_exp/img/helpdoc.png deleted file mode 100644 index 8cd950e7be1..00000000000 Binary files a/htdocs/theme/md_exp/img/helpdoc.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/high.png b/htdocs/theme/md_exp/img/high.png deleted file mode 100644 index c0eaee6542f..00000000000 Binary files a/htdocs/theme/md_exp/img/high.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/history.png b/htdocs/theme/md_exp/img/history.png deleted file mode 100644 index 0fa4283476b..00000000000 Binary files a/htdocs/theme/md_exp/img/history.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/index.html b/htdocs/theme/md_exp/img/index.html deleted file mode 100644 index e69de29bb2d..00000000000 diff --git a/htdocs/theme/md_exp/img/info.png b/htdocs/theme/md_exp/img/info.png deleted file mode 100644 index 12e6cd655d6..00000000000 Binary files a/htdocs/theme/md_exp/img/info.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/lock.png b/htdocs/theme/md_exp/img/lock.png deleted file mode 100644 index 3d99cf1eaef..00000000000 Binary files a/htdocs/theme/md_exp/img/lock.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/login_background.png b/htdocs/theme/md_exp/img/login_background.png deleted file mode 100644 index facc2c6f442..00000000000 Binary files a/htdocs/theme/md_exp/img/login_background.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/logout.png b/htdocs/theme/md_exp/img/logout.png deleted file mode 100644 index 26ae717bc1a..00000000000 Binary files a/htdocs/theme/md_exp/img/logout.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/menus/index.html b/htdocs/theme/md_exp/img/menus/index.html deleted file mode 100644 index e69de29bb2d..00000000000 diff --git a/htdocs/theme/md_exp/img/next.png b/htdocs/theme/md_exp/img/next.png deleted file mode 100644 index 953731ca934..00000000000 Binary files a/htdocs/theme/md_exp/img/next.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/object_account.png b/htdocs/theme/md_exp/img/object_account.png deleted file mode 100644 index 46be8b6fe0f..00000000000 Binary files a/htdocs/theme/md_exp/img/object_account.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/object_accounting.png b/htdocs/theme/md_exp/img/object_accounting.png deleted file mode 100644 index b5600221f02..00000000000 Binary files a/htdocs/theme/md_exp/img/object_accounting.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/object_action_rdv.png b/htdocs/theme/md_exp/img/object_action_rdv.png deleted file mode 100644 index 25edfa85b45..00000000000 Binary files a/htdocs/theme/md_exp/img/object_action_rdv.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/object_barcode.png b/htdocs/theme/md_exp/img/object_barcode.png deleted file mode 100644 index 6f1931ab96c..00000000000 Binary files a/htdocs/theme/md_exp/img/object_barcode.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/object_bill.png b/htdocs/theme/md_exp/img/object_bill.png deleted file mode 100644 index b4022e77740..00000000000 Binary files a/htdocs/theme/md_exp/img/object_bill.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/object_billa.png b/htdocs/theme/md_exp/img/object_billa.png deleted file mode 100644 index 93564621d7a..00000000000 Binary files a/htdocs/theme/md_exp/img/object_billa.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/object_billd.png b/htdocs/theme/md_exp/img/object_billd.png deleted file mode 100644 index 2080958f0fb..00000000000 Binary files a/htdocs/theme/md_exp/img/object_billd.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/object_billr.png b/htdocs/theme/md_exp/img/object_billr.png deleted file mode 100644 index 7a9692a0804..00000000000 Binary files a/htdocs/theme/md_exp/img/object_billr.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/object_book.png b/htdocs/theme/md_exp/img/object_book.png deleted file mode 100644 index 85097420728..00000000000 Binary files a/htdocs/theme/md_exp/img/object_book.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/object_calendar.png b/htdocs/theme/md_exp/img/object_calendar.png deleted file mode 100644 index 8cda1f3f220..00000000000 Binary files a/htdocs/theme/md_exp/img/object_calendar.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/object_calendarday.png b/htdocs/theme/md_exp/img/object_calendarday.png deleted file mode 100644 index 5678cdd2411..00000000000 Binary files a/htdocs/theme/md_exp/img/object_calendarday.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/object_calendarweek.png b/htdocs/theme/md_exp/img/object_calendarweek.png deleted file mode 100644 index 4ea2c09ccc9..00000000000 Binary files a/htdocs/theme/md_exp/img/object_calendarweek.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/object_category-expanded.png b/htdocs/theme/md_exp/img/object_category-expanded.png deleted file mode 100644 index 8168f76fa26..00000000000 Binary files a/htdocs/theme/md_exp/img/object_category-expanded.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/object_category.png b/htdocs/theme/md_exp/img/object_category.png deleted file mode 100644 index aaea38dbef2..00000000000 Binary files a/htdocs/theme/md_exp/img/object_category.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/object_commercial.png b/htdocs/theme/md_exp/img/object_commercial.png deleted file mode 100644 index 36cdcc8d4a2..00000000000 Binary files a/htdocs/theme/md_exp/img/object_commercial.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/object_company.png b/htdocs/theme/md_exp/img/object_company.png deleted file mode 100644 index 2a582b8bd4c..00000000000 Binary files a/htdocs/theme/md_exp/img/object_company.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/object_contact.png b/htdocs/theme/md_exp/img/object_contact.png deleted file mode 100644 index e98202b367d..00000000000 Binary files a/htdocs/theme/md_exp/img/object_contact.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/object_contact_all.png b/htdocs/theme/md_exp/img/object_contact_all.png deleted file mode 100644 index f571504b246..00000000000 Binary files a/htdocs/theme/md_exp/img/object_contact_all.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/object_contract.png b/htdocs/theme/md_exp/img/object_contract.png deleted file mode 100644 index a75f954555e..00000000000 Binary files a/htdocs/theme/md_exp/img/object_contract.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/object_cron.png b/htdocs/theme/md_exp/img/object_cron.png deleted file mode 100644 index 6186d18da70..00000000000 Binary files a/htdocs/theme/md_exp/img/object_cron.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/object_dir.png b/htdocs/theme/md_exp/img/object_dir.png deleted file mode 100644 index 6f364389133..00000000000 Binary files a/htdocs/theme/md_exp/img/object_dir.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/object_email.png b/htdocs/theme/md_exp/img/object_email.png deleted file mode 100644 index d5cd141733d..00000000000 Binary files a/htdocs/theme/md_exp/img/object_email.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/object_energie.png b/htdocs/theme/md_exp/img/object_energie.png deleted file mode 100644 index bc3966d2fa2..00000000000 Binary files a/htdocs/theme/md_exp/img/object_energie.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/object_generic.png b/htdocs/theme/md_exp/img/object_generic.png deleted file mode 100644 index ccfd2d2f5b2..00000000000 Binary files a/htdocs/theme/md_exp/img/object_generic.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/object_globe.png b/htdocs/theme/md_exp/img/object_globe.png deleted file mode 100644 index aae8bf6eba0..00000000000 Binary files a/htdocs/theme/md_exp/img/object_globe.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/object_gravatar.png b/htdocs/theme/md_exp/img/object_gravatar.png deleted file mode 100644 index 42bccdc4339..00000000000 Binary files a/htdocs/theme/md_exp/img/object_gravatar.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/object_group.png b/htdocs/theme/md_exp/img/object_group.png deleted file mode 100644 index 552eb39fa31..00000000000 Binary files a/htdocs/theme/md_exp/img/object_group.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/object_holiday.png b/htdocs/theme/md_exp/img/object_holiday.png deleted file mode 100644 index fdc1dd8e22b..00000000000 Binary files a/htdocs/theme/md_exp/img/object_holiday.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/object_intervention.png b/htdocs/theme/md_exp/img/object_intervention.png deleted file mode 100644 index 7bb7ef583b4..00000000000 Binary files a/htdocs/theme/md_exp/img/object_intervention.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/object_invoice.png b/htdocs/theme/md_exp/img/object_invoice.png deleted file mode 100644 index b4022e77740..00000000000 Binary files a/htdocs/theme/md_exp/img/object_invoice.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/object_label.png b/htdocs/theme/md_exp/img/object_label.png deleted file mode 100644 index b112af5cf0a..00000000000 Binary files a/htdocs/theme/md_exp/img/object_label.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/object_list.png b/htdocs/theme/md_exp/img/object_list.png deleted file mode 100644 index 1ceb098d9cc..00000000000 Binary files a/htdocs/theme/md_exp/img/object_list.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/object_margin.png b/htdocs/theme/md_exp/img/object_margin.png deleted file mode 100644 index cd0eb4109f7..00000000000 Binary files a/htdocs/theme/md_exp/img/object_margin.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/object_opensurvey.png b/htdocs/theme/md_exp/img/object_opensurvey.png deleted file mode 100644 index b5de3223bd4..00000000000 Binary files a/htdocs/theme/md_exp/img/object_opensurvey.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/object_order.png b/htdocs/theme/md_exp/img/object_order.png deleted file mode 100644 index 20a1ddb6131..00000000000 Binary files a/htdocs/theme/md_exp/img/object_order.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/object_payment.png b/htdocs/theme/md_exp/img/object_payment.png deleted file mode 100644 index 5691147d8ff..00000000000 Binary files a/htdocs/theme/md_exp/img/object_payment.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/object_product.png b/htdocs/theme/md_exp/img/object_product.png deleted file mode 100644 index 79910e5e214..00000000000 Binary files a/htdocs/theme/md_exp/img/object_product.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/object_project.png b/htdocs/theme/md_exp/img/object_project.png deleted file mode 100644 index fd84ab427db..00000000000 Binary files a/htdocs/theme/md_exp/img/object_project.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/object_projectpub.png b/htdocs/theme/md_exp/img/object_projectpub.png deleted file mode 100644 index 1444573cf05..00000000000 Binary files a/htdocs/theme/md_exp/img/object_projectpub.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/object_projecttask.png b/htdocs/theme/md_exp/img/object_projecttask.png deleted file mode 100644 index 4a01b50435a..00000000000 Binary files a/htdocs/theme/md_exp/img/object_projecttask.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/object_propal.png b/htdocs/theme/md_exp/img/object_propal.png deleted file mode 100644 index 2dc60e66b3e..00000000000 Binary files a/htdocs/theme/md_exp/img/object_propal.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/object_reduc.png b/htdocs/theme/md_exp/img/object_reduc.png deleted file mode 100644 index ccfd2d2f5b2..00000000000 Binary files a/htdocs/theme/md_exp/img/object_reduc.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/object_resource.png b/htdocs/theme/md_exp/img/object_resource.png deleted file mode 100644 index 8cda1f3f220..00000000000 Binary files a/htdocs/theme/md_exp/img/object_resource.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/object_rss.png b/htdocs/theme/md_exp/img/object_rss.png deleted file mode 100644 index 37372031157..00000000000 Binary files a/htdocs/theme/md_exp/img/object_rss.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/object_sending.png b/htdocs/theme/md_exp/img/object_sending.png deleted file mode 100644 index c798ced0b5c..00000000000 Binary files a/htdocs/theme/md_exp/img/object_sending.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/object_service.png b/htdocs/theme/md_exp/img/object_service.png deleted file mode 100644 index 65e9041589f..00000000000 Binary files a/htdocs/theme/md_exp/img/object_service.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/object_skype.png b/htdocs/theme/md_exp/img/object_skype.png deleted file mode 100644 index b209cd8d16e..00000000000 Binary files a/htdocs/theme/md_exp/img/object_skype.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/object_stock.png b/htdocs/theme/md_exp/img/object_stock.png deleted file mode 100644 index 2f439db7b50..00000000000 Binary files a/htdocs/theme/md_exp/img/object_stock.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/object_task.png b/htdocs/theme/md_exp/img/object_task.png deleted file mode 100644 index 14dc14a9602..00000000000 Binary files a/htdocs/theme/md_exp/img/object_task.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/object_technic.png b/htdocs/theme/md_exp/img/object_technic.png deleted file mode 100644 index 6186d18da70..00000000000 Binary files a/htdocs/theme/md_exp/img/object_technic.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/object_trip.png b/htdocs/theme/md_exp/img/object_trip.png deleted file mode 100644 index 95cc4412111..00000000000 Binary files a/htdocs/theme/md_exp/img/object_trip.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/object_user.png b/htdocs/theme/md_exp/img/object_user.png deleted file mode 100644 index d26d8899ee8..00000000000 Binary files a/htdocs/theme/md_exp/img/object_user.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/off.png b/htdocs/theme/md_exp/img/off.png deleted file mode 100644 index f4217646b26..00000000000 Binary files a/htdocs/theme/md_exp/img/off.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/on.png b/htdocs/theme/md_exp/img/on.png deleted file mode 100644 index 728bb393536..00000000000 Binary files a/htdocs/theme/md_exp/img/on.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/pdf2.png b/htdocs/theme/md_exp/img/pdf2.png deleted file mode 100644 index 06634550daa..00000000000 Binary files a/htdocs/theme/md_exp/img/pdf2.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/pdf3.png b/htdocs/theme/md_exp/img/pdf3.png deleted file mode 100644 index f053591bf2d..00000000000 Binary files a/htdocs/theme/md_exp/img/pdf3.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/play.png b/htdocs/theme/md_exp/img/play.png deleted file mode 100644 index 4922ea1ec12..00000000000 Binary files a/htdocs/theme/md_exp/img/play.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/previous.png b/htdocs/theme/md_exp/img/previous.png deleted file mode 100644 index f807a78d281..00000000000 Binary files a/htdocs/theme/md_exp/img/previous.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/printer.png b/htdocs/theme/md_exp/img/printer.png deleted file mode 100644 index 3a5e7b2dfa0..00000000000 Binary files a/htdocs/theme/md_exp/img/printer.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/puce.png b/htdocs/theme/md_exp/img/puce.png deleted file mode 100644 index 8c116b0dc42..00000000000 Binary files a/htdocs/theme/md_exp/img/puce.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/recent.png b/htdocs/theme/md_exp/img/recent.png deleted file mode 100644 index a49fc171c06..00000000000 Binary files a/htdocs/theme/md_exp/img/recent.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/redstar.png b/htdocs/theme/md_exp/img/redstar.png deleted file mode 100644 index 486fd6770a2..00000000000 Binary files a/htdocs/theme/md_exp/img/redstar.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/refresh.png b/htdocs/theme/md_exp/img/refresh.png deleted file mode 100644 index 9994475cdfe..00000000000 Binary files a/htdocs/theme/md_exp/img/refresh.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/reload.png b/htdocs/theme/md_exp/img/reload.png deleted file mode 100644 index a4029f119de..00000000000 Binary files a/htdocs/theme/md_exp/img/reload.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/rightarrow.png b/htdocs/theme/md_exp/img/rightarrow.png deleted file mode 100644 index 2c479d9453b..00000000000 Binary files a/htdocs/theme/md_exp/img/rightarrow.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/search.png b/htdocs/theme/md_exp/img/search.png deleted file mode 100644 index 4c52b1e401e..00000000000 Binary files a/htdocs/theme/md_exp/img/search.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/searchclear.png b/htdocs/theme/md_exp/img/searchclear.png deleted file mode 100644 index 203a85e10c4..00000000000 Binary files a/htdocs/theme/md_exp/img/searchclear.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/sort_desc_disabled.png b/htdocs/theme/md_exp/img/sort_desc_disabled.png deleted file mode 100644 index 89051c2f34f..00000000000 Binary files a/htdocs/theme/md_exp/img/sort_desc_disabled.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/split.png b/htdocs/theme/md_exp/img/split.png deleted file mode 100644 index bb66213f413..00000000000 Binary files a/htdocs/theme/md_exp/img/split.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/star.png b/htdocs/theme/md_exp/img/star.png deleted file mode 100644 index 4b6b4584675..00000000000 Binary files a/htdocs/theme/md_exp/img/star.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/stats.png b/htdocs/theme/md_exp/img/stats.png deleted file mode 100644 index d883f7faea9..00000000000 Binary files a/htdocs/theme/md_exp/img/stats.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/statut0.png b/htdocs/theme/md_exp/img/statut0.png deleted file mode 100644 index d11252783a4..00000000000 Binary files a/htdocs/theme/md_exp/img/statut0.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/statut1.png b/htdocs/theme/md_exp/img/statut1.png deleted file mode 100644 index 558439d282e..00000000000 Binary files a/htdocs/theme/md_exp/img/statut1.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/statut3.png b/htdocs/theme/md_exp/img/statut3.png deleted file mode 100644 index e7515796683..00000000000 Binary files a/htdocs/theme/md_exp/img/statut3.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/statut4.png b/htdocs/theme/md_exp/img/statut4.png deleted file mode 100644 index 6ec1ba55961..00000000000 Binary files a/htdocs/theme/md_exp/img/statut4.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/statut5.png b/htdocs/theme/md_exp/img/statut5.png deleted file mode 100644 index 53264a0515d..00000000000 Binary files a/htdocs/theme/md_exp/img/statut5.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/statut6.png b/htdocs/theme/md_exp/img/statut6.png deleted file mode 100644 index b964afff603..00000000000 Binary files a/htdocs/theme/md_exp/img/statut6.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/statut7.png b/htdocs/theme/md_exp/img/statut7.png deleted file mode 100644 index 8871a45519f..00000000000 Binary files a/htdocs/theme/md_exp/img/statut7.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/statut8.png b/htdocs/theme/md_exp/img/statut8.png deleted file mode 100644 index c24d4a9dac2..00000000000 Binary files a/htdocs/theme/md_exp/img/statut8.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/statut9.png b/htdocs/theme/md_exp/img/statut9.png deleted file mode 100644 index 94b6dabf265..00000000000 Binary files a/htdocs/theme/md_exp/img/statut9.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/stcomm0.png b/htdocs/theme/md_exp/img/stcomm0.png deleted file mode 100644 index b6c11d4569a..00000000000 Binary files a/htdocs/theme/md_exp/img/stcomm0.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/stcomm1.png b/htdocs/theme/md_exp/img/stcomm1.png deleted file mode 100644 index 6bdea492985..00000000000 Binary files a/htdocs/theme/md_exp/img/stcomm1.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/stcomm2.png b/htdocs/theme/md_exp/img/stcomm2.png deleted file mode 100644 index 9e000b70dc9..00000000000 Binary files a/htdocs/theme/md_exp/img/stcomm2.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/stcomm3.png b/htdocs/theme/md_exp/img/stcomm3.png deleted file mode 100644 index 5a6c0aeface..00000000000 Binary files a/htdocs/theme/md_exp/img/stcomm3.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/stcomm4.png b/htdocs/theme/md_exp/img/stcomm4.png deleted file mode 100644 index 3e26b4d06ed..00000000000 Binary files a/htdocs/theme/md_exp/img/stcomm4.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/switch_off.png b/htdocs/theme/md_exp/img/switch_off.png deleted file mode 100644 index 28a4376fb43..00000000000 Binary files a/htdocs/theme/md_exp/img/switch_off.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/switch_on.png b/htdocs/theme/md_exp/img/switch_on.png deleted file mode 100644 index d4e32d98f57..00000000000 Binary files a/htdocs/theme/md_exp/img/switch_on.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/tab_background.png b/htdocs/theme/md_exp/img/tab_background.png deleted file mode 100644 index 6edd65003e0..00000000000 Binary files a/htdocs/theme/md_exp/img/tab_background.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/tick.png b/htdocs/theme/md_exp/img/tick.png deleted file mode 100644 index 9b035d99511..00000000000 Binary files a/htdocs/theme/md_exp/img/tick.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/title.gif b/htdocs/theme/md_exp/img/title.gif deleted file mode 100644 index c1afa93ae4c..00000000000 Binary files a/htdocs/theme/md_exp/img/title.gif and /dev/null differ diff --git a/htdocs/theme/md_exp/img/title.png b/htdocs/theme/md_exp/img/title.png deleted file mode 100644 index bb48d617379..00000000000 Binary files a/htdocs/theme/md_exp/img/title.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/title_accountancy.png b/htdocs/theme/md_exp/img/title_accountancy.png deleted file mode 100644 index 6e7c2a412c6..00000000000 Binary files a/htdocs/theme/md_exp/img/title_accountancy.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/title_bank.png b/htdocs/theme/md_exp/img/title_bank.png deleted file mode 100644 index 034a8d0c5e4..00000000000 Binary files a/htdocs/theme/md_exp/img/title_bank.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/title_commercial.png b/htdocs/theme/md_exp/img/title_commercial.png deleted file mode 100644 index 46394177698..00000000000 Binary files a/htdocs/theme/md_exp/img/title_commercial.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/title_companies.png b/htdocs/theme/md_exp/img/title_companies.png deleted file mode 100644 index b2539dba849..00000000000 Binary files a/htdocs/theme/md_exp/img/title_companies.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/title_generic.png b/htdocs/theme/md_exp/img/title_generic.png deleted file mode 100644 index ae224327549..00000000000 Binary files a/htdocs/theme/md_exp/img/title_generic.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/title_home.png b/htdocs/theme/md_exp/img/title_home.png deleted file mode 100644 index e9273e727f5..00000000000 Binary files a/htdocs/theme/md_exp/img/title_home.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/title_products.png b/htdocs/theme/md_exp/img/title_products.png deleted file mode 100644 index d3c5b125bbe..00000000000 Binary files a/htdocs/theme/md_exp/img/title_products.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/title_project.png b/htdocs/theme/md_exp/img/title_project.png deleted file mode 100644 index 05d8ea630b8..00000000000 Binary files a/htdocs/theme/md_exp/img/title_project.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/title_setup.png b/htdocs/theme/md_exp/img/title_setup.png deleted file mode 100644 index d7548d28709..00000000000 Binary files a/htdocs/theme/md_exp/img/title_setup.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/tmenu3.jpg b/htdocs/theme/md_exp/img/tmenu3.jpg deleted file mode 100644 index d42f804b026..00000000000 Binary files a/htdocs/theme/md_exp/img/tmenu3.jpg and /dev/null differ diff --git a/htdocs/theme/md_exp/img/tmenu_inverse.jpg b/htdocs/theme/md_exp/img/tmenu_inverse.jpg deleted file mode 100644 index e1efd44376e..00000000000 Binary files a/htdocs/theme/md_exp/img/tmenu_inverse.jpg and /dev/null differ diff --git a/htdocs/theme/md_exp/img/unlock.png b/htdocs/theme/md_exp/img/unlock.png deleted file mode 100644 index afefaa94d47..00000000000 Binary files a/htdocs/theme/md_exp/img/unlock.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/uparrow.png b/htdocs/theme/md_exp/img/uparrow.png deleted file mode 100644 index 5d54c6a4c91..00000000000 Binary files a/htdocs/theme/md_exp/img/uparrow.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/vcard.png b/htdocs/theme/md_exp/img/vcard.png deleted file mode 100644 index 315abdf179d..00000000000 Binary files a/htdocs/theme/md_exp/img/vcard.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/view.png b/htdocs/theme/md_exp/img/view.png deleted file mode 100644 index 76c1e9f1e6a..00000000000 Binary files a/htdocs/theme/md_exp/img/view.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/warning.png b/htdocs/theme/md_exp/img/warning.png deleted file mode 100644 index f1b93b8cc82..00000000000 Binary files a/htdocs/theme/md_exp/img/warning.png and /dev/null differ diff --git a/htdocs/theme/md_exp/img/working.gif b/htdocs/theme/md_exp/img/working.gif deleted file mode 100644 index 1e421c3113f..00000000000 Binary files a/htdocs/theme/md_exp/img/working.gif and /dev/null differ diff --git a/htdocs/theme/md_exp/img/working2.gif b/htdocs/theme/md_exp/img/working2.gif deleted file mode 100644 index bf0fc8f2167..00000000000 Binary files a/htdocs/theme/md_exp/img/working2.gif and /dev/null differ diff --git a/htdocs/theme/md_exp/index.html b/htdocs/theme/md_exp/index.html deleted file mode 100644 index e69de29bb2d..00000000000 diff --git a/htdocs/theme/md_exp/tpl/README b/htdocs/theme/md_exp/tpl/README deleted file mode 100644 index d3bc4b4679f..00000000000 --- a/htdocs/theme/md_exp/tpl/README +++ /dev/null @@ -1,3 +0,0 @@ -README (english) - -This directory is used to store custom templates. (system core and modules) \ No newline at end of file diff --git a/htdocs/theme/md_exp/tpl/index.html b/htdocs/theme/md_exp/tpl/index.html deleted file mode 100644 index e69de29bb2d..00000000000
'; print $graphfiles[$key]['label']; diff --git a/htdocs/projet/card.php b/htdocs/projet/card.php index e8866493833..f3baf46ae63 100644 --- a/htdocs/projet/card.php +++ b/htdocs/projet/card.php @@ -466,6 +466,7 @@ if ($action == 'create' && $user->rights->projet->creer) print $form->textwithtooltip($text.' '.img_help(),$texthelp,1); } else print $text; + print ' '.$langs->trans("AddThirdParty").''; print '
'.fieldLabel('JuridicalStatus','legal_form').'
'.fieldLabel('JuridicalStatus','forme_juridique_code').''; if ($object->country_id) { - print $formcompany->select_juridicalstatus($object->forme_juridique_code, $object->country_code, '', 'legal_form'); + print $formcompany->select_juridicalstatus($object->forme_juridique_code, $object->country_code, '', 'forme_juridique_code'); } else { @@ -1273,7 +1284,12 @@ else dol_fiche_end(); print '
'; - print ''; + print ''; + if ($backtopage) + { + print '   '; + print ''; + } print '
'."\n"; print ''."\n"; @@ -1741,8 +1757,8 @@ else print '
'.fieldLabel('JuridicalStatus','legal_form').''; - print $formcompany->select_juridicalstatus($object->forme_juridique_code, $object->country_code, '', 'legal_form'); + print '
'.fieldLabel('JuridicalStatus','forme_juridique_code').''; + print $formcompany->select_juridicalstatus($object->forme_juridique_code, $object->country_code, '', 'forme_juridique_code'); print '