From 48d1a43882a21bb5620367af7746ff620e457174 Mon Sep 17 00:00:00 2001 From: Go MAEDA Date: Tue, 7 Oct 2025 08:33:38 +0000 Subject: [PATCH] Update Gantt chart colors to use Open Color palette (#43256). git-svn-id: https://svn.redmine.org/redmine/trunk@24036 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- app/views/gantts/show.html.erb | 6 +++--- lib/redmine/helpers/gantt.rb | 10 ++++++++-- 2 files changed, 11 insertions(+), 5 deletions(-) diff --git a/app/views/gantts/show.html.erb b/app/views/gantts/show.html.erb index 45428b03d..08c153d38 100644 --- a/app/views/gantts/show.html.erb +++ b/app/views/gantts/show.html.erb @@ -161,7 +161,7 @@ style = "" style += "width: #{subject_width + 1}px;" style += "height: #{headers_height}px;" - style += 'background: #eee;' + style += 'background: #f1f3f5;' # oc-gray-1 %> <%= content_tag(:div, "", :style => style, :class => "gantt_hdr") %> <% @@ -198,7 +198,7 @@ <%= content_tag(:div, '', :style => style, :class => "gantt_hdr") %> <% style = "height: #{headers_height}px;" - style += 'background: #eee;' + style += 'background: #f1f3f5;' # oc-gray-1 %> <%= content_tag(:div, content_tag(:p, column.caption, :class => 'gantt_hdr_selected_column_name'), :style => style, :class => "gantt_hdr") %> <%= content_tag(:div, :class => "gantt_#{column_name} gantt_selected_column_content") do %> @@ -213,7 +213,7 @@ style = "" style += "width: #{g_width - 1}px;" style += "height: #{headers_height}px;" - style += 'background: #eee;' + style += 'background: #f1f3f5;' # oc-gray-1 %> <%= content_tag(:div, ' '.html_safe, :style => style, :class => "gantt_hdr") %> diff --git a/lib/redmine/helpers/gantt.rb b/lib/redmine/helpers/gantt.rb index d23c40b38..f6c18ff54 100644 --- a/lib/redmine/helpers/gantt.rb +++ b/lib/redmine/helpers/gantt.rb @@ -30,8 +30,14 @@ module Redmine # Relation types that are rendered DRAW_TYPES = { - IssueRelation::TYPE_BLOCKS => {:landscape_margin => 16, :color => '#F34F4F'}, - IssueRelation::TYPE_PRECEDES => {:landscape_margin => 20, :color => '#628FEA'} + IssueRelation::TYPE_BLOCKS => { + :landscape_margin => 16, + :color => '#fa5252' # oc-red-6 + }, + IssueRelation::TYPE_PRECEDES => { + :landscape_margin => 20, + :color => '#228be6' # oc-blue-6 + } }.freeze UNAVAILABLE_COLUMNS = [:tracker, :id, :subject]