From 6d1de1574811a45ca2d3fb61c1fb71a01dee255a Mon Sep 17 00:00:00 2001 From: Louis7777 Date: Fri, 14 Apr 2017 15:10:48 +0300 Subject: [ticket/15173] Fix message area resizing lag Resizing the posting editor's text area lags, because there is an all-inclusive CSS transition. This fix excludes the height property from having a noticeable transition. PHPBB3-15173 --- phpBB/styles/prosilver/theme/forms.css | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/phpBB/styles/prosilver/theme/forms.css b/phpBB/styles/prosilver/theme/forms.css index e8efbc6045..dc136c1ab4 100644 --- a/phpBB/styles/prosilver/theme/forms.css +++ b/phpBB/styles/prosilver/theme/forms.css @@ -267,11 +267,11 @@ fieldset.submit-buttons input { resize: vertical; outline: 3px dashed transparent; outline-offset: -4px; - -webkit-transition: all .5s ease; - -moz-transition: all .5s ease; - -ms-transition: all .5s ease; - -o-transition: all .5s ease; - transition: all .5s ease; + -webkit-transition: all .5s ease, height 1ms linear; + -moz-transition: all .5s ease, height 1ms linear; + -ms-transition: all .5s ease, height 1ms linear; + -o-transition: all .5s ease, height 1ms linear; + transition: all .5s ease, height 1ms linear; } /* Emoticons panel */ -- cgit v1.2.1