mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-12 22:38:52 +00:00
[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
This commit is contained in:
parent
24f9a41654
commit
6d1de15748
1 changed files with 5 additions and 5 deletions
|
@ -267,11 +267,11 @@ fieldset.submit-buttons input {
|
||||||
resize: vertical;
|
resize: vertical;
|
||||||
outline: 3px dashed transparent;
|
outline: 3px dashed transparent;
|
||||||
outline-offset: -4px;
|
outline-offset: -4px;
|
||||||
-webkit-transition: all .5s ease;
|
-webkit-transition: all .5s ease, height 1ms linear;
|
||||||
-moz-transition: all .5s ease;
|
-moz-transition: all .5s ease, height 1ms linear;
|
||||||
-ms-transition: all .5s ease;
|
-ms-transition: all .5s ease, height 1ms linear;
|
||||||
-o-transition: all .5s ease;
|
-o-transition: all .5s ease, height 1ms linear;
|
||||||
transition: all .5s ease;
|
transition: all .5s ease, height 1ms linear;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Emoticons panel */
|
/* Emoticons panel */
|
||||||
|
|
Loading…
Add table
Reference in a new issue