Browse Source

Fix: tag table trash icon color

- use text color to prepare for dark mode
Felix Niklas 2 years ago
parent
commit
a8d9fe65a3
1 changed files with 1 additions and 1 deletions
  1. 1 1
      app/assets/javascripts/app/views/tag/table.jst.eco

+ 1 - 1
app/assets/javascripts/app/views/tag/table.jst.eco

@@ -11,7 +11,7 @@
     <tr data-id="<%= item.id %>" class="js-edit u-clickable">
       <td class="js-name"><%= item.name %></td>
       <td class="js-search"><a href="#"><%= item.count %></a></td>
-      <td class="js-delete"><a href="#" title="<%- @Ti('Delete') %>"><%- @Icon('trash') %></a></td>
+      <td class="js-delete no-padding"><a class="btn btn--table btn--text btn--secondary" href="#" title="<%- @Ti('Delete') %>"><%- @Icon('trash') %></a></td>
     </tr>
     <% end %>
   </tbody>