|
@@ -3,8 +3,8 @@
|
|
|
<tr>
|
|
|
<% if @checkbox: %>
|
|
|
<th style="width: 40px" class="no-padding">
|
|
|
- <label class="input-replacement">
|
|
|
- <input type="checkbox" value="" name="bulk_all"/>
|
|
|
+ <label class="checkbox-replacement">
|
|
|
+ <input type="checkbox" value="" name="bulk_all">
|
|
|
<%- @Icon('checkbox', 'icon-unchecked') %>
|
|
|
<%- @Icon('checkbox-checked', 'icon-checked') %>
|
|
|
</label>
|
|
@@ -40,8 +40,8 @@
|
|
|
<tr class="item<% if object.active is false: %> is-inactive<% end %>" data-id="<%= object.id %>" data-position="<%= position %>" >
|
|
|
<% if @checkbox: %>
|
|
|
<td class="no-padding">
|
|
|
- <label class="input-replacement">
|
|
|
- <input type="checkbox" value="<%= object.id %>" name="bulk"/>
|
|
|
+ <label class="checkbox-replacement">
|
|
|
+ <input type="checkbox" value="<%= object.id %>" name="bulk">
|
|
|
<%- @Icon('checkbox', 'icon-unchecked') %>
|
|
|
<%- @Icon('checkbox-checked', 'icon-checked') %>
|
|
|
</label>
|
|
@@ -49,8 +49,8 @@
|
|
|
<% end %>
|
|
|
<% if @radio: %>
|
|
|
<td class="no-padding">
|
|
|
- <label class="input-replacement">
|
|
|
- <input type="radio" value="<%= object.id %>" name="radio"/>
|
|
|
+ <label class="radio-replacement">
|
|
|
+ <input type="radio" value="<%= object.id %>" name="radio">
|
|
|
<%- @Icon('radio', 'icon-unchecked') %>
|
|
|
<%- @Icon('radio-checked', 'icon-checked') %>
|
|
|
</label>
|