Adjust layout of inbox entry buttons
This commit is contained in:
parent
4cb66c7100
commit
fa0aa59e6e
|
@ -30,3 +30,7 @@
|
||||||
.z-n1 {
|
.z-n1 {
|
||||||
z-index: -1;
|
z-index: -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.grid-row-1 {
|
||||||
|
grid-row: 1;
|
||||||
|
}
|
||||||
|
|
|
@ -4,13 +4,15 @@
|
||||||
- if current_user == i.user
|
- if current_user == i.user
|
||||||
.card-body
|
.card-body
|
||||||
%textarea.form-control.mb-3{ name: "ib-answer", placeholder: t(".placeholder"), data: { id: i.id } }
|
%textarea.form-control.mb-3{ name: "ib-answer", placeholder: t(".placeholder"), data: { id: i.id } }
|
||||||
.d-sm-flex
|
.d-flex.flex-column-reverse.flex-sm-row
|
||||||
%button.btn.btn-success.me-sm-1{ name: "ib-answer", data: { ib_id: i.id } }
|
%p.format-help.me-sm-auto.align-self-center.mb-0.mt-2.mt-sm-0.text-center
|
||||||
= t("voc.answer")
|
|
||||||
%button.btn.btn-danger.me-sm-1{ name: "ib-destroy", data: { ib_id: i.id } }
|
|
||||||
= t("voc.delete")
|
|
||||||
%p.format-help.ms-auto.align-self-center.mt-2.mt-sm-0.text-center
|
|
||||||
= render "shared/format_link"
|
= render "shared/format_link"
|
||||||
|
.d-grid.gap-2.d-sm-block
|
||||||
|
%button.btn.btn-default.text-muted.me-sm-1.mb-sm-0{ name: "ib-destroy", data: { ib_id: i.id } }
|
||||||
|
%i.fa.fa-trash.fa-fw
|
||||||
|
= t("voc.delete")
|
||||||
|
%button.btn.btn-primary.grid-row-1{ name: "ib-answer", data: { ib_id: i.id } }
|
||||||
|
= t("voc.answer")
|
||||||
- if current_user.sharing_enabled
|
- if current_user.sharing_enabled
|
||||||
.inbox-entry__sharing.text-center.p-2.justify-content-center.d-none{
|
.inbox-entry__sharing.text-center.p-2.justify-content-center.d-none{
|
||||||
data: { controller: "inbox-sharing", inbox_sharing_config_value: "{}", inbox_sharing_auto_close_value: current_user.sharing_autoclose.to_s } }
|
data: { controller: "inbox-sharing", inbox_sharing_config_value: "{}", inbox_sharing_auto_close_value: current_user.sharing_autoclose.to_s } }
|
||||||
|
|
Loading…
Reference in New Issue