X-Git-Url: https://git.llucax.com/mecon/intranet.git/blobdiff_plain/e59d3170b36e5b9ccc19afcb1565faf4dcb40463..d01ffc09f19282e213464e98819057b341e0b484:/sistema/www/sistemas.php?ds=inline diff --git a/sistema/www/sistemas.php b/sistema/www/sistemas.php index 98512a8..5e51dbc 100644 --- a/sistema/www/sistemas.php +++ b/sistema/www/sistemas.php @@ -60,7 +60,7 @@ 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( @@ -69,6 +69,14 @@ while ($sistema) { 'height' => '46', ) ); + $row[] = new MECON_HTML_Link( + $sistema->link, + $img, + array(), + array( + 'target' => '_blank', + ) + ); $row[] = ' '; $link = new MECON_HTML_Link( $sistema->link, @@ -92,7 +100,6 @@ while ($sistema) { array(), array( 'target' => '_blank', - 'class' => 'intranet_sistemas_txt', ) ); $html .= $link->toHtml(); @@ -116,19 +123,13 @@ $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; - text-decoration: none; + color: #003366; + font-family: Arial, Helvetica, sans-serif; + font-size: 10pt; } A.intranet_sistemas_txt { font-weight: bold; + text-decoration: none; }' ); $m->addBodyContent($t);