aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStas Vilchik <vilchiks@gmail.com>2014-07-02 16:01:46 +0600
committerStas Vilchik <vilchiks@gmail.com>2014-07-02 16:01:56 +0600
commit0defc8154f6104d7cbe01829e8bcc0960b825f57 (patch)
tree30fadee3dda6cde8e11c95210b5d2fbd93fa7c57
parent34307c05aaa740f2759152780cf9e735be32fa8a (diff)
downloadsonarqube-0defc8154f6104d7cbe01829e8bcc0960b825f57.tar.gz
sonarqube-0defc8154f6104d7cbe01829e8bcc0960b825f57.zip
SONAR-5333 Underline links
-rw-r--r--sonar-server/src/main/webapp/WEB-INF/app/views/measures/_display_list.html.erb4
1 files changed, 2 insertions, 2 deletions
diff --git a/sonar-server/src/main/webapp/WEB-INF/app/views/measures/_display_list.html.erb b/sonar-server/src/main/webapp/WEB-INF/app/views/measures/_display_list.html.erb
index 3dae12f9a0e..8a63f3807dd 100644
--- a/sonar-server/src/main/webapp/WEB-INF/app/views/measures/_display_list.html.erb
+++ b/sonar-server/src/main/webapp/WEB-INF/app/views/measures/_display_list.html.erb
@@ -222,11 +222,11 @@
</tbody>
<% if widget_id %>
<%= table_pagination(filter.pagination, :colspan => colspan, :id => "measure_filter_foot#{widget_id}", :include_loading_icon => true) { |label, page_id|
- link_to_function label, "refreshList#{widget_id}('#{filter.criteria[:sort]}', #{filter.criteria[:asc]}, #{page_id})"
+ link_to_function label, "refreshList#{widget_id}('#{filter.criteria[:sort]}', #{filter.criteria[:asc]}, #{page_id})", :class => 'underlined-link'
} -%>
<% else %>
<%= table_pagination(filter.pagination, :colspan => colspan, :id => "measure_filter_foot#{widget_id}", :include_loading_icon => true) { |label, page_id|
- link_to(label, filter.criteria.merge({:page => page_id}))
+ link_to(label, filter.criteria.merge({:page => page_id}), :class => 'underlined-link')
} -%>
<% end %>
</table>