Skip to content
This repository has been archived by the owner on Nov 9, 2017. It is now read-only.

Commit

Permalink
Fix menu problem in workspace
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex Eng committed Oct 3, 2012
1 parent 30de96b commit 0d49d25
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
4 changes: 2 additions & 2 deletions zanata-war/src/main/webapp/WEB-INF/layout/menu.xhtml
Expand Up @@ -29,7 +29,7 @@
</s:link>
</li>
<li id="systemCol">
<a href="#"><img src="#{request.contextPath}/images/z-logo-16px.png" />
<a href=""><img src="#{request.contextPath}/images/z-logo-16px.png" />
#{messages['jsf.More']}
<span class="icon-down-open downArrow"/>
</a>
Expand Down Expand Up @@ -79,7 +79,7 @@
</li>
<li id="userCol">
<s:fragment rendered="#{identity.loggedIn}">
<a href="#">
<a href="">
<h:graphicImage value="#{gravatarServiceImpl.getUserImageUrl(23)}" height="23" title="http://gravatar.com" class="avatar" />
<span class="username"><h:outputText value="#{identity.credentials.username} " /></span>
<span class="icon-down-open downArrow"/>
Expand Down
6 changes: 6 additions & 0 deletions zanata-war/src/main/webapp/stylesheet/menu.css
Expand Up @@ -99,12 +99,18 @@
#projectCol {
box-shadow: none;
}

#systemCol a {
cursor:pointer;
}

#userCol, #userCol:hover {
border-right: none;
}

#userCol a {
display:table;
cursor:pointer;
}

#userCol {
Expand Down

0 comments on commit 0d49d25

Please sign in to comment.