openrat-cms

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs

commit 087c866c66bae61e051233756c59d6fb25629926
parent 1aa9e8be19b489675cd51948f768f57bdb4d07b7
Author: Jan Dankert <devnull@localhost>
Date:   Wed, 21 Mar 2012 01:07:09 +0100

Header-MenĂ¼ mit neuen CSS-Klassen.

Diffstat:
themes/default/include/html/header.inc.php | 8+++++---
1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/themes/default/include/html/header.inc.php b/themes/default/include/html/header.inc.php @@ -1,14 +1,16 @@ <div class="header"> <?php if ($attr_back) { ?> - <a href="javascript:void(0);" onclick="javascript:refreshActualView(this);"> + <a href="javascript:void(0);" onclick="javascript:refreshActualView(this);" class="back button"> <img src="<?php echo $image_dir ?>icon/window/back.gif" /> <?php echo lang('BACK') ?> </a> <?php } ?><?php if(!empty($attr_views)) { ?> <img src="<?php echo $image_dir ?>icon/window/down.gif" /> - <div class="dropdown"> + <div class="headermenu"> <?php foreach( explode(',',$attr_views) as $attr_tmp_view ) { ?> - <a class="entry" href="javascript:void(0);" onclick="javascript:startView(this,'<?php echo $attr_tmp_view ?>');"><?php echo lang('MENU_'.$attr_tmp_view) ?></a> + <a class="entry" href="javascript:void(0);" onclick="javascript:startView(this,'<?php echo $attr_tmp_view ?>');"> + <img src="<?php echo $image_dir ?>icon/<?php echo $attr_tmp_view ?>.png" /><?php echo lang('MENU_'.$attr_tmp_view) ?> + </a> <?php } ?> </div> <?php } ?>