diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-01-09 21:27:21 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-01-09 21:27:21 +0000 |
commit | f35194e6046e1be5a81d5e26705c032e4d0a4406 (patch) | |
tree | 3b722676f09b04c80f54b8e45f8e55d1ff795fec /app/views/layouts/base.rhtml | |
parent | 3ef57c1ac3bbd8dc4de1661aac829e655533abd7 (diff) | |
download | redmine-f35194e6046e1be5a81d5e26705c032e4d0a4406.tar.gz redmine-f35194e6046e1be5a81d5e26705c032e4d0a4406.zip |
tooltips added on Gantt chart to view the details of the issues
(added csshover behaviour to make it work under IE)
git-svn-id: http://redmine.rubyforge.org/svn/trunk@160 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/layouts/base.rhtml')
-rw-r--r-- | app/views/layouts/base.rhtml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/app/views/layouts/base.rhtml b/app/views/layouts/base.rhtml index 85f41e327..4768f29dd 100644 --- a/app/views/layouts/base.rhtml +++ b/app/views/layouts/base.rhtml @@ -5,6 +5,11 @@ <meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta name="description" content="redMine" />
<meta name="keywords" content="issue,bug,tracker" />
+<!--[if IE]>
+ <style type="text/css">
+ body {behavior: url(<%= stylesheet_path "csshover.htc" %>);}
+ </style>
+<![endif]-->
<%= stylesheet_link_tag "application" %>
<%= stylesheet_link_tag "print", :media => "print" %>
<%= javascript_include_tag :defaults %>
|