]> git.llucax.com Git - mecon/meconlib.git/commitdiff
Se cambian detalles de l&f.
authorMartín Marrese <marrese@gmail.com>
Mon, 28 Jul 2003 21:31:52 +0000 (21:31 +0000)
committerMartín Marrese <marrese@gmail.com>
Mon, 28 Jul 2003 21:31:52 +0000 (21:31 +0000)
lib/MECON/HTML/Arbol.php
pear_lib_tmp/HTML/Image.php
www/css/general_estilos.css

index d86c49e8bf5181ee7ebf56621850fe1e6770d06b..e3a1012f09919744c8ec4b41590c5f21a39d8c60 100644 (file)
@@ -77,7 +77,7 @@ class HTML_Arbol extends HTML_Table
         $atr = array(
             'border' => '0',
             'width'  => $n * $tabulados,
-            'height' => '10'
+            'height' => '1'
         );
         $margen = ' ';
         if ($n) {
index 9e03d46afa3002a42fa140252330ad5dde2eac54..1be3923f0cf163704e62e6515c9424002c3e65b5 100644 (file)
@@ -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 "<IMG$attrs/>";
index 00f94f13b1b91a932dbe7b1c4ceaebd35c9e0693..50317b94336e309036259baf398fc3fb41f6bf71 100644 (file)
@@ -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                                        |
 // +--------------------------------------------------------------------+
 // 
 // $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;