Commit 0ab4cae8bd7e17d887d44ca8246be130f34cf4d3
1 parent
8383eb8f
Exists in
colab
and in
4 other branches
Fixes accordion height broken by the updates
Showing
4 changed files
with
10 additions
and
6 deletions
Show diff stats
app/assets/stylesheets/bootstrap_and_overrides.css
app/views/compound_metric_configurations/_created_metrics.html.erb
app/views/metric_configurations/choose_metric.html.erb
| ... | ... | @@ -9,7 +9,7 @@ |
| 9 | 9 | |
| 10 | 10 | <div id="base-tool-accordion"> |
| 11 | 11 | <% @base_tools.each do |base_tool| %> |
| 12 | - <h3><%= base_tool.name %></h3> | |
| 12 | + <h3 class="jquery-ui-accordion"><%= base_tool.name %></h3> | |
| 13 | 13 | <div> |
| 14 | 14 | <% base_tool.supported_metrics.each do |metric| %> |
| 15 | 15 | <%= link_to metric.name, '#', onclick: "BaseTool.choose_metric(\"#{metric.name}\", \"#{base_tool.name}\");", remote: true %><br> | ... | ... |
app/views/repositories/show.html.erb
| ... | ... | @@ -48,17 +48,17 @@ |
| 48 | 48 | |
| 49 | 49 | <div id="repository-accordion"> |
| 50 | 50 | <div id="processing-accordion"> |
| 51 | - <h3>Processing information</h3> | |
| 51 | + <h3 class="jquery-ui-accordion">Processing information</h3> | |
| 52 | 52 | <div id="processing_information"><%= image_tag 'loader.gif' %> Loading data. Please, wait.</div> |
| 53 | 53 | </div> |
| 54 | 54 | |
| 55 | 55 | <div id="module-accordion"> |
| 56 | - <h3>Modules Tree</h3> | |
| 56 | + <h3 class="jquery-ui-accordion">Modules Tree</h3> | |
| 57 | 57 | <div id="module_tree"><%= image_tag 'loader.gif' %> Loading data. Please, wait.</div> |
| 58 | 58 | </div> |
| 59 | - | |
| 59 | + | |
| 60 | 60 | <div id="metric-accordion"> |
| 61 | - <h3>Metric Results</h3> | |
| 61 | + <h3 class="jquery-ui-accordion">Metric Results</h3> | |
| 62 | 62 | <div id="metric_results"><%= image_tag 'loader.gif' %> Loading data. Please, wait.</div> |
| 63 | 63 | </div> |
| 64 | 64 | </div> | ... | ... |