diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/web/ejabberd_web_admin.erl | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/src/web/ejabberd_web_admin.erl b/src/web/ejabberd_web_admin.erl index 58b0ecb12..1b7e0ff9b 100644 --- a/src/web/ejabberd_web_admin.erl +++ b/src/web/ejabberd_web_admin.erl @@ -189,12 +189,16 @@ make_xhtml(Els, Host, Lang) -> [?XAE("div", [{"id", "header"}], [?XE("h1", - [?ACT(Base, "Administration")] + [?ACT("/admin/", "Administration")] )]), ?XAE("div", [{"id", "navigation"}], [?XE("ul", - [?LI([?ACT(Base ++ "acls/", "Access Control Lists")]), + [?LI([?XAE("div", + [{"id", "navheadhost"}], + [?AC(Base, Host)] + )]), + ?LI([?ACT(Base ++ "acls/", "Access Control Lists")]), ?LI([?ACT(Base ++ "access/", "Access Rules")]), ?LI([?ACT(Base ++ "users/", "Users")]), ?LI([?ACT(Base ++ "online-users/", "Online Users")]), @@ -354,6 +358,11 @@ html>body #container { background: #332; } +#navheadhost { + text-align: left; + border-bottom: 2px solid #d47911; +} + #lastactivity li { font-weight: bold; border: 1px solid #d6760e; |