1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-06-07 06:55:25 +02:00

Merge pull request #6475 from iMattPro/ticket/17125

[ticket/17125] use box-sizing for message box text areas
This commit is contained in:
Marc Alexander 2023-04-04 20:34:49 +02:00
commit c879d9380f
No known key found for this signature in database
GPG Key ID: 50E0D2423696F995

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%;