* Left nav correctly highlights current section
[arvados.git] / apps / workbench / app / views / pipeline_instances / _show_graph.html.erb
1 <% content_for :css do %>
2   .pipeline_color_legend {
3     padding-left: 1em;
4     padding-right: 1em;
5   }
6 <% end %>
7
8 <% if @pipelines.count > 1 %>
9   <div style="text-align: center">
10     <span class="pipeline_color_legend" style="background: #88ff88">This pipeline</span> 
11     <span class="pipeline_color_legend" style="background: #8888ff">Comparison pipeline</span>
12     <span class="pipeline_color_legend" style="background: #88ffff">Shared by both pipelines</span>
13   </div>
14 <% end %>
15
16 <%= render partial: 'application/svg_div', locals: {
17       divId: "provenance_graph", 
18       svgId: "provenance_svg", 
19       svg: @prov_svg } %>