diff --git a/app/views/layouts/base.rhtml b/app/views/layouts/base.rhtml
index 9e76b5a0..a435afe8 100644
--- a/app/views/layouts/base.rhtml
+++ b/app/views/layouts/base.rhtml
@@ -36,7 +36,7 @@
<%= link_to l(:label_project_plural), { :controller => 'projects' }, :class => "picProject" %>
<% unless @project.nil? || @project.id.nil? %>
-
<%= link_to @project.name, { :controller => 'projects', :action => 'show', :id => @project }, :class => "picProject", :onmouseover => "buttonMouseover(event, 'menuProject');" %>
+
<% end %>
<% if loggedin? %>
@@ -44,7 +44,7 @@
<% end %>
<% if admin_loggedin? %>
-
<%= link_to l(:label_administration), { :controller => 'admin' }, :class => "picAdmin", :onmouseover => "buttonMouseover(event, 'menuAdmin');" %>
+
<% end %>
<%= link_to l(:label_help), { :controller => 'help', :ctrl => @params[:controller], :page => @params[:action] }, :target => "new", :class => "picHelp" %>
diff --git a/app/views/projects/gantt.rhtml b/app/views/projects/gantt.rhtml
index 0c6fc5d1..6199107c 100644
--- a/app/views/projects/gantt.rhtml
+++ b/app/views/projects/gantt.rhtml
@@ -94,7 +94,7 @@ t_height = g_height + headers_heigth
-
+
<%
#
@@ -113,7 +113,7 @@ end %>
-
+
<%
#
# Months headers
@@ -125,7 +125,7 @@ height = (show_weeks ? header_heigth : header_heigth + g_height)
width = ((month_f >> 1) - month_f) * zoom - 1
%>
- <%= link_to "#{month_f.year}-#{month_f.month}", :year => month_f.year, :month => month_f.month, :zoom => @zoom, :months => @months %>
+ <%= link_to "#{month_f.year}-#{month_f.month}", { :year => month_f.year, :month => month_f.month, :zoom => @zoom, :months => @months }, :title => "#{month_name(month_f.month)} #{month_f.year}"%>
<%
left = left + width + 1
diff --git a/public/stylesheets/application.css b/public/stylesheets/application.css
index 2d3ce9e3..71c19d8b 100644
--- a/public/stylesheets/application.css
+++ b/public/stylesheets/application.css
@@ -108,6 +108,14 @@ background-color:inherit;
color: #ffffff;
}
+#navigation li.submenu {
+background:url(../images/arrow_down.png) 96% 80% no-repeat;
+}
+
+#navigation li.submenu a {
+padding:0px 16px 0px 22px;
+}
+
* html #navigation a {width:1%;}
#navigation .selected,#navigation a:hover{
@@ -249,6 +257,21 @@ table p {
padding:0;
}
+ul.documents {
+list-style-type: none;
+padding: 0;
+margin: 0;
+}
+
+ul.documents li {
+background-image: url(../images/file.png);
+background-repeat: no-repeat;
+background-position: 0 .4em;
+padding-left: 20px;
+margin-bottom: 10px;
+margin-left: -37px;
+}
+
/********** Table used to display lists of things ***********/
table.list {
| |