From 5b89506db3b83f20f5c3ddafd35e02a42e690318 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Mart=C3=ADn=20Marrese?= Date: Mon, 28 Jul 2003 21:31:52 +0000 Subject: [PATCH] Se cambian detalles de l&f. --- lib/MECON/HTML/Arbol.php | 2 +- pear_lib_tmp/HTML/Image.php | 10 ++-------- www/css/general_estilos.css | 22 ++++++++++++++-------- 3 files changed, 17 insertions(+), 17 deletions(-) diff --git a/lib/MECON/HTML/Arbol.php b/lib/MECON/HTML/Arbol.php index d86c49e..e3a1012 100644 --- a/lib/MECON/HTML/Arbol.php +++ b/lib/MECON/HTML/Arbol.php @@ -77,7 +77,7 @@ class HTML_Arbol extends HTML_Table $atr = array( 'border' => '0', 'width' => $n * $tabulados, - 'height' => '10' + 'height' => '1' ); $margen = ' '; if ($n) { diff --git a/pear_lib_tmp/HTML/Image.php b/pear_lib_tmp/HTML/Image.php index 9e03d46..1be3923 100644 --- a/pear_lib_tmp/HTML/Image.php +++ b/pear_lib_tmp/HTML/Image.php @@ -32,13 +32,6 @@ require_once 'HTML/Common.php'; * @access public */ class HTML_Image extends HTML_Common { - /** - * List of valid HTML attributes for an Image. - * - * @var array $validAttrs - * @access protected - */ - var $_validAttrs = array('src', 'alt', 'longdesc', 'width', 'height', 'usemap', 'ismap', 'align', 'border', 'hspace', 'vspace', 'id', 'class', 'style', 'title', 'lang', 'dir', 'onclick', 'ondblclick', 'onmousedown', 'onmouseup', 'onmouseover', 'onmousemove', 'onmouseout', 'onkeypress', 'onkeydown', 'onkeyup'); // ~X2C @@ -75,7 +68,8 @@ class HTML_Image extends HTML_Common { function toHtml()// ~X2C { $attrs = ''; - foreach ($this->getAttributes() as $key => $val) { + $attributes = $this->getAttributes() + array('border' => 0, 'align' => 'middle'); + foreach ($attributes as $key => $val) { $attrs .= ' ' . $key . '="' . htmlentities($val) . '"'; } return ""; diff --git a/www/css/general_estilos.css b/www/css/general_estilos.css index 00f94f1..50317b9 100644 --- a/www/css/general_estilos.css +++ b/www/css/general_estilos.css @@ -1,8 +1,6 @@ /* +--------------------------------------------------------------------+ -// | SAMURAI | +// | MECONlib | // +--------------------------------------------------------------------+ -// | Sistema de Administracion y Matenimiento de Usuarios Relativo A | -// | Intranet | // | Ministerio de Economía | // +--------------------------------------------------------------------+ // | Creado: fri mar 21 ART 2003 | @@ -10,16 +8,24 @@ // +--------------------------------------------------------------------+ // // $Id: SA_Estilos.css 9 2003-03-27 21:47:09Z mmarre $ -// -// $URL: http://portal.mecon.ar/svn/samurai/tronco/src/www/css/SA_Estilos.css $ -// $Rev: 9 $ -// $Date: 2003-03-27 18:47:09 -0300 (Thu, 27 Mar 2003) $ -// $Author: mmarre $ */ +BODY +{ + FONT-FAMILY: Arial, Helvetica, sans-serif; + FONT-SIZE: 11px; +} + +IMG +{ + border: 0px; + vertical-align: middle; +} .body_general { + FONT-FAMILY: Arial, Helvetica, sans-serif; + FONT-SIZE: 11px; BACKGROUND-COLOR: #FFFFFF; COLOR: #000000; MARGIN: 20px; -- 2.43.0