Skip to content

Commit d3374b3

Browse files
authored
Fix: Send button inside upload-buttons class (#455)
* Fix: Send button inside upload-buttons class - humhub/humhub-internal#774 * Add PR ID to CHANGELOG
1 parent 838a50c commit d3374b3

3 files changed

Lines changed: 4 additions & 3 deletions

File tree

docs/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ Changelog
55
---------------------
66
- Fix #453: Filter toggle link color
77
- Fix: Migration to Bootstrap 5 for templates
8+
- Fix #455: Send button inside upload-buttons class
89

910
3.3.2 (July 27, 2025)
1011
---------------------

resources/css/humhub.mail.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@ $radiusNone: 0;
259259
border-radius: $radius;
260260
}
261261

262-
.upload-buttons {
262+
.richtext-create-buttons {
263263
position: absolute;
264264
right: 15px;
265265
bottom: 18px;

views/mail/conversation.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,14 +57,14 @@
5757
<?php else : ?>
5858
<?php $form = ActiveForm::begin(['enableClientValidation' => false, 'acknowledge' => true]) ?>
5959

60-
<div class="content-create-input-group">
60+
<div class="richtext-create-input-group">
6161

6262
<?= $form->field($replyForm, 'message')->widget(MailRichtextEditor::class, [
6363
'id' => 'reply-' . time(),
6464
'layout' => AbstractRichTextEditor::LAYOUT_INLINE,
6565
])->label(false) ?>
6666

67-
<div class="upload-buttons">
67+
<div class="richtext-create-buttons">
6868
<?php $uploadButton = UploadButton::widget([
6969
'id' => 'mail-create-upload-' . $message->id,
7070
'tooltip' => Yii::t('ContentModule.base', 'Attach Files'),

0 commit comments

Comments
 (0)