X-Git-Url: https://git.llucax.com/mecon/intranet.git/blobdiff_plain/93130c5c5a0b5ee6b1a40c7fe93e1d7f43600fe7..d01ffc09f19282e213464e98819057b341e0b484:/sistema/www/sistemas.php?ds=sidebyside diff --git a/sistema/www/sistemas.php b/sistema/www/sistemas.php index 51b89fe..5e51dbc 100644 --- a/sistema/www/sistemas.php +++ b/sistema/www/sistemas.php @@ -60,28 +60,34 @@ while ($sistema) { $row = array(); for ($j = 1; $j <= COLUMNAS; $j++) { if ($sistema) { - $row[] = new MECON_HTML_Image( + $img = new MECON_HTML_Image( "/sistemas/intranet/images/$sistema->icono", $sistema->nombre, array( - 'title' => $sistema->descripcion, 'border' => 0, 'width' => '46', 'height' => '46', ) ); + $row[] = new MECON_HTML_Link( + $sistema->link, + $img, + array(), + array( + 'target' => '_blank', + ) + ); $row[] = ' '; $link = new MECON_HTML_Link( $sistema->link, $sistema->nombre, array(), array( - 'title' => $sistema->descripcion, 'target' => '_blank', 'class' => 'intranet_sistemas_txt', ) ); - $html = $link->toHtml(); + $html = $link->toHtml() . ': ' . $sistema->descripcion; if ($sistema->link_ayuda) { $html .= ' '; $img = new MECON_HTML_Image( @@ -94,7 +100,6 @@ while ($sistema) { array(), array( 'target' => '_blank', - 'class' => 'intranet_sistemas_txt', ) ); $html .= $link->toHtml(); @@ -111,22 +116,19 @@ while ($sistema) { } } $t->addRow(array(' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ', ' ')); - $t->addRow($row); + $t->addRow($row, array('class' => 'intranet_sistemas_txt')); } $m = new HTML_DietMarco('sistemas', 'Sistemas'); $m->addTitle('Sistemas'); $m->addStyleDeclaration(' .intranet_sistemas_txt { - COLOR: #003366; - FONT-FAMILY: Arial, Helvetica, sans-serif; - FONT-SIZE: 10pt; - FONT-WEIGHT: normal; - font-style: normal; - line-height: normal; - background-position: left centre; - text-align: left; - vertical-align: middle; + color: #003366; + font-family: Arial, Helvetica, sans-serif; + font-size: 10pt; + } + A.intranet_sistemas_txt { + font-weight: bold; text-decoration: none; }' );