From d5aa6189b698b80363db3cfff9f026836c192ade Mon Sep 17 00:00:00 2001 From: Matt Friedman Date: Fri, 31 Mar 2023 19:05:18 +0000 Subject: [PATCH] [ticket/17125] Use FlexBox for message and smileys PHPBB3-17125 --- phpBB/styles/prosilver/template/posting_editor.html | 2 ++ phpBB/styles/prosilver/theme/forms.css | 6 ++++++ phpBB/styles/prosilver/theme/responsive.css | 4 ++++ 3 files changed, 12 insertions(+) diff --git a/phpBB/styles/prosilver/template/posting_editor.html b/phpBB/styles/prosilver/template/posting_editor.html index 12790360d6..70a66be76c 100644 --- a/phpBB/styles/prosilver/template/posting_editor.html +++ b/phpBB/styles/prosilver/template/posting_editor.html @@ -47,6 +47,7 @@ +
@@ -88,6 +89,7 @@
+
diff --git a/phpBB/styles/prosilver/theme/forms.css b/phpBB/styles/prosilver/theme/forms.css index 39dd81e2b6..03d32cdadf 100644 --- a/phpBB/styles/prosilver/theme/forms.css +++ b/phpBB/styles/prosilver/theme/forms.css @@ -284,6 +284,12 @@ fieldset.submit-buttons input { margin: 3px; } +.smiley-message-box { + display: flex; + flex-direction: row-reverse; + justify-content: space-between; +} + /* Input field styles ---------------------------------------- */ .inputbox { diff --git a/phpBB/styles/prosilver/theme/responsive.css b/phpBB/styles/prosilver/theme/responsive.css index a53dadc2b7..a8a316ff3b 100644 --- a/phpBB/styles/prosilver/theme/responsive.css +++ b/phpBB/styles/prosilver/theme/responsive.css @@ -376,6 +376,10 @@ margin-top: 5px; } + .smiley-message-box { + display: block; + } + .bbcode-status { display: none; }