aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLouis7777 <louis7777@github.com>2017-04-14 15:10:48 +0300
committerLouis7777 <louis7777@github.com>2017-04-14 15:10:48 +0300
commit6d1de1574811a45ca2d3fb61c1fb71a01dee255a (patch)
tree4bed20514e3afee57a69bafbc65571b5b28ef196
parent24f9a4165463d9a546c9868cb352c0283d976c27 (diff)
downloadforums-6d1de1574811a45ca2d3fb61c1fb71a01dee255a.tar
forums-6d1de1574811a45ca2d3fb61c1fb71a01dee255a.tar.gz
forums-6d1de1574811a45ca2d3fb61c1fb71a01dee255a.tar.bz2
forums-6d1de1574811a45ca2d3fb61c1fb71a01dee255a.tar.xz
forums-6d1de1574811a45ca2d3fb61c1fb71a01dee255a.zip
[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
-rw-r--r--phpBB/styles/prosilver/theme/forms.css10
1 files 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 */