]> source.dussan.org Git - sonarqube.git/commitdiff
SONAR-2698 Display of arrows to sort columns
authorFabrice Bellingard <bellingard@gmail.com>
Fri, 28 Oct 2011 11:39:17 +0000 (13:39 +0200)
committerFabrice Bellingard <bellingard@gmail.com>
Fri, 28 Oct 2011 11:39:17 +0000 (13:39 +0200)
sonar-server/src/main/webapp/WEB-INF/app/views/components/_list_table_header.rhtml
sonar-server/src/main/webapp/WEB-INF/app/views/manual_measures/index.html.erb
sonar-server/src/main/webapp/stylesheets/style.css

index 14fb516daf0aeddd7b605d4dfbe52de835e70442..fca08c7e99ddb9172cb0ccbd69cee2f81e2e0f14 100644 (file)
@@ -29,7 +29,7 @@
   <th class="nosort"></th>
   <th class="left text <%= 'sortfirstasc' if @components_configuration.sorted_by_project_name? -%>"><%= message('name') -%></th>
   <% configured_columns.each do |column| %>
-     <th class="<%= column.get_table_header_css %>"><%= column.name %></th>
+     <th class="<%= column.get_table_header_css %> righticon"><%= column.name %></th>
   <% end %>
 </tr>
 </thead>
\ No newline at end of file
index 83ad8e38e64207607fb2a3ab927a3d83dca47265..49ce4a2a9f265abdf44d2d5ed2ede552fe94e28a 100644 (file)
@@ -29,8 +29,8 @@
     <th class="thin nowrap sortfirstasc"><%= message('manual_measures.col.metric') -%></th>
     <th class="thin nowrap nosort" style="text-align: right"><%= message('manual_measures.col.value') -%></th>
     <th><%= message('manual_measures.col.description') -%></th>
-    <th style="text-align: right"><%= message('manual_measures.col.author') -%></th>
-    <th style="text-align: right"><%= message('manual_measures.col.date') -%></th>
+    <th class="righticon" style="text-align: right"><%= message('manual_measures.col.author') -%></th>
+    <th class="righticon" style="text-align: right"><%= message('manual_measures.col.date') -%></th>
     <th class="thin nowrap nosort"><%= message('manual_measures.col.operations') -%></th>
   </tr>
   </thead>
index f2a5f0ec921f5c5671e8fd2e972f483c01744986..598a30fc6994d6b46909c9249405db68983dc0c5 100644 (file)
@@ -578,7 +578,7 @@ table.data th img, table.data td img {
 
 table.sortable .sortcol {
   cursor: pointer;
-  padding-right: 15px;
+  padding-left: 15px;
   background-repeat: no-repeat;
   background-position: right center;
   text-decoration: underline;
@@ -586,11 +586,16 @@ table.sortable .sortcol {
 
 table.sortable .sortasc {
   background-image: url('../images/bullet_arrow_up.gif');
-  background-position: right center;
+  background-position: left center;
 }
 
 table.sortable .sortdesc {
   background-image: url('../images/bullet_arrow_down.gif');
+  background-position: left center;
+}
+
+table.sortable .righticon {
+  padding-right: 15px;
   background-position: right center;
 }