[ticket/17125] Use box-sizing to fix message box

PHPBB3-17125
This commit is contained in:
Matt Friedman 2023-04-02 14:27:35 +00:00
parent d5aa6189b6
commit 9db5da5b3d
3 changed files with 3 additions and 12 deletions

View file

@ -47,7 +47,6 @@
<!-- INCLUDE posting_buttons.html -->
<div class="smiley-message-box">
<div id="smiley-box" class="smiley-box">
<!-- EVENT posting_editor_smilies_before -->
<!-- IF S_SMILIES_ALLOWED and .smiley -->
@ -89,7 +88,6 @@
</div>
<!-- EVENT posting_editor_message_after -->
</div>
</fieldset>
<!-- IF $EXTRA_POSTING_OPTIONS eq 1 -->

View file

@ -259,6 +259,9 @@ fieldset.submit-buttons input {
.message-box textarea {
font-family: "Trebuchet MS", Verdana, Helvetica, Arial, sans-serif;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
width: 450px;
height: 270px;
min-width: 100%;
@ -284,12 +287,6 @@ fieldset.submit-buttons input {
margin: 3px;
}
.smiley-message-box {
display: flex;
flex-direction: row-reverse;
justify-content: space-between;
}
/* Input field styles
---------------------------------------- */
.inputbox {

View file

@ -376,10 +376,6 @@
margin-top: 5px;
}
.smiley-message-box {
display: block;
}
.bbcode-status {
display: none;
}