mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 14:18:52 +00:00
[ticket/17125] Use box-sizing to fix message box
PHPBB3-17125
This commit is contained in:
parent
d5aa6189b6
commit
9db5da5b3d
3 changed files with 3 additions and 12 deletions
|
@ -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 -->
|
||||
|
|
|
@ -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 {
|
||||
|
|
|
@ -376,10 +376,6 @@
|
|||
margin-top: 5px;
|
||||
}
|
||||
|
||||
.smiley-message-box {
|
||||
display: block;
|
||||
}
|
||||
|
||||
.bbcode-status {
|
||||
display: none;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue