Change mark message buttons visibility with hidden attr
This commit is contained in:
parent
179c70f725
commit
c751967d0e
3 changed files with 5 additions and 11 deletions
|
@ -27,6 +27,8 @@ $(document).ready(function () {
|
|||
function updateReadState(target, isRead) {
|
||||
$(target).closest("tr")
|
||||
.toggleClass("inbox-row", isRead)
|
||||
.toggleClass("inbox-row-unread", !isRead);
|
||||
.toggleClass("inbox-row-unread", !isRead)
|
||||
.find(".inbox-mark-unread button").prop("hidden", !isRead).end()
|
||||
.find(".inbox-mark-read button").prop("hidden", isRead);
|
||||
}
|
||||
});
|
||||
|
|
|
@ -1141,14 +1141,6 @@ tr.turn:hover {
|
|||
}
|
||||
}
|
||||
|
||||
.inbox-row .inbox-mark-read {
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
.inbox-row-unread .inbox-mark-unread {
|
||||
display: none !important;
|
||||
}
|
||||
|
||||
.search_form {
|
||||
background-color: $lightgrey;
|
||||
|
||||
|
|
|
@ -3,8 +3,8 @@
|
|||
<td class="inbox-subject"><%= link_to message_summary.title, message_path(message_summary) %></td>
|
||||
<td class="text-nowrap"><%= l message_summary.sent_on, :format => :friendly %></td>
|
||||
<td class="text-nowrap text-end">
|
||||
<%= button_to t(".unread_button"), message_mark_path(message_summary, :mark => "unread"), :remote => true, :class => "btn btn-sm btn-primary", :form_class => "d-inline-block inbox-mark-unread" %>
|
||||
<%= button_to t(".read_button"), message_mark_path(message_summary, :mark => "read"), :remote => true, :class => "btn btn-sm btn-primary", :form_class => "d-inline-block inbox-mark-read" %>
|
||||
<%= button_to t(".unread_button"), message_mark_path(message_summary, :mark => "unread"), :remote => true, :class => "btn btn-sm btn-primary", :form_class => "d-inline-block inbox-mark-unread", :hidden => !message_summary.message_read? %>
|
||||
<%= button_to t(".read_button"), message_mark_path(message_summary, :mark => "read"), :remote => true, :class => "btn btn-sm btn-primary", :form_class => "d-inline-block inbox-mark-read", :hidden => message_summary.message_read? %>
|
||||
<%= button_to t(".destroy_button"), message_path(message_summary, :referer => request.fullpath), :method => :delete, :remote => true, :class => "btn btn-sm btn-danger", :form_class => "d-inline-block inbox-destroy" %>
|
||||
</td>
|
||||
</tr>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue