[REPLY] Fixed CSS for reply form, making it now usable
This commit is contained in:
parent
f9443f1e87
commit
8cc0360298
|
@ -105,7 +105,7 @@ class Reply extends Module
|
|||
$form = Form::create([
|
||||
['content', TextareaType::class, ['label' => ' ']],
|
||||
['attachments', FileType::class, ['label' => ' ', 'multiple' => true, 'required' => false]],
|
||||
['reply', SubmitType::class, ['label' => _m('Submit')]],
|
||||
['replyform', SubmitType::class, ['label' => _m('Submit')]],
|
||||
]);
|
||||
|
||||
$form->handleRequest($request);
|
||||
|
|
|
@ -411,3 +411,16 @@
|
|||
cursor: pointer;
|
||||
z-index: 0;
|
||||
}
|
||||
|
||||
#replyform {
|
||||
margin: var(--main-size);
|
||||
}
|
||||
#replyform div {
|
||||
display: inline-flex;
|
||||
justify-content: flex-start;
|
||||
width: 100%;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
#replyform div textarea {
|
||||
width: 100%;
|
||||
}
|
||||
|
|
|
@ -410,3 +410,16 @@
|
|||
cursor: pointer;
|
||||
z-index: 0;
|
||||
}
|
||||
|
||||
#replyform {
|
||||
margin: var(--main-size);
|
||||
}
|
||||
#replyform div {
|
||||
display: inline-flex;
|
||||
justify-content: flex-start;
|
||||
width: 100%;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
#replyform div textarea {
|
||||
width: 100%;
|
||||
}
|
||||
|
|
|
@ -409,3 +409,16 @@
|
|||
cursor: pointer;
|
||||
z-index: 0;
|
||||
}
|
||||
|
||||
#replyform {
|
||||
margin: var(--main-size);
|
||||
}
|
||||
#replyform div {
|
||||
display: inline-flex;
|
||||
justify-content: flex-start;
|
||||
width: 100%;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
#replyform div textarea {
|
||||
width: 100%;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user