diff --git a/library/Icinga/Application/Web.php b/library/Icinga/Application/Web.php index d8aba8757..9439abd3a 100644 --- a/library/Icinga/Application/Web.php +++ b/library/Icinga/Application/Web.php @@ -292,19 +292,20 @@ class Web extends EmbeddedWeb 'cssClass' => 'user-nav-item', 'label' => $this->user->getUsername(), 'icon' => 'user', - 'url' => 'preference', - 'priority' => 900 - ), - 'logout' => array( - 'cssClass' => 'user-nav-item', - 'label' => t('Logout'), - 'icon' => 'starttime', - 'priority' => 990, - 'renderer' => array( - 'LogoutNavigationItemRenderer', - 'target' => '_self' - ), - 'url' => 'authentication/logout' + 'priority' => 900, + 'children' => array( + 'preferences' => array( + 'label' => t('Preferences'), + 'priority' => 100, + 'url' => 'preference' + ), + 'logout' => array( + 'label' => t('Logout'), + 'priority' => 200, + 'target' => '_self', + 'url' => 'authentication/logout' + ) + ) ) ); diff --git a/public/css/icinga/menu.less b/public/css/icinga/menu.less index d5f101cc5..4dabcafc2 100644 --- a/public/css/icinga/menu.less +++ b/public/css/icinga/menu.less @@ -76,17 +76,6 @@ width: 1em; } -#menu .user-nav-item { - background-color: @gray; - color: @text-color-inverted; - - > a:focus, - > a:hover { - background-color: @text-color-inverted; - color: @gray; - } -} - #menu input.search { background: transparent url('../img/icons/search.png') no-repeat @horizontal-padding + 0.2em center; background-size: 1em auto;