]> git.llucax.com Git - mecon/meconlib.git/blob - lib/MLIB/HTML/Tabla/estilo_oscuro.php
Bug Fix en MLIB_PDF_Tabla. Faltaba inicializar una variable, lo que hacia fallar...
[mecon/meconlib.git] / lib / MLIB / HTML / Tabla / estilo_oscuro.php
1 <?php /* vim: set binary expandtab tabstop=4 shiftwidth=4 tw=80 fdm=marker:
2 -------------------------------------------------------------------------------
3                                     mlib
4 -------------------------------------------------------------------------------
5 This file is part of mlib.
6
7 mlib is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 2 of the License, or (at your option)
10 any later version.
11
12 mlib is distributed in the hope that it will be useful, but WITHOUT
13 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
14 FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
15  
16 You should have received a copy of the GNU General Public License; if not,
17 write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330,
18 Boston, MA  02111-1307  USA
19 -------------------------------------------------------------------------------
20 Creado: mar ago 19 13:41:38 ART 2003
21 Autor:  Martin Marrese <mmarre@mecon.gov.ar>
22 -------------------------------------------------------------------------------
23 $Id$
24 -----------------------------------------------------------------------------*/
25 // Opciones para la tabla {{{
26 return array (
27     'css' => '/MLIB/css/html/tabla/oscuro',
28     'atributos' =>  array ( // {{{
29         'tabla_contenedora' => array( // {{{
30             'width'       => '100%',
31             'align'       => 'center',
32             'cellpadding' => 0,
33             'cellspacing' => 0,
34             'border'      => 0,
35             'bgcolor'     => '#003366',
36         ), // }}}
37         'celda_contenedora' => array( // {{{
38         ), // }}}
39         'tabla_comun' => array( // {{{
40             'width'       => '100%',
41             'align'       => 'center',
42             'cellpadding' => 2,
43             'cellspacing' => 2,
44             'border'      => 0,
45         ), // }}}
46         'celda_cabecera' => array( // {{{
47             'bgcolor' => '#003366',
48             'valign'  => 'middle',
49             'align'   => 'left',
50             'class'   => 'mlib_html_tabla_oscuro_cabecera',
51         ), // }}}
52         'celda_titulo' => array( // {{{
53             'bgcolor' => '#6285A4',
54             'valign'  => 'middle',
55             'align'   => 'left',
56             'class'   => 'mlib_html_tabla_oscuro_titulo',
57         ), // }}}
58         'celda_comun' => array( // {{{
59             'bgcolor' => '#FFFFFF',
60             'valign'  => 'middle',
61             'align'   => 'left',
62             'class'   => 'mlib_html_tabla_oscuro_comun',
63         ), // }}}
64     ), // }}}
65 );
66 // }}}
67
68 ?>