diff options
author | Simon Brandhof <simon.brandhof@gmail.com> | 2013-02-19 20:14:06 +0100 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@gmail.com> | 2013-02-19 20:14:06 +0100 |
commit | 71ae2d4d449a3ec0389ab3d9e515af870c47575d (patch) | |
tree | 309ce85215af1c74cfb5d1004695fa03d0ad57aa /sonar-server/src/main | |
parent | acc06cde37fbf9b5e6ceaee111b1dae18cd33efc (diff) | |
download | sonarqube-71ae2d4d449a3ec0389ab3d9e515af870c47575d.tar.gz sonarqube-71ae2d4d449a3ec0389ab3d9e515af870c47575d.zip |
SONAR-4098 icon for "new window"
Diffstat (limited to 'sonar-server/src/main')
-rw-r--r-- | sonar-server/src/main/webapp/WEB-INF/app/views/drilldown/measures.html.erb | 2 | ||||
-rw-r--r-- | sonar-server/src/main/webapp/WEB-INF/app/views/drilldown/violations.html.erb | 2 | ||||
-rw-r--r-- | sonar-server/src/main/webapp/WEB-INF/app/views/resource/_tabs.html.erb | 2 | ||||
-rw-r--r-- | sonar-server/src/main/webapp/images/new-window-11.gif | bin | 0 -> 76 bytes | |||
-rw-r--r-- | sonar-server/src/main/webapp/images/new-window-16.gif | bin | 0 -> 1438 bytes | |||
-rw-r--r-- | sonar-server/src/main/webapp/stylesheets/style.css | 5 |
6 files changed, 5 insertions, 6 deletions
diff --git a/sonar-server/src/main/webapp/WEB-INF/app/views/drilldown/measures.html.erb b/sonar-server/src/main/webapp/WEB-INF/app/views/drilldown/measures.html.erb index b19fa6e50ba..b8a8cbbdb04 100644 --- a/sonar-server/src/main/webapp/WEB-INF/app/views/drilldown/measures.html.erb +++ b/sonar-server/src/main/webapp/WEB-INF/app/views/drilldown/measures.html.erb @@ -62,7 +62,7 @@ <tr class="<%= clazz -%>" id="row_<%= index -%>_<%= row_index -%>"> <td nowrap> <% if resource.source_code? %> - <%= link_to(image_tag('zoom.png'), + <%= link_to(image_tag('new-window-16.gif'), {:controller => 'dashboard', :action => 'index', :id => resource.key, :period => params[:period], :metric => @metric ? @metric.id : nil, :rule => @rule ? @rule.id : @severity }) %> <% else %> diff --git a/sonar-server/src/main/webapp/WEB-INF/app/views/drilldown/violations.html.erb b/sonar-server/src/main/webapp/WEB-INF/app/views/drilldown/violations.html.erb index 66a67705302..f9eca9842f5 100644 --- a/sonar-server/src/main/webapp/WEB-INF/app/views/drilldown/violations.html.erb +++ b/sonar-server/src/main/webapp/WEB-INF/app/views/drilldown/violations.html.erb @@ -141,7 +141,7 @@ <tr class="<%= clazz -%>" id="row_<%= index -%>_<%= row_index -%>"> <td nowrap> <% if resource.source_code? %> - <%= link_to(image_tag('zoom.png'), + <%= link_to(image_tag('new-window-16.gif'), {:controller => 'dashboard', :action => 'index', :id => resource.key, :period => params[:period], :metric => @metric ? @metric.id : nil, :rule => @rule ? @rule.id : @severity }) %> <% else %> diff --git a/sonar-server/src/main/webapp/WEB-INF/app/views/resource/_tabs.html.erb b/sonar-server/src/main/webapp/WEB-INF/app/views/resource/_tabs.html.erb index 25d08358daa..74b2619dfb7 100644 --- a/sonar-server/src/main/webapp/WEB-INF/app/views/resource/_tabs.html.erb +++ b/sonar-server/src/main/webapp/WEB-INF/app/views/resource/_tabs.html.erb @@ -32,7 +32,7 @@ end %> <% unless @popup_mode %> <li class="<%= 'first' if first -%>"> - <a href="<%= ApplicationController.root_context -%>/resource/index/<%= @resource.key -%>?display_title=true" onclick="window.open(this.href,'resource','height=800,width=900,scrollbars=1,resizable=1');return false;"><%= message('new_window') -%></a> + <a href="<%= ApplicationController.root_context -%>/resource/index/<%= @resource.key -%>?display_title=true" onclick="window.open(this.href,'resource','height=800,width=900,scrollbars=1,resizable=1');return false;"><%= image_tag 'new-window-16.gif', :alt => message('new_window') -%></a> </li> <% end %> </ul> diff --git a/sonar-server/src/main/webapp/images/new-window-11.gif b/sonar-server/src/main/webapp/images/new-window-11.gif Binary files differnew file mode 100644 index 00000000000..c7d338bc81f --- /dev/null +++ b/sonar-server/src/main/webapp/images/new-window-11.gif diff --git a/sonar-server/src/main/webapp/images/new-window-16.gif b/sonar-server/src/main/webapp/images/new-window-16.gif Binary files differnew file mode 100644 index 00000000000..4a5941b4bbe --- /dev/null +++ b/sonar-server/src/main/webapp/images/new-window-16.gif diff --git a/sonar-server/src/main/webapp/stylesheets/style.css b/sonar-server/src/main/webapp/stylesheets/style.css index 4a3ebabb9b7..aa5beaa81ef 100644 --- a/sonar-server/src/main/webapp/stylesheets/style.css +++ b/sonar-server/src/main/webapp/stylesheets/style.css @@ -1634,9 +1634,8 @@ ul.bullet li { .tablinks li { float: left; text-align: right; - background: url("../images/sep12.png") no-repeat scroll 0 50% transparent; - margin-left: 7px; - padding: 0 0 0 7px; + margin-left: 5px; + padding: 0 0 0 5px; } .tablinks li.first { |