app/views/decidim/initiatives/admin/initiatives/index.html.erb in decidim-initiatives-0.28.0.rc5 vs app/views/decidim/initiatives/admin/initiatives/index.html.erb in decidim-initiatives-0.28.0
- old
+ new
@@ -13,11 +13,11 @@
<div class="table-scroll">
<table class="table-list">
<thead>
<tr>
<th><%= t("models.initiatives.fields.id", scope: "decidim.admin") %></th>
- <th class="table-list__left"><%= t("models.initiatives.fields.title", scope: "decidim.admin") %></th>
+ <th class="!text-left"><%= t("models.initiatives.fields.title", scope: "decidim.admin") %></th>
<th><%= t("models.initiatives.fields.state", scope: "decidim.admin") %></th>
<th><%= sort_link(query, :supports_count, t("models.initiatives.fields.supports_count", scope: "decidim.admin"), default_order: :desc) %></th>
<th><%= sort_link(query, :created_at, t("models.initiatives.fields.created_at", scope: "decidim.admin"), default_order: :desc) %></th>
<th><%= sort_link(query, :published_at, t("models.initiatives.fields.published_at", scope: "decidim.admin"), default_order: :desc) %></th>
<th class="actions"><%= t ".actions_title" %></th>
@@ -25,10 +25,10 @@
</thead>
<tbody>
<% @initiatives.each do |initiative| %>
<tr>
<td><%= initiative.id %></td>
- <td class="table-list__left">
+ <td class="!text-left">
<% if allowed_to? :edit, :initiative, initiative: initiative %>
<%= link_to translated_attribute(initiative.title),
decidim_admin_initiatives.edit_initiative_path(initiative.to_param) %>
<% else %>
<%= translated_attribute(initiative.title) %>