diff options
author | David Gageot <david@gageot.net> | 2012-05-24 17:35:22 +0200 |
---|---|---|
committer | David Gageot <david@gageot.net> | 2012-05-24 17:36:15 +0200 |
commit | 55a1a3c0b66839ef7d4007395bb9faf7dfdc58bd (patch) | |
tree | e3dc2ab7331890fdee2b4be0ce7aaa118569814a /sonar-server | |
parent | ae0b1420135b577d1f3f29e6a089de77a370623a (diff) | |
download | sonarqube-55a1a3c0b66839ef7d4007395bb9faf7dfdc58bd.tar.gz sonarqube-55a1a3c0b66839ef7d4007395bb9faf7dfdc58bd.zip |
Resize the column with ordering arrows
Diffstat (limited to 'sonar-server')
3 files changed, 6 insertions, 2 deletions
diff --git a/sonar-server/src/main/webapp/WEB-INF/app/views/admin_dashboards/_list.html.erb b/sonar-server/src/main/webapp/WEB-INF/app/views/admin_dashboards/_list.html.erb index 6a569b88118..12fbe5944bc 100644 --- a/sonar-server/src/main/webapp/WEB-INF/app/views/admin_dashboards/_list.html.erb +++ b/sonar-server/src/main/webapp/WEB-INF/app/views/admin_dashboards/_list.html.erb @@ -3,7 +3,7 @@ <tr> <th class="name"><%= message('name') -%></th> <th><%= message('shared_by') -%></th> - <th><%= message('order') -%></th> + <th class="order"><%= message('order') -%></th> <th class="right"><%= message('operations') -%></th> </tr> </thead> diff --git a/sonar-server/src/main/webapp/WEB-INF/app/views/dashboards/index.html.erb b/sonar-server/src/main/webapp/WEB-INF/app/views/dashboards/index.html.erb index c840892f346..6a89aacb3b0 100644 --- a/sonar-server/src/main/webapp/WEB-INF/app/views/dashboards/index.html.erb +++ b/sonar-server/src/main/webapp/WEB-INF/app/views/dashboards/index.html.erb @@ -11,7 +11,7 @@ <% if is_admin %> <th><%= message('shared') -%></th> <% end %> - <th><%= message('order') -%></th> + <th class="order"><%= message('order') -%></th> <th class="right"><%= message('operations') -%></th> </tr> </thead> diff --git a/sonar-server/src/main/webapp/stylesheets/dashboard.css b/sonar-server/src/main/webapp/stylesheets/dashboard.css index b34c682418c..eb52084c63b 100644 --- a/sonar-server/src/main/webapp/stylesheets/dashboard.css +++ b/sonar-server/src/main/webapp/stylesheets/dashboard.css @@ -135,6 +135,10 @@ width: 200px; } +.admin_page th.order { + width: 45px; +} + .admin_page .description { font-size: 85%; font-weight: normal; |