1
0
mirror of https://github.com/meineerde/redmine.git synced 2025-12-24 01:11:12 +00:00

Add right-click context menu to gantt bars (#10485).

Contributed by Mizuki ISHIKAWA.


git-svn-id: http://svn.redmine.org/redmine/trunk@17031 e93f8b46-1217-0410-a6f0-8f06a7374b81
This commit is contained in:
Go MAEDA 2017-11-25 16:31:50 +00:00
parent fc93f14d64
commit a92b92e501
3 changed files with 8 additions and 2 deletions

View File

@ -305,7 +305,9 @@
<% end %>
<% end %>
<%= @gantt.lines.html_safe %>
<%= form_tag({}, :data => {:cm_url => issues_context_menu_path}) do -%>
<%= @gantt.lines.html_safe %>
<% end %>
<% ###### Today red line (excluded from cache) ###### %>
<% if User.current.today >= @gantt.date_from and User.current.today <= @gantt.date_to %>

View File

@ -842,6 +842,7 @@ module Redmine
s = view.content_tag(:span,
view.render_issue_tooltip(object).html_safe,
:class => "tip")
s += view.content_tag(:input, nil, :type => 'checkbox', :name => 'ids[]', :value => object.id, :style => 'display:none;', :class => 'toggle-selection')
style = ""
style << "position: absolute;"
style << "top:#{params[:top]}px;"
@ -850,7 +851,7 @@ module Redmine
style << "height:12px;"
output << view.content_tag(:div, s.html_safe,
:style => style,
:class => "tooltip")
:class => "tooltip hascontextmenu")
end
@lines << output
output

View File

@ -54,3 +54,6 @@
.context-menu-selection { background-color:#507AAA !important; color:#f8f8f8 !important; }
.context-menu-selection a, .context-menu-selection a:hover { color:#f8f8f8 !important; }
.context-menu-selection:hover { background-color:#507AAA !important; color:#f8f8f8 !important; }
div#gantt_area .context-menu-selection { background-color: rgba(80, 122, 170, 0.48) !important; }
div#gantt_area .context-menu-selection:hover { background-color: rgba(80, 122, 170, 0.48) !important; }
div#gantt_area .context-menu-selection a { color: #169 !important; }