From: Manni H. <man...@us...> - 2005-02-14 09:24:22
|
Update of /cvsroot/popfile/engine/UI In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15015/UI Modified Files: HTML.pm Log Message: Cater for the increased number of tabs on the shutdown screen (the last tab didn't get styled) and hide the shutdown link in the shutdown page. Index: HTML.pm =================================================================== RCS file: /cvsroot/popfile/engine/UI/HTML.pm,v retrieving revision 1.337 retrieving revision 1.338 diff -C2 -d -r1.337 -r1.338 *** HTML.pm 13 Feb 2005 02:16:34 -0000 1.337 --- HTML.pm 14 Feb 2005 09:24:11 -0000 1.338 *************** *** 3445,3449 **** } close CSS; ! $css .= "</style>"; # Load the template, set the class of the menu tabs, and send the --- 3445,3449 ---- } close CSS; ! $css .= ".headShutdown { display: none; } \n</style>"; # Load the template, set the class of the menu tabs, and send the *************** *** 3452,3456 **** my $templ = $self->load_template__( 'shutdown-page.thtml' ); ! for my $i (0..5) { $templ->param( "Common_Middle_Tab$i" => "menuStandard" ); } --- 3452,3456 ---- my $templ = $self->load_template__( 'shutdown-page.thtml' ); ! for my $i ( 0..6 ) { $templ->param( "Common_Middle_Tab$i" => "menuStandard" ); } |