mirror of
https://github.com/alchemy-fr/Phraseanet.git
synced 2025-10-23 18:03:17 +00:00
refatored html code to use proper font-awesome classes
This commit is contained in:
@@ -5,7 +5,7 @@
|
||||
|
||||
<script type="text/template" id="save_template">
|
||||
<button type="button" class="btn btn-primary save-all">
|
||||
<i class="icon-hdd icon-white"></i> {% trans %}Save all changes{% endtrans %}
|
||||
<i class="fa fa-hdd-o icon-white" aria-hidden="true"></i> {% trans %}Save all changes{% endtrans %}
|
||||
</button>
|
||||
</script>
|
||||
|
||||
@@ -39,7 +39,9 @@
|
||||
<div class="row-fluid">
|
||||
<div class="span12">
|
||||
<div class="sidebar-add-block">
|
||||
<button type="button" class="btn btn-success btn-add-field"><i class="icon-plus icon-white"></i>{% trans %}Add a new field{% endtrans %}</button>
|
||||
<button type="button" class="btn btn-success btn-add-field"><i class="fa fa-plus icon-white"
|
||||
aria-hidden="true"></i>{% trans %}Add a
|
||||
new field{% endtrans %}</button>
|
||||
</div>
|
||||
<div class="well well-small add-field-block" style="display:none">
|
||||
<h3>{% trans %}Add a new field{% endtrans %}</h3>
|
||||
@@ -60,7 +62,9 @@
|
||||
</div>
|
||||
<div class="control-group">
|
||||
<div class="controls">
|
||||
<button type="button" class="btn btn-success btn-submit-field"><i class="icon-ok icon-white"></i>{% trans %}Add{% endtrans %}</button>
|
||||
<button type="button" class="btn btn-success btn-submit-field"><i
|
||||
class="fa fa-check icon-white" aria-hidden="true"></i>{% trans %}
|
||||
Add{% endtrans %}</button>
|
||||
<button type="button" class="btn btn-cancel-field">{% trans %}Cancel{% endtrans %}</button>
|
||||
</div>
|
||||
</div>
|
||||
@@ -77,7 +81,11 @@
|
||||
<tr class="edit-order">
|
||||
<td>{% trans %}Order{% endtrans %}</td>
|
||||
<td><%= field.sorter %></td>
|
||||
<td><button type="button" class="btn btn-danger delete-field pull-right"><i class="icon-trash icon-white"></i>delete</button></td>
|
||||
<td>
|
||||
<button type="button" class="btn btn-danger delete-field pull-right"><i
|
||||
class="fa fa-trash-o icon-white" aria-hidden="true"></i>delete
|
||||
</button>
|
||||
</td>
|
||||
</tr>
|
||||
<tr class="edit-name">
|
||||
<td colspan="2">
|
||||
@@ -249,14 +257,14 @@
|
||||
<table>
|
||||
<tr>
|
||||
<td class="handle">
|
||||
<i class="icon-move"></i>
|
||||
<i class="fa fa-arrows" aria-hidden="true"></i>
|
||||
</td>
|
||||
<td rowspan="2" class="trigger-click">
|
||||
<div class="field-name"><%= name %></div>
|
||||
<div class="field-tag"><%= tag %></div>
|
||||
</td>
|
||||
<td rowspan="2" class="chip trigger-click">
|
||||
<i class="icon-chevron-right"></i>
|
||||
<i class="fa fa-chevron-right" aria-hidden="true"></i>
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
@@ -279,7 +287,8 @@
|
||||
<script type="text/template" id="field_error_template">
|
||||
<% if(messages.length > 0) { %>
|
||||
<div class="well well-small">
|
||||
<i class="icon-exclamation-sign"></i> {% trans %}Current configuration contains some errors{% endtrans %}
|
||||
<i class="fa fa-exclamation-circle" aria-hidden="true"></i> {% trans %}Current configuration contains some
|
||||
errors{% endtrans %}
|
||||
</div>
|
||||
<% } %>
|
||||
</script>
|
||||
|
Reference in New Issue
Block a user