From: cajus Date: Thu, 11 Mar 2010 11:09:49 +0000 (+0000) Subject: Updated path rendering X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=debbdba712298b22798eef39bdc12ed1d4ae4309;p=gosa.git Updated path rendering git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@16447 594d385d-05f5-0310-b6e9-bd551577e9d8 --- diff --git a/gosa-core/html/themes/modern/style.css b/gosa-core/html/themes/modern/style.css index 38829cab7..a554dda3d 100644 --- a/gosa-core/html/themes/modern/style.css +++ b/gosa-core/html/themes/modern/style.css @@ -256,14 +256,13 @@ ul.path-navigation { ul.path-navigation li { display:inline; padding:5px; - padding-top:8px; + padding-top:9px; height:19px; } ul.path-navigation li.path-element { - font-weight:bold; cursor:default; - border-right:1px solid #C2C2C2; + border-left:1px solid #C2C2C2; } ul.path-navigation li:hover { @@ -275,6 +274,7 @@ ul.path-navigation li:hover { div.nav-home { height:14px; width:20px; + margin-top:-1px; background-image:url(images/home.png); } diff --git a/gosa-core/include/class_pathNavigator.inc b/gosa-core/include/class_pathNavigator.inc index ba263dd18..b9b37a404 100644 --- a/gosa-core/include/class_pathNavigator.inc +++ b/gosa-core/include/class_pathNavigator.inc @@ -7,7 +7,7 @@ class pathNavigator { $str = ""; if($class instanceOf management && isset($class->plHeadline)){ - $str = ""._($class->plHeadline).""; + $str= _($class->plHeadline); }elseif($class instanceOf plugin && isset($class->plHeadline)){ # $str = _($class->plHeadline); }elseif($class instanceOf plugin && !isset($class->plHeadline)){ @@ -21,7 +21,7 @@ class pathNavigator if(!empty($str)){ $cur = session::get('pathNavigator::position'); if(empty($cur)){ - $cur.= "
  • {$str}
  • "; + $cur.= "
  • {$str}
  • "; }else{ $cur.= "
  • {$str}
  • "; } @@ -33,7 +33,7 @@ class pathNavigator { $path = session::get('pathNavigator::position'); if(empty($path)){ - $path = "
  • Welcome to GOsa
  • "; + $path = "
  • "._("Welcome to GOsa")."
  • "; } return($path); }