Browse Source

Adds an icon to the "Test" link.

git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@9235 e93f8b46-1217-0410-a6f0-8f06a7374b81
tags/1.4.0
Jean-Philippe Lang 12 years ago
parent
commit
60e6a623bd
2 changed files with 2 additions and 1 deletions
  1. 1
    1
      app/views/auth_sources/index.html.erb
  2. 1
    0
      public/stylesheets/application.css

+ 1
- 1
app/views/auth_sources/index.html.erb View File

@@ -20,7 +20,7 @@
<td align="center"><%= h source.host %></td>
<td align="center"><%= h source.users.count %></td>
<td class="buttons">
<%= link_to l(:button_test), :action => 'test_connection', :id => source %>
<%= link_to l(:button_test), {:action => 'test_connection', :id => source}, :class => 'icon icon-test' %>
<%= link_to l(:button_delete), { :action => 'destroy', :id => source },
:method => :delete,
:confirm => l(:text_are_you_sure),

+ 1
- 0
public/stylesheets/application.css View File

@@ -958,6 +958,7 @@ padding-bottom: 3px;
.icon-zoom-in { background-image: url(../images/zoom_in.png); }
.icon-zoom-out { background-image: url(../images/zoom_out.png); }
.icon-passwd { background-image: url(../images/textfield_key.png); }
.icon-test { background-image: url(../images/bullet_go.png); }

.icon-file { background-image: url(../images/files/default.png); }
.icon-file.text-plain { background-image: url(../images/files/text.png); }

Loading…
Cancel
Save