]> git.llucax.com Git - mecon/intranet.git/commitdiff
Corrijo el borde de la tablita de servicios
authorGonzalo Merayo <merayo@gmail.com>
Thu, 24 Jul 2003 17:47:21 +0000 (17:47 +0000)
committerGonzalo Merayo <merayo@gmail.com>
Thu, 24 Jul 2003 17:47:21 +0000 (17:47 +0000)
sistema/www/images/servicio_borde_inf.gif [new file with mode: 0644]
sistema/www/images/servicio_borde_sup.gif [new file with mode: 0644]
sistema/www/servicios.php

diff --git a/sistema/www/images/servicio_borde_inf.gif b/sistema/www/images/servicio_borde_inf.gif
new file mode 100644 (file)
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 (file)
index 0000000..ad6b3e1
Binary files /dev/null and b/sistema/www/images/servicio_borde_sup.gif differ
index 55bd5fae417e8f482bc006294e5170d7af5104ff..85a296b10e20379ce372873c3f9cd9a92f92e6e5 100644 (file)
@@ -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();