From: vincent@cubedesigners.com Date: Wed, 21 Oct 2009 11:54:37 +0000 (+0000) Subject: (no commit message) X-Git-Url: http://git.cubedesigners.com/?a=commitdiff_plain;h=39ac63f012d94f7974088431f5447d6b530a8681;p=cubeextranet.git --- diff --git a/inc/extranet/Metier/class.extranet.devis.php b/inc/extranet/Metier/class.extranet.devis.php index 079ba23df..a30b4ddf6 100644 --- a/inc/extranet/Metier/class.extranet.devis.php +++ b/inc/extranet/Metier/class.extranet.devis.php @@ -5,9 +5,9 @@ class extranetDevis extends extranetDocument { public function getBackground() { - $this->fond = ROOT . '/images/devis.png'; - $this->fond1 = ROOT . '/images/devis2page1.png'; - $this->fond2 = ROOT . '/images/devis2page2.png'; + $this->fond = SYSIMG . '/devis.png'; + $this->fond1 = SYSIMG . '/devis2page1.png'; + $this->fond2 = SYSIMG . '/devis2page2.png'; } protected function documentTitre() diff --git a/inc/extranet/Metier/class.extranet.facture.php b/inc/extranet/Metier/class.extranet.facture.php index a641e3178..bc3236134 100644 --- a/inc/extranet/Metier/class.extranet.facture.php +++ b/inc/extranet/Metier/class.extranet.facture.php @@ -13,9 +13,9 @@ class extranetFacture extends extranetDocument { public function getBackground() { if ($this->status == 0) { - $this->fond1 = $this->fond2 = $this->fond = ROOT . '/images/facture-brouillon.png'; + $this->fond1 = $this->fond2 = $this->fond = SYSIMG . '/facture-brouillon.png'; } else { - $this->fond1 = $this->fond2 = $this->fond = ROOT . '/images/facture.png'; + $this->fond1 = $this->fond2 = $this->fond = SYSIMG . '/facture.png'; } } diff --git a/style/extranet/style.css b/style/extranet/style.css index 5560c9f75..6cd155e8e 100644 --- a/style/extranet/style.css +++ b/style/extranet/style.css @@ -196,9 +196,9 @@ input[type="text"],input[type="password"],select,textarea{ .listeTimereport .info{width:30px;} .listeTimereport tr.bold td{border-top:1px solid #4e555c;} -#devisTop{background:url(../images/devis.png) top left;width:960px;height:500px;} +#devisTop{background:url(../../images/extranet/devis.png) top left;width:960px;height:500px;} #devisMiddle{background:url(bg-document.png);width:960px;padding-bottom:20px;} -#devisBottom{background:url(../images/devis.png) bottom left;width:960px;height:300px;} +#devisBottom{background:url(../../images/extranet/devis.png) bottom left;width:960px;height:300px;} #factureAdresse,#devisAdresse{position:absolute;top:180px;left:520px;height:165px;width:360px;padding:0px;} #factureAdresse input[type="text"],#devisAdresse input[type="text"]{width:100%;} #factureAdresseDisplay,#devisAdresseDisplay{font-size:20px;padding:20px;position:relative;min-height:150px;}