diff options
author | Stas Vilchik <vilchiks@gmail.com> | 2014-06-23 15:24:21 +0600 |
---|---|---|
committer | Stas Vilchik <vilchiks@gmail.com> | 2014-06-23 15:24:29 +0600 |
commit | 217fdf83b4250bb0d6df8cb853ab1b8f9a3366a7 (patch) | |
tree | e11e842580880d6df5ba3e1f4fa6f5096d979d72 /plugins | |
parent | 9e1acce68a170b0945ef55db16fc9707cfa347db (diff) | |
download | sonarqube-217fdf83b4250bb0d6df8cb853ab1b8f9a3366a7.tar.gz sonarqube-217fdf83b4250bb0d6df8cb853ab1b8f9a3366a7.zip |
SONAR-5333 Improve links consistency
Diffstat (limited to 'plugins')
3 files changed, 8 insertions, 8 deletions
diff --git a/plugins/sonar-core-plugin/src/main/resources/org/sonar/plugins/core/widgets/hotspots/hotspot_metric.html.erb b/plugins/sonar-core-plugin/src/main/resources/org/sonar/plugins/core/widgets/hotspots/hotspot_metric.html.erb index 103b9ac8bad..bf2872762d8 100644 --- a/plugins/sonar-core-plugin/src/main/resources/org/sonar/plugins/core/widgets/hotspots/hotspot_metric.html.erb +++ b/plugins/sonar-core-plugin/src/main/resources/org/sonar/plugins/core/widgets/hotspots/hotspot_metric.html.erb @@ -40,7 +40,7 @@ <div class="line-block"> <div style="float:right"> - <a href="<%= url_for_drilldown(metric) -%>"><%= message('widget.hotspot_metric.more') -%></a> + <a class="underlined-link" href="<%= url_for_drilldown(metric) -%>"><%= message('widget.hotspot_metric.more') -%></a> </div> <h3><%= title -%></h3> </div> @@ -63,14 +63,14 @@ %> <tr class="<%= cycle 'even', 'odd', :name => ('hotspot_metric' + widget.id.to_s) -%>"> <td> - <%= link_to_resource(resource, h(resource.name), {:metric => metric.name}) -%> + <%= link_to_resource(resource, h(resource.name), {:metric => metric.name, :class => 'underlined-link'}) -%> </td> <td class="right nowrap"> <%= format_measure(measure) -%> </td> <td class="barchart"> <div class="barchart" style="width: <%= (measure.value*100/metric_max_value).round.to_i -%>%"> - <div style="width: 100%;background-color:#777;"></div> + <div style="width: 100%;"></div> </div> </td> </tr> diff --git a/plugins/sonar-core-plugin/src/main/resources/org/sonar/plugins/core/widgets/hotspots/hotspot_most_violated_resources.html.erb b/plugins/sonar-core-plugin/src/main/resources/org/sonar/plugins/core/widgets/hotspots/hotspot_most_violated_resources.html.erb index f9697b58ab2..8bd76b5af67 100644 --- a/plugins/sonar-core-plugin/src/main/resources/org/sonar/plugins/core/widgets/hotspots/hotspot_most_violated_resources.html.erb +++ b/plugins/sonar-core-plugin/src/main/resources/org/sonar/plugins/core/widgets/hotspots/hotspot_most_violated_resources.html.erb @@ -40,7 +40,7 @@ <div class="line-block"> <div style="float:right"> - <a href="<%= url_for_drilldown(metric) -%>"><%= message('widget.hotspot_metric.more') -%></a> + <a class="underlined-link" href="<%= url_for_drilldown(metric) -%>"><%= message('widget.hotspot_metric.more') -%></a> </div> <h3><%= title -%></h3> </div> @@ -63,7 +63,7 @@ %> <tr class="<%= cycle 'even', 'odd', :name => ('hotspot_most_violated_resources' + widget.id.to_s) -%>"> <td> - <%= link_to_resource(resource, h(resource.name), {:tab => :violations}) -%> + <%= link_to_resource(resource, h(resource.name), {:tab => :violations, :class => 'underlined-link'}) -%> </td> <td class="small right"> <i class="icon-severity-blocker"></i> diff --git a/plugins/sonar-core-plugin/src/main/resources/org/sonar/plugins/core/widgets/hotspots/hotspot_most_violated_rules.html.erb b/plugins/sonar-core-plugin/src/main/resources/org/sonar/plugins/core/widgets/hotspots/hotspot_most_violated_rules.html.erb index 2618f3cd952..d30b7b700db 100644 --- a/plugins/sonar-core-plugin/src/main/resources/org/sonar/plugins/core/widgets/hotspots/hotspot_most_violated_rules.html.erb +++ b/plugins/sonar-core-plugin/src/main/resources/org/sonar/plugins/core/widgets/hotspots/hotspot_most_violated_rules.html.erb @@ -38,7 +38,7 @@ <div class="line-block"> <div style="float:right"> - <a href="#" onclick="window.location.href='<%= url_for(:controller => 'drilldown', :action => 'issues') -%>/<%= @resource.id -%>?period=<%= dashboard_configuration.period_index -%>&severity=' + severityForLink() "> + <a class="underlined-link" href="#" onclick="window.location.href='<%= url_for(:controller => 'drilldown', :action => 'issues') -%>/<%= @resource.id -%>?period=<%= dashboard_configuration.period_index -%>&severity=' + severityForLink() "> <%= message('widget.hotspot_metric.more') -%> </a> </div> @@ -97,13 +97,13 @@ <%= h rule.name -%> </td> <td class="right nowrap"> - <a class="nolink <%= widget.key %>_<%= rule.key.parameterize %>" href="<%= url_for(:controller => 'drilldown', :action => 'issues', :id => @resource.key, :rule => rule.key, :rule_sev => m.severity, :period => dashboard_configuration.period_index) -%>"> + <a class="underlined-link <%= widget.key %>_<%= rule.key.parameterize %>" href="<%= url_for(:controller => 'drilldown', :action => 'issues', :id => @resource.key, :rule => rule.key, :rule_sev => m.severity, :period => dashboard_configuration.period_index) -%>"> <%= dashboard_configuration.selected_period? ? format_variation(m) : format_measure(m) -%> </a> </td> <td class="barchart"> <div class="barchart" style="width: <%= (value*100/max_value).round.to_i -%>%"> - <div style="width: 100%;background-color:#777;"></div> + <div style="width: 100%;"></div> </div> </td> </tr> |