From: Gonzalo Merayo Date: Thu, 24 Jul 2003 17:47:21 +0000 (+0000) Subject: Corrijo el borde de la tablita de servicios X-Git-Tag: svn_import~222 X-Git-Url: https://git.llucax.com/mecon/intranet.git/commitdiff_plain/2ac30dee43deebe8da8babe95548470b9e822d0c?ds=inline Corrijo el borde de la tablita de servicios --- diff --git a/sistema/www/images/servicio_borde_inf.gif b/sistema/www/images/servicio_borde_inf.gif new file mode 100644 index 0000000..463edec Binary files /dev/null and b/sistema/www/images/servicio_borde_inf.gif differ diff --git a/sistema/www/images/servicio_borde_sup.gif b/sistema/www/images/servicio_borde_sup.gif new file mode 100644 index 0000000..ad6b3e1 Binary files /dev/null and b/sistema/www/images/servicio_borde_sup.gif differ diff --git a/sistema/www/servicios.php b/sistema/www/servicios.php index 55bd5fa..85a296b 100644 --- a/sistema/www/servicios.php +++ b/sistema/www/servicios.php @@ -9,30 +9,28 @@ 'border' => '0', 'cellspacing' => '0', 'cellpadding' => '0', - 'bgcolor' => '#003868')); + 'bgcolor' => '#FFFFFF')); $seccion->addRow(array("Nombre(sin estilo)"), array('align' => 'center', 'class' => 'arboltitulo', 'background'=>'images/servicio_cabecera.gif', 'height'=>32)); - $tmp =& new HTML_Table(array ('width' =>'100%', - 'border' => '0', - 'cellspacing' => '2', - 'cellpadding' => '0', - 'class' => 'bodytext')); - $interna =& new HTML_Table(array ('width' =>'100%')); $img = new HTML_Image('images/servicio_bullet.gif'); - $interna->addRow(array($img, 'Nombre(sin estilo) ffffff',$img,'nombre'), - array('valign' => 'top')); - $interna->addRow(array($img, 'Nombre(sin estilo)',$img,'nombre'), - array('valign' => 'top')); - $interna->addRow(array($img, 'Nombre(sin estilo)',$img,'nombre'), + $int =& new HTML_Table(array('width' =>'360', + 'border' => '0', + 'cellspacing' => '0', + 'cellpadding' => '0', + 'bgcolor' => '#FFFFFF', + 'background' => 'images/servicio_borde_sup.gif')); + $int->addRow(array($img, 'Nombre(sin estilo)',$img,'nombre'), array('valign' => 'top')); - $interna->updateColAttributes(0, array('width' => '10%')); - $interna->updateColAttributes(1, array('width' => '40%')); - $interna->updateColAttributes(2, array('width' => '10%')); - $interna->updateColAttributes(3, array('width' => '40%')); - $tmp->addRow(array($interna), array('bgcolor' => '#FFFFFF')); - $seccion->addRow(array($tmp), array('bgcolor' => '#003868')); + $int->updateColAttributes(0, array('width' => '10%')); + $int->updateColAttributes(1, array('width' => '40%')); + $int->updateColAttributes(2, array('width' => '10%')); + $int->updateColAttributes(3, array('width' => '40%')); + $seccion->addRow(array($int)); + $seccion->addRow(array($int)); + $seccion->addRow(array($int)); + $seccion->addRow(array(new HTML_Image('images/servicio_borde_inf.gif'))); $m->addBodyContent($seccion); $m->display();