diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-04-22 20:03:08 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-04-22 20:03:08 +0000 |
commit | 4499c7a030a0ff784fcb165e21fb809b0e031847 (patch) | |
tree | 18598148829430d32b447a3159e87c3d38824511 | |
parent | 2f1d8630f153a49802e31a48739ba884944719d8 (diff) | |
download | redmine-4499c7a030a0ff784fcb165e21fb809b0e031847.tar.gz redmine-4499c7a030a0ff784fcb165e21fb809b0e031847.zip |
Grey scale icon for issue not watched.
git-svn-id: http://redmine.rubyforge.org/svn/trunk@467 e93f8b46-1217-0410-a6f0-8f06a7374b81
-rw-r--r-- | app/views/issues/show.rhtml | 2 | ||||
-rw-r--r-- | public/stylesheets/application.css | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/app/views/issues/show.rhtml b/app/views/issues/show.rhtml index 3c1ac0e2e..a967b57db 100644 --- a/app/views/issues/show.rhtml +++ b/app/views/issues/show.rhtml @@ -57,7 +57,7 @@ end %> <% if @issue.watched_by?(@logged_in_user) %> <%= link_to l(:button_unwatch), {:controller => 'watchers', :action => 'remove', :issue_id => @issue}, :class => 'icon icon-fav' %> <% else %> -<%= link_to l(:button_watch), {:controller => 'watchers', :action => 'add', :issue_id => @issue}, :class => 'icon icon-fav' %> +<%= link_to l(:button_watch), {:controller => 'watchers', :action => 'add', :issue_id => @issue}, :class => 'icon icon-fav-off' %> <% end %> <% end %> <%= link_to_if_authorized l(:button_move), {:controller => 'projects', :action => 'move_issues', :id => @project, "issue_ids[]" => @issue.id }, :class => 'icon icon-move' %> diff --git a/public/stylesheets/application.css b/public/stylesheets/application.css index 7ace8e66c..4e845f2c8 100644 --- a/public/stylesheets/application.css +++ b/public/stylesheets/application.css @@ -159,6 +159,7 @@ vertical-align: middle; .icon-stats { background-image: url(../images/stats.png); } .icon-warning { background-image: url(../images/warning.png); } .icon-fav { background-image: url(../images/fav.png); } +.icon-fav-off { background-image: url(../images/fav_off.png); } .icon22-projects { background-image: url(../images/22x22/projects.png); } .icon22-users { background-image: url(../images/22x22/users.png); } |