Merge branch 'pull/3091'
This commit is contained in:
commit
3debff60ef
2 changed files with 12 additions and 2 deletions
|
@ -975,6 +975,16 @@ tr.turn:hover {
|
|||
}
|
||||
}
|
||||
|
||||
/* Bootstrap buttons don't have any vertical margin, so
|
||||
they touch when adjacent buttons wrap onto a new line
|
||||
e.g. wide form buttons on a narrow sidebar */
|
||||
|
||||
.btn-wrapper {
|
||||
> .btn {
|
||||
margin-bottom: $spacer * 0.25;
|
||||
}
|
||||
}
|
||||
|
||||
/* Rules for export sidebar */
|
||||
|
||||
.export_form {
|
||||
|
|
|
@ -51,7 +51,7 @@
|
|||
<div class="form-group">
|
||||
<textarea class="form-control" name="text" cols="40" rows="5" maxlength="2000"></textarea>
|
||||
</div>
|
||||
<div>
|
||||
<div class="btn-wrapper">
|
||||
<% if current_user.moderator? -%>
|
||||
<input type="submit" name="hide" value="<%= t("javascripts.notes.show.hide") %>" class="btn btn-light" data-note-id="<%= @note.id %>" data-method="DELETE" data-url="<%= note_url(@note, "json") %>">
|
||||
<% end -%>
|
||||
|
@ -63,7 +63,7 @@
|
|||
<% else %>
|
||||
<form action="#">
|
||||
<input type="hidden" name="text" value="">
|
||||
<div>
|
||||
<div class="btn-wrapper">
|
||||
<% if current_user and current_user.moderator? -%>
|
||||
<input type="submit" name="hide" value="<%= t("javascripts.notes.show.hide") %>" class="btn btn-light" data-note-id="<%= @note.id %>" data-method="DELETE" data-url="<%= note_url(@note, "json") %>">
|
||||
<% end -%>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue