Author: olamy
Date: Fri Mar 30 07:28:55 2012
New Revision: 1307290
URL: http://svn.apache.org/viewvc?rev=1307290&view=rev
Log:
use new icon mode for edit/delete
Modified:
archiva/trunk/archiva-modules/archiva-web/archiva-webapp-js/src/main/webapp/js/templates/archiva/repositories.html
Modified:
archiva/trunk/archiva-modules/archiva-web/archiva-webapp-js/src/main/webapp/js/templates/archiva/repositories.html
URL:
http://svn.apache.org/viewvc/archiva/trunk/archiva-modules/archiva-web/archiva-webapp-js/src/main/webapp/js/templates/archiva/repositories.html?rev=1307290&r1=1307289&r2=1307290&view=diff
==============================================================================
---
archiva/trunk/archiva-modules/archiva-web/archiva-webapp-js/src/main/webapp/js/templates/archiva/repositories.html
(original)
+++
archiva/trunk/archiva-modules/archiva-web/archiva-webapp-js/src/main/webapp/js/templates/archiva/repositories.html
Fri Mar 30 07:28:55 2012
@@ -338,12 +338,16 @@
{{/each}}
<td>
<a href="#" data-bind="click: function(){
editRemoteRepository(row) }">
- <img src="images/edit-find-22-22.png"
title="${$.i18n.prop('edit')}">
+ <span class="btn btn-primary">
+ <i class="icon-pencil icon-white"/>
+ </span>
</a>
</td>
<td>
<a href="#" data-bind="click: function(){
removeRemoteRepository(row) }">
- <img src="images/edit-cut-22-22.png"
title="${$.i18n.prop('delete')}"/>
+ <span class="btn btn-danger">
+ <i class="icon-trash icon-white"/>
+ </span>
</a>
</td>
{{if row.modified()}}
@@ -355,7 +359,9 @@
{{/if}}
<td>
<a href="#" data-bind="click: function(){
scheduleDownloadRemoteIndex(row) }">
- <img src="images/view-refresh-22-22.png"
title="${$.i18n.prop('remoterepository.downloadremoteindex.now')}"/>
+ <span class="btn btn-success">
+ <i class="icon-refresh icon-white"/>
+ </span>
</a>
</td>
</tr>